mirror of
https://github.com/OTCv8/otclientv8.git
synced 2025-05-03 20:49:21 +02:00
21 lines
313 B
Lua
21 lines
313 B
Lua
local context = G.botContext
|
|
local Panels = context.Panels
|
|
|
|
|
|
Panels.Looting = function(parent)
|
|
context.setupUI([[
|
|
Panel
|
|
id: looting
|
|
height: 150
|
|
|
|
BotLabel
|
|
anchors.top: parent.top
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
text: Looting
|
|
|
|
]], parent)
|
|
|
|
end
|
|
|