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

C++ Utana vid

seyakuroya

DevlandOT.eu
Joined
Dec 21, 2008
Messages
711
Solutions
1
Reaction score
411
250ed22a-af5f-40b3-b127-2a9ce14537d1
250ed22a-af5f-40b3-b127-2a9ce14537d1
ZO7jpqI.png


When I cast utana vid it's lookin that, but if monster using invisiblle (warlock) players get debug.

Any help?

Using - Othire engine upgrade to 7.9
 
Code:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE)
setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, 0)

local condition = createConditionObject(CONDITION_INVISIBLE)
setConditionParam(condition, CONDITION_PARAM_TICKS, 200000)
setCombatCondition(combat, condition)

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