Nomadic Tents

Nomadic Tents

6M Downloads

(Doc) Format for Recovering Tents in 1.15+

denzuko opened this issue ยท 0 comments

commented

The give command has changed from 1.15 and on. In regards to issue #11 here is the updated text:

/give @p nomadictents:tent{TentData:{
  TentType:A,
  WidthCur:B,
  DepthCur:C,
  TentColor:D,
  ID:E}} 1

A, B, C, D, E are number values as explained below:

PlaceHolder NBT Type Description
A Int tag Type of tent with [ Yurt = 0, Tepee = 1, Bedouin = 2, Indlu = 3, Shamiyana = 4 ] (defaults: 0)
B Int tag Tent size with [ Small = 0, Medium = 1, Large = 2, Huge = 3, Giant = 4, Mega = 5] (defaults: 0)
C Int tag Number of extra dirt layers within the tent ranges from [ Non-Upgraded = 0, Fully Upgraded = 5] (defaults: 0)
E Int Tag The location ID of the tent. Starts at 1 and increments for each tent built and stored in dimention(normadictents). Using the value -32768 will cause the tent use the default behavior for new tents to dynamically find the next available space. If the X and Z coordinates of the door are known, the ID is given by the formula ID = (X / 32) + (Z / 32) * 64. (Defaults: -32768 for new tents)