7804364
Member
- Joined
- Mar 6, 2010
- Messages
- 457
- Reaction score
- 10
Ok so when i try to give double exp for vip in
Events > player.lau
i change
exp = exp * Game.getExperienceStage(self:getLevel())
to
But it just does not work and the exp get set to normal x1 rate
Events > player.lau
i change
exp = exp * Game.getExperienceStage(self:getLevel())
to
Code:
local player = Player(cid)
local days = player:getVipDays()
if days > 0 then
exp = exp * Game.getExperienceStage(self:getLevel())*2
else
exp = exp * Game.getExperienceStage(self:getLevel())
end
But it just does not work and the exp get set to normal x1 rate