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

CreatureScript Request

W33dRoCks

Banned User
Joined
Aug 18, 2009
Messages
475
Reaction score
1
Location
Spain
A fuction when you make a take 5 days from vip acc make 3x more from free accounts and if the 5 days dissaper we got again the normal experencie.

help if who create the script!
i give rep+

or try to fix and running this script for only 5 days, this script was on a creaturescripts:

Code:
config = { 
    vipSystem = "YES", -- Vip System Working?
}
stages = { 
    vip = {
        [1] = 33,
        [50] = 23,
        [100] = 18,
        [150] = 11,
        [200] = 8,
        [250] = 6,
		[300] = 4,
    },
}
function onAdvance(cid, skill, oldlevel, newlevel)
    if isVip(cid) then
        stage = stages.vip
    
    if stage[newlevel] then
        setPlayerExtraExpRate(cid, stage[newlevel])
    end

end
 
Last edited:
Back
Top