tibia-client/modules/addon_terminal/commands.lua

32 lines
698 B
Lua
Raw Normal View History

2011-12-07 01:31:55 +01:00
function dumpWidgets()
for i=1,rootWidget:getChildCount() do
print(rootWidget:getChildByIndex(i):getId())
2011-12-07 01:31:55 +01:00
end
2012-01-09 19:45:28 +01:00
end
function drawDebugBoxes(enable)
if enable == nil then enable = true end
g_ui.setDebugBoxesDrawing(enable)
end
2012-01-09 22:16:50 +01:00
2012-01-16 06:54:53 +01:00
function hideMap()
local map = rootWidget:recursiveGetChildById('gameMapPanel')
if map then map:hide() end
end
function showMap()
local map = rootWidget:recursiveGetChildById('gameMapPanel')
if map then map:show() end
end
function debugContainersItems()
function UIItem:onHoverChange(hovered)
if hovered then
2012-01-17 23:28:55 +01:00
local item = self:getItem()
if item then ToolTip.display(item:getId()) end
else
ToolTip.hide()
end
end
2012-01-09 22:16:50 +01:00
end