• 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]Utnai Hur - Doesn't show up spell name :O?!?

Wiw3K

New Member
Joined
Apr 16, 2008
Messages
371
Reaction score
3
I type "Utani Hur" then only magic effect appear & nothing more (You are hasted but no text "Utani Hur"
 
Last edited:
Stop to fight and put out this script there!

Code:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE)
setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, 0)

local condition = createConditionObject(CONDITION_HASTE)
setConditionParam(condition, CONDITION_PARAM_TICKS, [COLOR="Red"]33000[/COLOR])
setConditionFormula(condition, [COLOR="Blue"]0.3, -24, 0.3, -24[/COLOR])
setCombatCondition(combat, condition)

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

if you don't know,
RED = Time of duration, 1000 = 1 second.
BLUE = Formula to up speed.
 
Back
Top