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

Solved Utamo Vita stop spell.

Aradz

New Member
Joined
Sep 19, 2013
Messages
51
Reaction score
1
Hello as the title says im looking for a spell which stops the utamo vita when cast.
 
Code:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE)
setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false)
setCombatParam(combat, COMBAT_PARAM_DISPEL, CONDITION_MANASHIELD)

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