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

Lua how to make this script heal hp too

cooldodo

New Member
Joined
Jan 17, 2014
Messages
297
Reaction score
4
I want this script to heal mana and hp tfs 0.3.6
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_HEALING)
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE)
setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false)


function onCastSpell(cid, var)
doCreatureAddmana(cid, 60000)
return doCombat(cid, combat, var)
end
 
Back
Top