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

Question about spells

make the manarune an action script? but then they can't use it while walking?

try return false, if it's a spell rune
 
Could you fix it for me? Heres a script
Code:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_EFFECT, 12)
setCombatParam(combat, COMBAT_PARAM_TARGETCASTERORTOPMOST, 1)
setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, 0)
 
function onCastSpell(cid, var) 
    local mana = getCreatureMaxMana(cid)
    doPlayerAddMana(cid, mana/5+3000000) 
    return doCombat(cid, combat, var) 
end
 
Back
Top