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

[Spell BUG] Death dmg doesnt do dmg!

Extrom

New Member
Joined
Aug 10, 2008
Messages
39
Reaction score
0
Howdy!

Recently I discovered a problem with my ot, when I tried to shoot my friend with an SD rune, well, it didnt do any dmg on him, just show the animation.

Every kind of spells works except for any spell or rune that is "death" dmg, they just show animation on the target but deals no dmg.

Anyone got any clue ? all help is appreciated!

Thanks in advance!
 
Here's my SD rune

local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_TARGETCASTERORTOPMOST, true)
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_DEATHDAMAGE)
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MORTAREA)
setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_SUDDENDEATH)
setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, -1, -60, -1, -60, 5, 5, 4, 7)

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

And it's TFS 0.3.6, also take note, I said this concerns all DEATH dmg, not just the sd.
 
Back
Top