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

Spells.xml Functions

Exiled Pain

Fervid Learner
Joined
Jan 8, 2008
Messages
552
Reaction score
4
So what I would like is to see if anyone could post all the functions that are use in spells.xml.....
I've seen some stuff around but would like to fill the gaps.

Examples:

range= ""
prem= ""
needweapon= ""

Hope you guy get the idea...
I would like to see if there are any of this that can set mana % used in that spell, or something so that the spell can spret
360º for "x" number of sq.( I now you can draw the spell in .lua files) But would like to now if its something out there.... lets say to make Whirlwind Throw in 360º for "x" numer of sq.(some thing like radius="x" or something like that. Tryed in .lua files but only the last hit is displayed not the hole _ANI_

Anyway, nice if you guys could post this functions.

Thanks!!
 
Last edited:
Here's some :p ;
Code:
charges="1"
needtarget="1"
exhaustion="2000"
lvl="1"
maglv="1"
manapercent="1"
mana="1"
needlearn="1"
enabled="1"
allowfaruse="1"
range="1"
soul="0"
casterTargetOrDirection="1"
blockwalls="1"
Code:
<instant name="X" words="x" lvl="14" manapercent="5" casterTargetOrDirection="1" blockwalls="1" needlearn="0" exhaustion="2000" range="5" script="x.lua"><vocation name="x"/></instant>
 
Back
Top