• 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 TFS 8.54 Can't add magic levels to items ? Please help ill rep++ !

Quiksilver55

New Member
Joined
Mar 14, 2010
Messages
4
Reaction score
0
<item id="2472" article="a" name="magic plate armor">
<attribute key="weight" value="8500"/>
<attribute key="armor" value="20"/>
<attribute key="slotType" value="body"/>
<attribute key="magiclevelpoints" value="10"/>

Here's what my items looks like in items.xml

Now i spawn it in game when i look it clearly says (Arm:55, magic level +10). However my magic level does not change ! Please help me :)
 
@Zakius Thanks alot ! Added rep !

EDIT: What if its a rod that i want to give magic levels ? Should i put it in "Others" and what should it look like ?

<movevent type="Equip" itemid="7430" slot="wand" event="function" value="onEquipItem"/>
<vocation id="1"/>
<vocation id="5" showInDescription="0"/>
<vocation id="2"/>
<vocation id="6" showInDescription="0"/>

Something like that ?
 
Last edited:
Open movements.xml

And add:
PHP:
	<movevent type="Equip" itemid="2472" slot="armor" level="8" event="function" value="onEquipItem">
	</movevent>
	<movevent type="DeEquip" itemid="12608" slot="armor" event="function" value="onDeEquipItem"/>

and ur problems will be fixed


repp+

okthxbye
 
Back
Top