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

Eclipse - Real Map Problem

Mak

New Member
Joined
Jun 6, 2008
Messages
59
Reaction score
0
I are hosted Eclipse - Real Map

but want to change the system of spells for what be learned alone


and when can i put exp for stage what need change?



Ty
 
The spells can be changed in the spells.xml located in the data - spells folder...

Ex:
<instant name="Death Strike" words="exori mort" lvl="16" mana="20" prem="1" casterTargetOrDirection="1" blockwalls="1" exhaustion="1000" needlearn="0" script="attack/death strike.lua">


Change the needlearn to 1 and it will make the plays learn the spell before they can use it!!

And the Exp stage can be changed in the data - xml Folder.. Edit Stages.xml

Ex:
<config enabled="0"/>
<stage minlevel="1" maxlevel="8" multiplier="8"/>
<stage minlevel="9" maxlevel="20" multiplier="8"/>
<stage minlevel="21" maxlevel="50" multiplier="8"/>
<stage minlevel="51" maxlevel="100" multiplier="8"/>
<stage minlevel="101" multiplier="8"/>



Change <config enabled="0"/> to 1 and then in the config.lua under exp put "stage"(without the ""'s).... and then change the stage ammount for the exp!


That should be it!
 
<?xml version="1.0"?>
<stages>

</stages>
<config enabled="0"/>
<stage minlevel="8" maxlevel="50" multiplier="100"/>
<stage minlevel="51" maxlevel="70" multiplier="60"/>
<stage minlevel="71" maxlevel="100" multiplier="40"/>
<stage minlevel="101" maxlevel="120" multiplier="25"/>
<stage minlevel="121" maxlevel="140" multiplier="20"/>
<stage minlevel="141" maxlevel="160" multiplier="15"/>
<stage minlevel="161" maxlevel="180" multiplier="10"/>
<stage minlevel="181" maxlevel="200" multiplier="5"/>
<stage minlevel="201" multiplier="3"/>
 
Back
Top