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

Zwiększenie mocy Paralize runy.

El Thiere

Banned User
Joined
Nov 26, 2009
Messages
64
Reaction score
0
Skrypt.

local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_TARGETCASTERORTOPMOST, true)
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_RED)

local condition = createConditionObject(CONDITION_PARALYZE)
setConditionParam(condition, CONDITION_PARAM_TICKS, 20000)
setConditionFormula(condition, -0.9, 0, -0.9, 0)
setCombatCondition(combat, condition)

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

dawno tego nie robiłem i zwracam się do was z pomocą żeby mnie chociaż nakierować . zęby moc paraliża zwiększyć
 
setConditionFormula(condition, -1.0, 40, -1.0, 40)
jak rl
 
A co doda zmiana tych wartości wpisanych przez kooba?

Bo z drugiej strony można ustawić większego exhausa ofiary np
setConditionParam(condition, CONDITION_PARAM_TICKS, 40000)

Czym to się różni?
 
Back
Top