• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

how to activate topmenu otc?

rafaaw

New Member
Joined
Feb 24, 2019
Messages
22
Reaction score
1
i'm trying to activate my topmenu but i can't... can anyone help me?

topmenu.lua
Lua:
function init()
  connect(g_game, { onGameStart = show,
                    onGameEnd = hide })

  topButtonMenu = g_ui.loadUI('topbuttonmenu', modules.game_interface.getMapPanel())
  topWindowMenu = g_ui.displayUI('topwindowmenu', modules.game_interface.getMapPanel())
  show()
end

function terminate()
  disconnect(g_game, { onGameStart = show,
                       onGameEnd = hide })

  hide()
end

function show()
  if g_game.isOnline() then
    topButtonMenu:show()
    topWindowMenu:hide()
  else
    hide()
  end
end

function hide()
  topButtonMenu:hide()
  topWindowMenu:hide()
end

function showMenuWindow()
  topWindowMenu:show()
  topWindowMenu:focus()
  topWindowMenu:upper()
end
 
Back
Top