• 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!

[Request] Vip get double xp ?

bradette19

Member
Joined
May 25, 2011
Messages
97
Reaction score
6
Location
Canada
Is this possible? When player is VIP, all xp gained is x2 ?

Normal server xp rate exemple : x100, When you're VIP it become x200 ?

I'm using xp stage.
 
ok ok
open file player.lua from folder events

then in
Code:
function Player:onGainExperience(source, exp, rawExp)

add this

Code:
if self:getVipDays() > 0 and self:getStamina() > 2400 and self:isPremium() then
      exp = exp * 3.5
end

if self:getVipDays() > 0 and self:getStamina() <= 840 and self:isPremium() then
     exp = exp * 2.5
end

if self:getVipDays() > 0 and not  self:isPremium() then
    exp = exp * 2
end
 
Last edited:
Back
Top