mirror of
https://github.com/edubart/otclient.git
synced 2025-10-15 12:04:55 +02:00
viplist
This commit is contained in:
35
modules/game/vip.lua
Normal file
35
modules/game/vip.lua
Normal file
@@ -0,0 +1,35 @@
|
||||
vipWindow = nil
|
||||
|
||||
function createVipWindow()
|
||||
vipWindow = loadUI("/game/ui/viplist.otui", Game.gameUi)
|
||||
end
|
||||
|
||||
function Game.onAddVip(id, name, online)
|
||||
local vipList = vipWindow:getChildById('vipList')
|
||||
|
||||
local label = UILabel.create()
|
||||
vipList:addChild(label)
|
||||
label:setId('vip' .. id)
|
||||
label:setText(name)
|
||||
|
||||
if online then
|
||||
label:setForegroundColor('#00ff00')
|
||||
else
|
||||
label:setForegroundColor('#ff0000')
|
||||
end
|
||||
|
||||
label.vipOnline = online
|
||||
end
|
||||
|
||||
function Game.onVipStateChange(id, online)
|
||||
local vipList = vipWindow:getChildById('vipList')
|
||||
local label = vipList:getChildById('vip' .. id)
|
||||
|
||||
if online then
|
||||
label:setForegroundColor('#00ff00')
|
||||
else
|
||||
label:setForegroundColor('#ff0000')
|
||||
end
|
||||
|
||||
label.vipOnline = online
|
||||
end
|
Reference in New Issue
Block a user