![[TaCZ] Timeless and Classics Zero](https://media.forgecdn.net/avatars/thumbnails/1005/666/256/256/638527114344804635.png)
[Bug]:
HeavyArtilleryTank opened this issue ยท 7 comments
I have confirmed that ...
- tacz is up to date
- unable to reproduce without tacz
Minecraft and modloader version
1.20.1 forge
tac version
1.0.3
Related Mods
NO OTHER MODS USED
Description
how can i /give items wit attachemnts like muzzles magazines and scopes?
Step to reproduce
No response
Logs & Crash reports
No response
ok but now i am lloking for the muzzles and the other attachments but it just doesnt work
Again, I would suggest to just check the original attachments' properties with the /data
command, and work your way out from that.
In TaCZ, different guns, attachments, and ammo are represented mostly in their NBT data. so e.g. /give @s tacz:modern_kinetic_gun{GunId:"tacz:m4a1"}
would give you an M4A1. /give @s tacz:ammo{AmmoId:"tacz:9mm"}
would give you a 9-mil round. It's similar to attachments and you can work this out yourself.
There's a method on how to check what NBT tags are in an item in vanilla Minecraft:
- Hold the item you want to check
- Run the command
/data get entity @s SelectedItem.tag
(or something similar, you can search it up)
As far as I can tell, this NBT approach they use is presumably for the foundational groundwork of gunpacks customizations.
Hopefully, this answers your question; if you need more support regarding TaCZ, you can get it via their official discord.
how would you implement this nbt in a loot table?
I have it like this rn
{
"type": "minecraft:chest",
"pools": [
{
"rolls": 3,
"entries": [
{
"type": "minecraft:item",
"name": "tacz:modern_kinetic_gun",
"weight": 2,
"quality": 2,
"functions": [
{
"function": "GunId",
"tag": "tacz:aa12",
"enchantments": {},
"add": true,
"conditions": []
}
]
}
]
}
]
}
@mkp303 This is how you would do it:
{
"type": "minecraft:chest",
"pools": [
{
"rolls": 3,
"entries": [
{
"type": "minecraft:item",
"name": "tacz:modern_kinetic_gun",
"weight": 2,
"quality": 2,
"functions": [
{
"function": "minecraft:set_nbt",
"tag": "{GunId:\"tacz:aa12\"}"
}
]
}
]
}
]
}
If the TaCZ team didn't add any other Loot Table functions then this should be the vanilla data-driven way to do what you're trying to do. I would suggest you to go check Misode Github for their loot table generator. If you're using a mod, it is generally recommended to use the LootTableBuilder instead of the data-driven way, as it would be more convenient to implement stuff in that way (if you're planning on implementing batches of loot tables, that is.)