rudger
Active Member
Like the title says.
I'd like my strong haste spell to add 10x as much speed then usual.
Anyone know how to?
This is my strong haste script:
(I rep)
I'd like my strong haste spell to add 10x as much speed then usual.
Anyone know how to?
This is my strong haste script:
XML:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE)
setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false)
local condition = createConditionObject(CONDITION_HASTE)
setConditionParam(condition, CONDITION_PARAM_TICKS, 22000)
setConditionFormula(condition, 0.7, -56, 0.7, -56)
setCombatCondition(combat, condition)
function onCastSpell(cid, var)
return doCombat(cid, combat, var)
end
(I rep)