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

Windows How to make so the rune dont end? :o

Status
Not open for further replies.

l3xik0n

nobie , kool boy ;S
Joined
Feb 7, 2009
Messages
134
Reaction score
0
Here is my script to super sd
in spells.xml
PHP:
<rune name="Super SD" id="2264" allowfaruse="1" charges="100" lvl="45" maglv="18" exhaustion="1300" needtarget="1" blocktype="solid" script="custom/Super SD.lua"/>

In scripts:
PHP:
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)
setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, -2.1, -30, -2.6, 0)

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

But the probelm is the rune end .... How i change so the rune dont end? ;o
 
PHP:
<rune name="Super SD" id="2264" allowfaruse="1" "lvl="45" maglv="18" exhaustion="1300" needtarget="1" blocktype="solid" script="custom/Super SD.lua"/>
I delete it and now i cant use the rune ^^
 
Status
Not open for further replies.
Back
Top