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

Soft boots reset

Tibia Rox

Member
Joined
Feb 4, 2009
Messages
1,181
Reaction score
9
Location
U.S.A
Every time I log out, my soft boots reset back to 240 minutes. How do I change this so they run out and you have to refill them?
 
Check in items.xml (ID 2160) if you have some like this:

<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="1"/>
<attribute key="healthTicks" value="2000"/>
<attribute key="manaGain" value="2"/>
<attribute key="manaTicks" value="1000"/>
<attribute key="showduration" value="1"/>
</item>
 
Yes, I have that:
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="1" />
		<attribute key="healthTicks" value="2000" />
		<attribute key="manaGain" value="2" />
		<attribute key="manaTicks" value="1000" />
		<attribute key="showduration" value="1" />
		<attribute key="showattributes" value="1" />
 
No

Code:
[18/03/2012 21:41:38] [Owner] Creon has logged in.
[18/03/2012 21:41:41] [Owner] Creon has logged out.
[18/03/2012 21:41:42] Rawx has logged in.
[18/03/2012 21:41:43] Rawx has logged out.
 
Go Try This ...
<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="1" />
<attribute key="healthTicks" value="2000" />
<attribute key="manaGain" value="2" />
<attribute key="manaTicks" value="1000" />
<attribute key="showduration" value="1" />
<attribute key="showattributes" value="1" />
 
Oh wait you use sqlite. No idea how it works there but I for sure recommend trying to switch to MySQL since something goes wrong while updating stuff in the player_items table.
 
Back
Top