• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Can you help me manage this problem: hours are minutes etc.

damian5592

New Member
Joined
Feb 17, 2012
Messages
10
Reaction score
0
hello,

i have a problem for example i use soft boots they have a time of 4h but after 4 mins they are wasted please help!
 
Try this.

Items.xml

Code:
<item id="2640" article="a" name="pair of soft boots">
        <attribute key="weight" value="800" />
        <attribute key="slotType" value="feet" />
        <attribute key="decayTo" value="10021" />
        <attribute key="transformDeEquipTo" value="6132" />
        <attribute key="duration" value="14400" />
        <attribute key="healthGain" value="5" />
        <attribute key="healthTicks" value="2000" />
        <attribute key="manaGain" value="25" />
        <attribute key="manaTicks" value="1000" />
        <attribute key="showduration" value="1" />
        <attribute key="showattributes" value="1" />
    </item>

Movements.xml
Code:
<!-- Boots -->
<movevent event="Equip" itemid="2195" slot="feet" function="onEquipItem"/>
<movevent event="DeEquip" itemid="2195" slot="feet" function="onDeEquipItem"/>
<movevent event="Equip" itemid="6132" slot="feet" function="onEquipItem"/>
<movevent event="DeEquip" itemid="6132" slot="feet" function="onDeEquipItem"/>
<movevent event="Equip" itemid="2640" slot="feet" function="onEquipItem"/>
<movevent event="DeEquip" itemid="2640" slot="feet" function="onDeEquipItem"/>
<movevent event="Equip" itemid="7886" slot="feet" function="onEquipItem">
<vocation name="Sorcerer"/>
<vocation name="Master Sorcerer" showInDescription="0"/>
<vocation name="Druid"/>
<vocation name="Elder Druid" showInDescription="0"/>
</movevent>
 
Try this.

Items.xml

Code:
<item id="2640" article="a" name="pair of soft boots">
        <attribute key="weight" value="800" />
        <attribute key="slotType" value="feet" />
        <attribute key="decayTo" value="10021" />
        <attribute key="transformDeEquipTo" value="6132" />
        <attribute key="duration" value="14400" />
        <attribute key="healthGain" value="5" />
        <attribute key="healthTicks" value="2000" />
        <attribute key="manaGain" value="25" />
        <attribute key="manaTicks" value="1000" />
        <attribute key="showduration" value="1" />
        <attribute key="showattributes" value="1" />
    </item>

Movements.xml
Code:
<!-- Boots -->
<movevent event="Equip" itemid="2195" slot="feet" function="onEquipItem"/>
<movevent event="DeEquip" itemid="2195" slot="feet" function="onDeEquipItem"/>
<movevent event="Equip" itemid="6132" slot="feet" function="onEquipItem"/>
<movevent event="DeEquip" itemid="6132" slot="feet" function="onDeEquipItem"/>
<movevent event="Equip" itemid="2640" slot="feet" function="onEquipItem"/>
<movevent event="DeEquip" itemid="2640" slot="feet" function="onDeEquipItem"/>
<movevent event="Equip" itemid="7886" slot="feet" function="onEquipItem">
<vocation name="Sorcerer"/>
<vocation name="Master Sorcerer" showInDescription="0"/>
<vocation name="Druid"/>
<vocation name="Elder Druid" showInDescription="0"/>
</movevent>
but its not only on softboots its on runes like magicwall or on deads or on regenerations :(

and everything is allright like your code above its the same like mines in my movments!
 
Do not help this guy.
He posted a thread in the jobs section(Mark deleted the thread after I told him about the issue), stating that he would give €20 to someone who can help him set up a 10.41 server.
I offered my help for the money, did the job and he said he was going to send over the money.
Now he has been ignoring me for over 24hours and wont respond to anything I say.
 
Back
Top