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

Make a new container?

strutZ

Australian OT Member {AKA Beastn}
Joined
Nov 16, 2014
Messages
1,392
Solutions
7
Reaction score
552
Hey there,

I want to make the war backpack a backpack... how can I make it a container? do i need to edit the otb? If so can we edit the 10.76 .otb yet?
 
NO, YOU DON'T NEED TO EDIT OTB

the simplest thing ever:

<attribute key="containerSize" value="20" />
<attribute key="slotType" value="backpack" />
 
NO, YOU DON'T NEED TO EDIT OTB

the simplest thing ever:

<attribute key="containerSize" value="20" />
<attribute key="slotType" value="backpack" />

I already did this. the war backpack is thinking its a label. I think i need to edit the OTB.. fml
 
I already did this. the war backpack is thinking its a label. I think i need to edit the OTB.. fml
No, you don't. Writables, like the label, are also configurable via items.xml. OTB is just for thinks like if it blocks walking, if it's movable, pickupable etc. mainly hardcoded stuff.

What server version are you using?
 
I've also looked into this. Even if you set it up in items.xml, it acts as a writable. I don't believe it can be done without an otb edit.
 
I changed the war backpack to this.

Code:
  <item id="23816" article="a" name="Endless Backpack">
     <attribute key="weight" value="1000" />
     <attribute key="containerSize" value="40" />
     <attribute key="slotType" value="backpack" />
     <attribute key="description" value="The GODS have given this backpack significant more space." />
   </item>

Still thinks its writable. using tfs 1.2 ORTS
 
You could at least change the article to "an" don't be lazy xD
But yeah, pretty sure OTB edit is needed. Maybe if you open an issue on the git, Mark will do something about it :rolleyes:
 
You could at least change the article to "an" don't be lazy xD
But yeah, pretty sure OTB edit is needed. Maybe if you open an issue on the git, Mark will do something about it :rolleyes:

hahaha i was just testing stuff wasnt even thinking about grammer Mr.
Already made one before lol why did i update to 10.76... everything i want to do i cant because doesn't exist lol
 
Back
Top