• 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 Mwall Bug Mwall Won't Dissapear

theroyal

Wassup :)
Joined
Oct 22, 2009
Messages
372
Reaction score
6
there is a mwall bug he won't dissapear after you use it and i don't know how to fix it please if someone knows how to fix please tell me
i use tfs 0.3.6 8.60V4
i will REP++.
Kind Regards, Theroyal.
 
Hmm you have changed the items.xml?

If you have just search at items.xml
for itemid 1497 and replace the whole magic wall thing with this code:

Lua:
<item id="1497" article="a" name="magic wall">
		<attribute key="type" value="magicfield" />
		<attribute key="decayTo" value="0" />
		<attribute key="duration" value="20" />
	</item>
 
searched for it in items.xml i found mwall with 1497 mwall with 1498 but my ot is using 2293
mwall id
<item id="2293" article="a" name="magic wall rune">
<attribute key="runeSpellName" value="adevo grav tera"/>
<attribute key="weight" value="120"/>
<attribute key="charges" value="3"/>
this is the code
 
as i said copy and paste overy the 1497 at items.xml and restart server! not reload!
 
</attribute>
<item id="1497" article="a" name="magic wall">
<attribute key="type" value="magicfield" />
<attribute key="decayTo" value="0" />
<attribute key="duration" value="20" />
</item>
</item>
<item id="1498" article="a" name="magic wall">
<attribute key="type" value="magicfield"/>
<attribute key="decayTo" value="0"/>
<attribute key="duration" value="20"/>
</item>

2293:
</item>
<item id="2293" article="a" name="magic wall rune">
<attribute key="runeSpellName" value="adevo grav tera"/>
<attribute key="weight" value="120"/>
<attribute key="charges" value="3"/>
</item>
 
you have a disaster there, put this...

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

also post the item 1496, you have some wrong at the end of that

edit: you received any error on the console? if yes you should post it too
 
</attribute>
</item>
<item id="1496" article="a" name="poison field">
<attribute key="type" value="magicfield"/>
<attribute key="decayTo" value="0"/>
<attribute key="duration" value="120"/>
<attribute key="field" value="poison">
<attribute key="ticks" value="5000"/>
<attribute key="start" value="5"/>
<attribute key="damage" value="100"/>

hmm i don't see any error regarding this at my console

Edit:
also after i pasted the lines you gave me when i restarted my ot it said unable to load items you want to procid i clicked yes.not working still
 
Last edited:
Mate, you are pasting it so bad, you don't know when a item start and when finish? let's fix it, paste this from the poison field to the last magic wall

Code:
<item id="1496" article="a" name="poison field">
<attribute key="type" value="magicfield"/>
<attribute key="decayTo" value="0"/>
<attribute key="duration" value="120"/>
<attribute key="field" value="poison">
<attribute key="ticks" value="5000"/>
<attribute key="start" value="5"/>
<attribute key="damage" value="100"/>
</attribute>
</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>
<item id="1498" article="a" name="magic wall">
<attribute key="type" value="magicfield"/>
<attribute key="decayTo" value="0"/>
<attribute key="duration" value="20"/>
</item>

it should work now, PAY ATTENTION OF WHAT YOU DELETE, remember erase from poison field to the second magic wall and paste what i give to you
 
Go to items.xml and look which one disappears (1497 or 1498), then go to the magic wall rune script in spells and change the id to the id that disappears in your items.xml.
 
Back
Top