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

Lua Wand attacking exhaustion with spell

LegacyOT

New Member
Joined
Sep 7, 2023
Messages
10
Reaction score
0
Hello otlanders
i've got problem with my wands when i attack with it i get exhausted ,i mean when i used my wand i couldn't use spell for my exhausted and this is my wand.lua

Lua:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_DEATHDAMAGE)
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MORTAREA)
setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_SUDDENDEATH)
setAttackFormula(combat, COMBAT_FORMULA_LEVELMAGIC, 0.20, 0.20, 2.5, 3)

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

please HELP
 
Back
Top