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

Add EXP Script

stanczyk

Scripter
Joined
Nov 24, 2009
Messages
293
Reaction score
2
Hi,
I need a script to count off the engine exp something like that when I enter a hope that the system does not want to add exp and this is Evo HighEXP
 
You can use this:
Lua:
local exp = getConfigInfo('rateExperience')
	if(getBooleanFromString(getConfigInfo('experienceStages'))) then
		exp = getExperienceStage(getPlayerLevel(cid), getVocationInfo(getPlayerVocation(cid)).experienceMultiplier)
	end
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Experience rate: " .. exp .. "x.")
 
Back
Top