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

Magic wall dont remove

data\spells\scripts\support\magic wall rune.lua
LUA:
setCombatParam(combat, COMBAT_PARAM_CREATEITEM, 1497)
Check if item id is 1497.

go to data\items\items.xml
XML:
	<item id="1497" article="a" name="magic wall">
		<attribute key="type" value="magicfield" />
		<attribute key="decayTo" value="0" />
		<attribute key="duration" value="20" />
	</item>

:D
 
It is :/

- - - Updated - - -

This is the m wall part
Code:
<item id="1497" article="a" name="magic wall">
		<attribute key="type" value="magicfield"/>
	</item>
	<item id="1497" article="a" name="magic wall">
		<attribute key="type" value="magicfield"/>
		<attribute key="decayTo" value="0"/>
		<attribute key="duration" value="20"/>
	</item>

And do I need to restart when I have change it in items ?
 
Back
Top