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

Heal Friend (Exura Sio) Effect

rigatto

New Member
Joined
Sep 1, 2008
Messages
4
Reaction score
0
Hello!!

As you know, Heal Friend (Exura Sio) on global makes an blue effect on the Elder Druid, and an green effect on the Sio's target... I have not found any script that could do this, so I would like to request here!!! =)


Could anyone help me? Thankyou so much.


Have a nice day!!!
 
heal friend.lua
Code:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_HEALING)
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_GREEN)
setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false)
setCombatParam(combat, COMBAT_PARAM_DISPEL, CONDITION_PARALYZE)
setHealingFormula(combat, COMBAT_FORMULA_LEVELMAGIC, 5, 5, 10, 14)

function onCastSpell(cid, var)
	return doCombat(cid, combat, var), doSendMagicEffect(getCreaturePosition(cid), CONST_ME_MAGIC_BLUE)
end
 
Back
Top