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

Need strong paralyze rune!! REP

sobek07

Chce być fajny
Joined
Nov 16, 2009
Messages
231
Reaction score
0
Location
Poland / Poznań
Hi, I need help with paralyze rune. I have TFS 0.3.6 Engine
and duration and power of paralyze rune is too low. Can you edit this script for me?

Code:
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, -1.5, 0, -1.5, 0)
setCombatCondition(combat, condition)
function onCastSpell(cid, var)
	return doCombat(cid, combat, var)
end
 

Similar threads

Back
Top