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

Request mana rune script for heal of 1000 and 500

Linryt

Conclusionot.sytes.net
Joined
Nov 29, 2008
Messages
73
Reaction score
0
I'm requesting 2 scripts for 2 manarunes with one specificly healing 500 mana (magic level 3 required) and one healing specificly healing 1000 mana (magic level 80 required) also i need the little scripts i have to add to the spells xml

(this is for cryingdamson 8.54 btw)

Sincerelly, Linryt.
 
Last edited:
...credits not me

Lua:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_GREEN) ---- what the color of the effect. you can do like RED/BLUE
setCombatParam(combat, COMBAT_PARAM_TARGETCASTERORTOPMOST, 1)
setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, 0)

function onCastSpell(cid, var)
doPlayerAddMana(cid, 500) ---- in the other one change the 500 to 1000 .
return doCombat(cid, combat, var)
end

in spells paste this:
Code:
<rune name="Manarune" id="2280" charges="1" mana="1"[B] maglv="0"[/B] exhaustion="1500" blocktype="solid" allowfaruse="1" script="custom/manaheal.lua"/>

just change the mlvl in this line to the one that suits with you.
 
still can't use it in pz can somebody somehow modify it or make a simular one which i can use in pz?
 
Back
Top