• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Avesta 0.6.1 Stages

Hoodnasty

Banned User
Joined
Feb 19, 2010
Messages
412
Reaction score
3
Location
New York
Hey, im trying to make stages for avesta 0.6.1, and my stages are set as
Code:
<?xml version="1.0"?>
<stages>
	<!--stage minlevel="1" maxlevel="20" multiplier="50"></stage>
	<stage minlevel="20" maxlevel="35" multiplier="40"></stage>
<stage minlevel="35" maxlevel="60" multiplier="25"></stage>
<stage minlevel="60" maxlevel="85" multiplier="20"></stage>
<stage minlevel="85" maxlevel="101" multiplier="15"></stage>
<stage minlevel="101" maxlevel="121" multiplier="8"></stage>
<stage minlevel="121" maxlevel="140" multiplier="5"></stage>
<stage minlevel="140" maxlevel="999" multiplier="3"></stage-->
</stages>

And in my config.php i have
Code:
--- Rates

	experienceStages = true

Yet my stages do not work. Any help appreciated. Thanks ;)
 
synss6.png

I did what you said. still got this error
 
try that:
XML:
<?xml version="1.0"?>
<stages>
<stage minlevel="1" maxlevel="20" multiplier="50"></stage>
<stage minlevel="20" maxlevel="35" multiplier="40"></stage>
<stage minlevel="35" maxlevel="60" multiplier="25"></stage>
<stage minlevel="60" maxlevel="85" multiplier="20"></stage>
<stage minlevel="85" maxlevel="101" multiplier="15"></stage>
<stage minlevel="101" maxlevel="121" multiplier="8"></stage>
<stage minlevel="121" maxlevel="140" multiplier="5"></stage>
<stage minlevel="140" maxlevel="999" multiplier="3"></stage>
</stages>
 
stages loaded with no errors, however it didnt work ;'(. could you pm me your msn please? this is the last thing i need done and i can put my serv on ;d
 
naa its a 7.6 ot. now i cant fuckin get more than 1 death on the deathlist. bahh. 2 problems before i can put it online. someone please PM me your msn and help me!
 
Try This.

Code:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
	<world id="0" multiplier="1">
		<stage minlevel="1" maxlevel="20" multiplier="100"/>
		<stage minlevel="21" maxlevel="50" multiplier="80"/>
		<stage minlevel="51" maxlevel="80" multiplier="70"/>
		<stage minlevel="81" maxlevel="100" multiplier="60"/>
		<stage minlevel="101" maxlevel="120" multiplier="40"/>
		<stage minlevel="121" maxlevel="140" multiplier="20"/>
		<stage minlevel="141" maxlevel="160" multiplier="10"/>
		<stage minlevel="161" maxlevel="180" multiplier="5"/>
		<stage minlevel="181" maxlevel="200" multiplier="3"/>
		<stage minlevel="201" maxlevel="250" multiplier="2"/>
		<stage minlevel="251" multiplier="2"/>
	</world>
</stages>
 
working ones :D

<?xml version="1.0" encoding="UTF-8"?>
<stages>
<config enabled="1"/>
<stage minlevel="1" maxlevel="20" multiplier="50"/>
<stage minlevel="21" maxlevel="50" multiplier="45"/>
<stage minlevel="51" maxlevel="100" multiplier="35"/>
<stage minlevel="101" maxlevel="200" multiplier="25"/>
<stage minlevel="201" maxlevel="300" multiplier="15"/>
<stage minlevel="301" maxlevel="400" multiplier="10"/>
<stage minlevel="401" maxlevel="600" multiplier="7"/>
<stage minlevel="601" maxlevel="999" multiplier="5"/>
</stages>
 
Back
Top