Thunder OT 8.0
New Member
- Joined
- Jan 24, 2014
- Messages
- 16
- Reaction score
- 0
I'm trying to cast the Exori Hur spell on a knight, but when I type Exori Hur I get "A player with this name is not online"..
Here's my script.. I tried to change the name of the words to execute the spell but it didn't help.
Thanks in advance.
Same goes for exori con
Really weird
Here's my script.. I tried to change the name of the words to execute the spell but it didn't help.
Code:
<instant name="Whirlwind" words="exori hur" lvl="28" mana="40" needtarget="1" needWeapon="1" soul="0" exhaustion="1" prem="0" enabled="1" script="whirlwind throw.lua"><vocation id="8"/><vocation id="4"/></instant>
Code:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE)
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_DRAWBLOOD)
setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_WEAPONTYPE)
setCombatFormula(combat, COMBAT_FORMULA_SKILL, 0, 0, 0.9, 0)
function onCastSpell(cid, var)
return doCombat(cid, combat, var)
end
Thanks in advance.
Same goes for exori con
Really weird
Last edited by a moderator: