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

New Backpack

Garou

New Member
Joined
Nov 30, 2010
Messages
5
Reaction score
0
Hello.

To make a new container item, like a backpack, I will need a dat editor, right?
 
not realy you can change other items wich have low containersize such as present box just add replace this present from old

LUA:
<item id="1990" name="present" article="a">
		<attribute key="weight" value="600" />
		<attribute key="containerSize" value="20" /> 
	</item>
<attribute key="containerSize" value="20" /> --- as a normal backpack size and movements.xml

LUA:
<movevent event="DeEquip" itemid="1990" slot="backpack" function="onDeEquipItem"/>
	<movevent event="Equip" itemid="1990" slot="backpack"  function="onEquipItem">
	</movevent>
 
Back
Top