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

Windows spells editor (need)

thare any spells editor like edit the cool down time and the damge??
whats wrong with changing the cooldown value in XML file?

Not sure are there any copy-pasteable spellcreating/spellediting systems, but I'm quite sure they exist (for example I created my own system with LUA)
 
whats wrong with changing the cooldown value in XML file?

Not sure are there any copy-pasteable spellcreating/spellediting systems, but I'm quite sure they exist (for example I created my own system with LUA)
i edit the cooldown from 4000 to 500 and it didnt work :( the same time with cooling down its a bug ???
 
<instant group="attack" spellid="118" name="Eternal Winter" words="exevo gran mas frigo" lvl="60" mana="1050" prem="1" selftarget="1" exhaustion="40000" groupcooldown="1" needlearn="0" script="attack/eternal winter.lua">
<vocation name="Druid"/>
<vocation name="Elder Druid"/>
show the files and lines what you changed. And what did you do in-game to test is the new cooldown set correctly?
i did like this and didnt work /
 
<instant group="attack" spellid="118" name="Eternal Winter" words="exevo gran mas frigo" lvl="60" mana="1050" prem="1" selftarget="1" exhaustion="40000" groupcooldown="1" needlearn="0" script="attack/eternal winter.lua">
<vocation name="Druid"/>
<vocation name="Elder Druid"/>

i did like this and didnt work /
You need to take down exhaustion not groupcooldown you need to do it like this


Code:
<instant group="attack" spellid="118" name="Eternal Winter" words="exevo gran mas frigo" lvl="60" mana="1050" prem="1" selftarget="1" exhaustion="500" groupcooldown="1000" needlearn="0" script="attack/eternal winter.lua">
<vocation name="Druid"/>
<vocation name="Elder Druid"/>
 
its the same not work
You need to take down exhaustion not groupcooldown you need to do it like this


Code:
<instant group="attack" spellid="118" name="Eternal Winter" words="exevo gran mas frigo" lvl="60" mana="1050" prem="1" selftarget="1" exhaustion="500" groupcooldown="1000" needlearn="0" script="attack/eternal winter.lua">
<vocation name="Druid"/>
<vocation name="Elder Druid"/>
 
Back
Top