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

Working Magic Wall rune

Aradz

New Member
Joined
Sep 19, 2013
Messages
51
Reaction score
1
Hello !

Anyone got working mw rune ? because on my 8.54 server there is no runes only spells could you share the script with me ??
 
This is the default magic wall rune script from TFS 0.3.6pl1 (Crying Damson) 8.54.
spells.xml
Code:
<rune name="Magic Wall" id="2293" allowfaruse="1" charges="3" lvl="32" maglv="9" exhaustion="2000" blocktype="all" event="script" value="support/magic wall rune.lua"/>

magic wall rune.lua
Code:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_ENERGY)
setCombatParam(combat, COMBAT_PARAM_CREATEITEM, 1497)

function onCastSpell(cid, var)
   return doCombat(cid, combat, var)
end
 
Last edited:
Back
Top