mirror of
https://github.com/edubart/otclient.git
synced 2025-04-30 17:49:21 +02:00

* make inventory/healthbar work again allowing reload * changes in top menu toggle buttons * all modules are now reloadable by default * fix warning when using fade in * remove some unused files
32 lines
1.1 KiB
Lua
32 lines
1.1 KiB
Lua
function Player:isPartyLeader()
|
|
local shield = self:getShield()
|
|
return (shield == ShieldWhiteYellow or
|
|
shield == ShieldYellow or
|
|
shield == ShieldYellowSharedExp or
|
|
shield == ShieldYellowNoSharedExpBlink or
|
|
shield == ShieldYellowNoSharedExp)
|
|
end
|
|
|
|
function Player:isPartyMember()
|
|
local shield = self:getShield()
|
|
return (shield == ShieldWhiteYellow or
|
|
shield == ShieldYellow or
|
|
shield == ShieldYellowSharedExp or
|
|
shield == ShieldYellowNoSharedExpBlink or
|
|
shield == ShieldYellowNoSharedExp or
|
|
shield == ShieldBlueSharedExp or
|
|
shield == ShieldBlueNoSharedExpBlink or
|
|
shield == ShieldBlueNoSharedExp or
|
|
shield == ShieldBlue)
|
|
end
|
|
|
|
function Player:isPartySharedExperienceActive()
|
|
local shield = self:getShield()
|
|
return (shield == ShieldYellowSharedExp or
|
|
shield == ShieldYellowNoSharedExpBlink or
|
|
shield == ShieldYellowNoSharedExp or
|
|
shield == ShieldBlueSharedExp or
|
|
shield == ShieldBlueNoSharedExpBlink or
|
|
shield == ShieldBlueNoSharedExp)
|
|
end
|