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

Solved TFS 0.3.6 Movements

Dkadsfe

Member
Joined
Apr 1, 2016
Messages
280
Reaction score
22
Hi this worked for me before but not it doesn't.. but its the same exact script, theres no changes in tfs how to fix? and the V1 helmet works but V2 hat does not
Code:
    <item id="6095" article="a" name="V2 Hat">
        <attribute key="weight" value="1250" />
         <attribute key="absorbPercentall" value="3" />
       <attribute key="magiclevelpoints" value="65" />
        <attribute key="showattributes" value="1" />
        <attribute key="armor" value="50" />
        <attribute key="slotType" value="head" />
     
     
            <item id="2339" article="a" name="V1 Helmet">
        <attribute key="weight" value="1800" />
        <attribute key="showattributes" value="1" />
        <attribute key="magiclevelpoints" value="15" />
        <attribute key="absorbPercentall" value="1" />
        <attribute key="armor" value="50" />
        <attribute key="slotType" value="head" />
    </item>
movements.xml
Code:
    <movevent type="Equip" itemid="6095" slot="head" event="function" value="onEquipItem"/>
    <movement type="DeEquip" itemid="6095" event="function" value="onDeEquipItem"/>
    <movevent type="Equip" itemid="2339" slot="head" function="onEquipItem" value="onEquipItem"/>
    <movement type="DeEquip" itemid="2339" event="function" value="onDeEquipItem"/>
 
Hi this worked for me before but not it doesn't.. but its the same exact script, theres no changes in tfs how to fix? and the V1 helmet works but V2 hat does not
Code:
    <item id="6095" article="a" name="V2 Hat">
        <attribute key="weight" value="1250" />
         <attribute key="absorbPercentall" value="3" />
       <attribute key="magiclevelpoints" value="65" />
        <attribute key="showattributes" value="1" />
        <attribute key="armor" value="50" />
        <attribute key="slotType" value="head" />
    
    
            <item id="2339" article="a" name="V1 Helmet">
        <attribute key="weight" value="1800" />
        <attribute key="showattributes" value="1" />
        <attribute key="magiclevelpoints" value="15" />
        <attribute key="absorbPercentall" value="1" />
        <attribute key="armor" value="50" />
        <attribute key="slotType" value="head" />
    </item>
movements.xml
Code:
    <movevent type="Equip" itemid="6095" slot="head" event="function" value="onEquipItem"/>
    <movement type="DeEquip" itemid="6095" event="function" value="onDeEquipItem"/>
    <movevent type="Equip" itemid="2339" slot="head" function="onEquipItem" value="onEquipItem"/>
    <movement type="DeEquip" itemid="2339" event="function" value="onDeEquipItem"/>
I also changed all vocations names.. but I do not believe that it would affect movements.xml
 
Nvm I fixed it!. ... I just hate working with movements.xml but I finally figured out how to fix it
If you post a problem and find the solution on your own, please share it, as it may help others with the same or similar issues.
It might even help you in the future due to any number of negative reasons, thanks.
 
Back
Top