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

how to make infinite mana rune and how to make runes doesnt end

First question) Do you have manarune??

Second question) Do you add line to spell.xml

If you do it then in spell.xml (line with manarune) change
charges="number"
to
charges="0"
 
Lua:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_GREEN) 
setCombatParam(combat, COMBAT_PARAM_TARGETCASTERORTOPMOST, 1)
setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, 0)


function onCastSpell(cid, var)
doPlayerAddMana(cid, 300) ---- How much it gives mana
return doCombat(cid, combat, var)

end
 
Back
Top