Cannot get seeds from give command
See original GitHub issueI’m trying to use the following command to get potato seeds, but I always get aurigold seeds.
/give Player agricraft:agri_seed 1 0 {agri_seed:"potato_plant"}
Is something wrong in the command?
Issue Analytics
- State:
- Created 7 years ago
- Comments:10 (3 by maintainers)
Top Results From Across the Web
Issues with /seed command : r/Minecraft - Reddit
This setting doesn't effect console though, so just get someone to go into console and type 'seed' (drop the /) and it'll give...
Read more >Debug /give command for seeds - Support - IC² Forum
Hi, Does anybody know the command to spawn any IC2 seeds WITH their stats like 31 ... I can only spawn unknown seeds...
Read more >How to Use the Seed Command in Minecraft
Each Minecraft world is created using a seed in the World Generator. Let's explore how to find the seed for a world using...
Read more >How To Find the Seed of a Minecraft Server - Alphr
1. Load into the server. 2. When you spawn in the world, press “/” to open the console. 3. Type the word “seed”...
Read more >How To Find The Seed Of A Minecraft Server
Sometimes, your server admin with administrator rights cannot access the server and give you the seed. If this is the case, someone needs...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Use ALL the NBT tags. Note: this cannot be done in chat, it must be done via command block because the code is too long.
NBT tags: agri_seed agri_strength agri_growth agri_gain agri_analyzed
example:
/give Player agricraft:agri_seed 1 0 {agri_seed:"sugarcane_plant", agri_analyzed:0b, agri_strength:1b, agri_gain:1b, agri_growth:1b }
How did I figure this out? F3 + H and looking at the NBT data tags on an already spawned in seed. I tried adding tags in one at a time, getting the “generic seed” every time until I tried all the tags.
Why are the "b"s there? Ask the mod dev. I honestly have no clue.
How the give command works:
/give Player mod:item numberOfItem Meta {NBT tags}
Now if you find a way to get this to work with crafttweaker and modtweaker scripts let me know please 😃.
The b stands for
byte
. It’s there so MC knows to deserialize it as abyte
instead of anint
.