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

Kinda curious [VIP SYSTEM]

Fu Manchu

Sepultra™
Joined
Jan 28, 2011
Messages
439
Reaction score
9
Not really sure what files I would need to mess with in order to increase Vip char's exp rate. by like 25% or something. Any tips or tricks? Also I wanted to make vip members be able to repair softies and uhh fire walkers for free. I would assume that part would be done in a repair talk action script and add If blah blah = 0 blah blah blah. lol So help me out guys thx <3
 
Easy to do by adding a second promotion for only vip players.

XML:
experience="1.25"

Or just something like this:
Lua:
function onLogin(cid)
	if getPlayerVipDays(cid) > 0 then
		doPlayerSetExtraExpRate(cid, 1.25)
	end
	return true
end
 
Back
Top