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

Softboots 7.6

Anoxi

Stockiz
Joined
Apr 19, 2009
Messages
1,270
Reaction score
31
Location
Stockholm,Sweden (Temporary)
I use an 7.6 realmap and I got problems with my softies and neeed to know how they work , since when I put them on floor they debugg everyplayer and myself so I need to restart the server , would really appricate for the help and ofc , repping+




Code:
	<item id="2640" name="soft boots">
		<attribute key="weight" value="800"/>
		<attribute key="slotType" value="feet"/>
		<attribute key="decayTo" value="6530"/>
		<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"/>
 
Code:
<item id="2640" name="soft boots">
		<attribute key="weight" value="800"/>
		<attribute key="slotType" value="feet"/>
		<attribute key="decayTo" value="6530"/>
		<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>




add item> ? Not sure tough, never seen 7.6 scripts
 
well there was no softboots but there ware boots of waterwalking and the id of those ware difrent so check it out that first i dont remember the id's
but these 6132 and 2640 are not in 7.6
u could just make it the boots of waterwalking into softboots and remove the transformDeEquipTo.
 
well, do you have them in movements.xml?
XML:
	<movevent event="Equip" itemid="2358" slot="feet" function="onEquipItem"/>
	<movevent event="DeEquip" itemid="2358" slot="feet" function="onDeEquipItem"/>
	<movevent event="Equip" itemid="2640" slot="feet" function="onEquipItem"/>
	<movevent event="DeEquip" itemid="2640" slot="feet" function="onDeEquipItem"/>
 
Back
Top