Thutmose / ThutEssentials

Essentials mod for Forge
7 stars 6 forks source link

Kits & NBT data? and Starter Kits #70

Open ClaudiusMinimus opened 4 years ago

ClaudiusMinimus commented 4 years ago

Using thutessentials-1.15.2-3.0.6:

  1. Can kits use NBT data? If so, what is the syntax?
  2. Can kits be used as a starter kit? If so, how do we make sure a new player gets one?

Thank you, CM

Thutmose commented 4 years ago

for 1:

<Item id="minecraft:stick" n="5">
<tag>[valid nbt tag here]</tag>
</Item>

where [valid nbt tag here] is whatever would work in the /give command for an nbt tag for an item

For 2: Currently it doesn't have a way to auto-run the kit for new players, I would suggest a noticeboard or something telling them about the kit

ClaudiusMinimus commented 4 years ago

Thanks!