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

Exura san = 100% health and 100% mana how?

Basic manarune and health rune

Thats the one I have on mine its by JDB and I worked with it a little on my server and made it work with another item than a rune. To make that a spell just put it in the spell folder and make it a spell :p easy as that, also for 100% healing for hp and mana work with the formula and you'll get it workin. Good luck :)
 
Try this code

Lua:
local combat = createCombatObject() 
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_HEARTS) 
setCombatParam(combat, COMBAT_PARAM_TARGETCASTERORTOPMOST, true) 
setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false) 
 
function onCastSpell(cid, var) 
    local magical = getCreatureMaxMana(cid)
    local life = getCreatureMaxHealth(cid)
    doPlayerAddMana(cid, magical) 
    doCreatureAddHealth(cid, life)
    return doCombat(cid, combat, var) 
end
 
Back
Top