gohamvsgoku
Member
- Joined
- Aug 21, 2017
- Messages
- 151
- Reaction score
- 9
Someone help convert this script?
I'll thank you very much
I'll thank you very much
LUA:
function onLogin(cid)
local rate = 1.2 -- 50%
local config = {
true_vip = "You gain "..((rate - 1)*100).."% exp more now!",
false_vip = "If you become VIP you will get "..((rate - 1)*100).."% more experience",
vip = isPremium(cid)
}
if (config.vip == TRUE) then
doPlayerSetExperienceRate(cid, rate)
else
end
return TRUE
end