vip improvements
This commit is contained in:
parent
3928db1c4d
commit
bdbfa5b6ac
|
@ -1,3 +1,7 @@
|
|||
VipListLabel < Label
|
||||
font: tibia-10px-monochrome
|
||||
margin.left: 30
|
||||
|
||||
Window
|
||||
id: vipWindow
|
||||
title: VIP
|
||||
|
|
|
@ -11,6 +11,7 @@ function Game.onAddVip(id, name, online)
|
|||
vipList:addChild(label)
|
||||
label:setId('vip' .. id)
|
||||
label:setText(name)
|
||||
label:setStyle('VipListLabel')
|
||||
|
||||
if online then
|
||||
label:setForegroundColor('#00ff00')
|
||||
|
|
|
@ -54,6 +54,8 @@ public:
|
|||
void sendTurnEast();
|
||||
void sendTurnSouth();
|
||||
void sendTurnWest();
|
||||
void sendAddVip(const std::string& name);
|
||||
void sendRemoveVip(int id);
|
||||
|
||||
private:
|
||||
void sendLoginPacket(uint32 timestamp, uint8 unknown);
|
||||
|
|
|
@ -157,3 +157,19 @@ void ProtocolGame::sendTurnWest()
|
|||
oMsg.addU8(Otc::ClientRotateWest);
|
||||
send(oMsg);
|
||||
}
|
||||
|
||||
void ProtocolGame::sendAddVip(const std::string& name)
|
||||
{
|
||||
OutputMessage oMsg;
|
||||
oMsg.addU8(Otc::ClientAddBuddy);
|
||||
oMsg.addString(name);
|
||||
send(oMsg);
|
||||
}
|
||||
|
||||
void ProtocolGame::sendRemoveVip(int id)
|
||||
{
|
||||
OutputMessage oMsg;
|
||||
oMsg.addU8(Otc::ClientRemoveBuddy);
|
||||
oMsg.addU32(id);
|
||||
send(oMsg);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue