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

Spell Exori Super Gran, Druid Fury, Sorcerer Fury, Divine Condition, Custom Spells

the pally one is wrong i cant make it work please help me out with it i need the lua only
 
Awesome spells working well!
thanks :3

up
the pally one is wrong i cant make it work please help me out with it i need the lua only
For me it works on tfs 0.2.15 and I just did different this:
1.
I made new folder "Custom" put these spells into Custom folder
2. I changed vocations to their names instead of id

So my spells xml for pally:
Code:
    </instant>
        <instant name="Divine Condition" words="exevo san condition" lvl="360" mana="500" prem="1" selftarget="1" exhaustion="2100" needlearn="0" script="custom/thecondition.lua">
        <vocation name="Paladin"/>
        <vocation name="Royal Paladin"/>
    </instant>

and then just put his script for Divine Condition into custom folder should be working :p

cheers
 
sorry for refreshment but can someone change bugged
Code:
setCombatFormula(bigFlames, COMBAT_FORMULA_LEVELMAGIC, -5.766, -50, -6.241, -100)
to
Code:
function onGetFormulaValues(cid, level, maglevel)
    min = (level / 5) + (maglevel * 1.8) + 11
    max = (level / 5) + (maglevel * 3) + 19
    return min, max
end
- this will be much easier to balance ;)
 
Back
Top