• 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

dratewka2

New Member
Joined
Aug 9, 2008
Messages
63
Reaction score
0
Can someone please show me a thread / guide on EXP Stages on an OT.

I tried searching 5 times for diff stuff.
Sorry - no matches. Please try some different terms.
..

lol, anyways, If someone knows how please help me;D
Thanks!
I want

1-30 - 20x
30-50 - 18x
50-80 - 16x
80-110 - 14x
110+ - 12x
 
In your data/xml Folder.

Stages.xml
PHP:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
	<config enabled="1"/>
	<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>

[===================Line Break===================]

Config
1 Means stages are on. 0 Means there off
PHP:
<config enabled="1"/>

[===================Line Break===================]

minlevel & maxlevel
minlevel & maxlevel. Decide which levels the 'Multiplier'
effects.

Example:
if minlevel="1" maxlevel="8" they will get the
multiplier for level 1,2,3,4,5,6,7,8
PHP:
<stage minlevel="1" maxlevel="8" multiplier="7"/>

[===================Line Break===================]

Multiplier
multiplier decides what 'x' the exp is for the min & max level

Example:
PHP:
<stage minlevel="1" maxlevel="8" multiplier="7"/>
The player will receive x7 exp for level 1,2,3,4,5,6,7,8


[===================Line Break===================]

Hope that was enough detail xD
 
Back
Top