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

Help-me script tibia 7.6

marcusk12

New Member
Joined
Nov 29, 2016
Messages
2
Reaction score
0
I've been trying to create a boot for my 7.6 server and I'm putting the following script in date / item / item.xml

<?xml version="1.0"?>

<item id="2358" article="a" name="boots of akam">
<attribute key="slotType" value="feet" />
<attribute key="healthGain" value="20" />
<attribute key="healthTicks" value="2000" />
<attribute key="manaGain" value="50" />
<attribute key="manaTicks" value="1000" />
<attribute key="speed" value="40" />
<attribute key="weight" value="1000" />
<attribute key="description" value="Fast regeneration and 20 speed."/>

</item>

So I created a data / movements / movements.xml folder and put it as follows

<?xml version="1.0"?>

<movevent type="Equip" itemid="2358" slot="feet" event="function" value="onEquipItem"/>
<movevent type="DeEquip" itemid="2358" slot="feet" level="20" event="function" value="onDeEquipItem">
<vocation id="1" showInDescription="0"/>
<vocation id="2" showInDescription="0"/>
<vocation id="3" showInDescription="0"/>
<vocation id="4" showInDescription="0"/>
</movevent>

And with that does not appear a description of the item and neither of the attributes, could someone tell me where the error is?
 
Back
Top