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

exp Stages

oddis

New Member
Joined
May 15, 2009
Messages
166
Reaction score
0
If i gonne have exp stages do i need to write something in the config if its gonne work?
 
Goto data/XML/Stages.xml
(This is where you edit the stages)

PHP:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
	<world id="0" multiplier="1">
		<stage minlevel="1" maxlevel="8" multiplier="8"/>
		<stage minlevel="9" maxlevel="20" multiplier="7"/>
		<stage minlevel="21" maxlevel="50" multiplier="6"/>
		<stage minlevel="51" maxlevel="100" multiplier="5"/>
		<stage minlevel="101" multiplier="4"/>
	</world>
</stages>

Goto the config.lua

PHP:
experienceStages = "no"
-- Change to yes, or no.
 
Goto data/XML/Stages.xml
(This is where you edit the stages)

PHP:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
	<world id="0" multiplier="1">
		<stage minlevel="1" maxlevel="8" multiplier="8"/>
		<stage minlevel="9" maxlevel="20" multiplier="7"/>
		<stage minlevel="21" maxlevel="50" multiplier="6"/>
		<stage minlevel="51" maxlevel="100" multiplier="5"/>
		<stage minlevel="101" multiplier="4"/>
	</world>
</stages>

Goto the config.lua

PHP:
experienceStages = "no"
-- Change to yes, or no.


cant find the experiencestages thing in my config
 
@Od,

You must be using TFS 0.2.2 :thumbup:

Find: Config.lua

PHP:
rateExp = 5

Data/XML/Stages.xml

Code:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
	[COLOR="Blue"][B]<config enabled="0"/>[/B][/COLOR]
	<stage minlevel="1" maxlevel="8" multiplier="7"/>
	<stage minlevel="9" maxlevel="20" multiplier="6"/>
	<stage minlevel="21" maxlevel="50" multiplier="5"/>
	<stage minlevel="51" maxlevel="100" multiplier="4"/>
	<stage minlevel="101" multiplier="5"/>
</stages>

Make that number the same as the config.

Regards.
 
Back
Top