• 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] Mort Sio

@up
Its like the "heal friend" spell...But instead of healling, it kills...


it's usefull if i'm at my gm char and want to kill someone =D
 
Could someone tell me what part of the script makes it a spell like all the sio spells...

Code:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE)
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MORTAREA)
setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, -1.3, -30, -1.7, 0)

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

you edit the 3rd line, where it says MORTAREA.
 
Back
Top