• 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 Need Modded Sudden Death Rune

Trader

New Member
Joined
Aug 12, 2009
Messages
219
Reaction score
2
Hello,

Anyone have a script for a attack rune that is more powerful than sudden death rune? I can't seem to script one that works.

I need to use action.xml please
Thanks,
 
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


Sudden Death script
I need it compatible to actions.xml and I need to bump up the damage
 
Back
Top