4

Give me datapack ideas

Gamingbarn's Avatar Gamingbarn11/19/20 2:35 pm
11/24/2020 8:14 am
Gamingbarn's Avatar Gamingbarn
I have a few of my own, but I'm interested to see what the community wants. If you see a comment and you like the idea, please give it an emerald so I know people like that idea.
Posted by Gamingbarn's Avatar
Gamingbarn
Level 70 : Legendary Programmer
339

Create an account or sign in to comment.

27

1
11/24/2020 1:45 am
Level 9 : Apprentice Goblin
MASTRIO
MASTRIO's Avatar
Minecraft but YOUR Minecraft...

idk
1
11/23/2020 8:03 pm
Level 32 : Artisan Princess
Mary582
Mary582's Avatar
With an armor stand make evoker fangs be keeped in one place,maybe as a block,or as an entity so that you can have it for doing maps or other things,like a zoo or a museum
2
11/23/2020 7:56 pm
Level 9 : Apprentice Skinner
Ferralis
Ferralis's Avatar
You should make fishing better by replacing the fish items with fish entities and make it so that you have to kill the fish to get the drops.
1
11/23/2020 8:07 pm
Level 70 : Legendary Programmer
Gamingbarn
Gamingbarn's Avatar
That's a cool idea.
4
11/23/2020 6:16 pm
Level 13 : Journeyman Architect
Aza_Gorod
Aza_Gorod's Avatar
hmmm another idea that I had tho might be abit tougher. I like tot set up defences such as turrets. I use blazes and withers and sometimes ghasts (they are to fluffy and don't fit right :P) I would use commands to set them to a team I am into not be attacked myself. But sadly they won't attack any other mobs. Tho the vindicator with johnny tag seems to have the best effect. Just that it sadly is a melee type of unit xD. Now if skeletons, blazes, withers! could some how have a tag with similar effect. I think that would be fun for multiple reasons lol. buuuut that is me :S.
3
11/23/2020 6:27 pm
Level 70 : Legendary Programmer
Gamingbarn
Gamingbarn's Avatar
My skills just aren't there yet. :/
1
11/23/2020 11:55 pm
Level 13 : Journeyman Architect
Aza_Gorod
Aza_Gorod's Avatar
no problem x) it was a shot in the dark since I was messing with mobs lol
3
11/23/2020 5:31 pm
Level 4 : Apprentice Miner
half life man cool
half life man cool's Avatar
half life,, gravity gun,,,,,,
2
11/21/2020 1:44 pm
Level 2 : Apprentice Crafter
tylermg11
tylermg11's Avatar
birds
2
11/21/2020 1:03 pm
Level 51 : Grandmaster Dragonborn
vinnyg0621
vinnyg0621's Avatar
how about a new biome datapack?
4
11/21/2020 12:55 pm
Level 9 : Apprentice Architect
Aysim
Aysim's Avatar
I don't know if this is possible with datapacks but maybe some quality of life features like editable signs?
3
11/21/2020 8:28 pm
Level 42 : Master Procrastinator
mrurl42
mrurl42's Avatar
At first.... I read edible.... I think I need more sleep.
2
11/22/2020 4:29 pm
Level 70 : Legendary Programmer
Gamingbarn
Gamingbarn's Avatar
Edible signs would be a fun idea...
2
11/22/2020 6:28 pm
Level 42 : Master Procrastinator
mrurl42
mrurl42's Avatar
Hmm... But how would you still set them.... You would have to reskin an object that has both a use/eat option and a "place" option as well... then you an replace the placed item or replace the used/eaten effect. Can't think of anything off the top of my head that would qualify... But it would be funny!
3
11/23/2020 5:13 pm
Level 70 : Legendary Programmer
Gamingbarn
Gamingbarn's Avatar
I have ideas.
4
11/20/2020 9:36 pm
Level 13 : Journeyman Architect
Aza_Gorod
Aza_Gorod's Avatar
throwable tnt and fire charges would be awesome
3
11/21/2020 10:47 am
Level 70 : Legendary Programmer
Gamingbarn
Gamingbarn's Avatar
You're right, that would be awesome. I'll look into it.
3
11/21/2020 1:33 pm
Level 13 : Journeyman Architect
Aza_Gorod
Aza_Gorod's Avatar
Awesome :D can't wait to see what you come up with :D.
1
11/24/2020 8:14 am
Level 70 : Legendary Programmer
Gamingbarn
Gamingbarn's Avatar
3
11/23/2020 7:50 pm
Level 70 : Legendary Programmer
Gamingbarn
Gamingbarn's Avatar
Just letting you know, you might see this idea turn into reality.
1
11/24/2020 1:30 amhistory
Level 31 : Artisan Engineer
garlicbreathinator
garlicbreathinator's Avatar
To throw TNT or fire charges (or anything else), you just need to write to the Motion tag (or the direction tag for fireballs and wither skulls). Motion is the mob's current speed in blocks/tick along each axis, and direction is the same thing but scaled to a constant speed (if you were to fling the fireball fast or slow, it would always fly at the same speed). To make the item fly in the direction you are looking, you need to use some simple math.

take the coordinates of the location you are shooting from (like the player's head) and store them into a scoreboard with a scale factor. If you don't plan on going to a corner of the world, than a scale factor of 100 will be fine. As you get further from spawn, the numbers get bigger and you will have to reduce the accuracy (which isn't really a problem) or use some fancy math to drop the high digits since they don't matter.


The command would be something like "execute store result score @p x_position run data get entity @p Pos[​0] 100". Let's say the player's head is at the position 0.5, 10, 0.5. With a scale factor of 100, the scores will be 50, 1000, 50. Second, you teleport or spawn a mob in front of the player using raycasting coordinates (^) with a command like this. "execute at @p run summon minecraft:area_effect_cloud ^ ^ ^40 {Tags:["raycasting_target"]}" and get the scores of its coordinates too. Let's assume the player was looking flat, straight east (+x). The scores for this one are 4050, 1000, 50. Then, use /scoreboard players operation to subtract the player coordinates from the target coordinates to get the distance you need to move in each direction to reach the target point. The results here will be 4000, 0, 0 or "40 blocks toward +x". Then, use something like "execute store result entity @e[​tag=thrown_tnt] Motion[​1] double <scale factor> run scoreboard players get @e[​tag=raycasting_target,limit=1] x_position" to store the result into the Motion tag of the thrown item. The higher the scale factor, the higher the launch speed. However, we have been working with some really scaled up numbers because we are working with decimals. A value of 0.0025 (with a raycast distance of 40 blocks and an initial scale factor of 100) means a speed of 1 block per tick, or 20 blocks per second. This is a decent baseline to start with for throwing items. Increase or decrease the speed as needed.
1
11/24/2020 7:51 am
Level 70 : Legendary Programmer
Gamingbarn
Gamingbarn's Avatar
Yeah, I know. I thought that was too much work so I made a work around.
1
11/23/2020 11:54 pm
Level 13 : Journeyman Architect
Aza_Gorod
Aza_Gorod's Avatar
Can't wait to see :D thank you if it works x)
3
11/20/2020 9:35 pm
Level 37 : Artisan Pixel Painter
M3FF1N
M3FF1N's Avatar
Maybe minecraft as a guardian? You know the guardians at ocean monuments?
2
11/21/2020 10:47 am
Level 70 : Legendary Programmer
Gamingbarn
Gamingbarn's Avatar
Yes, that would be interesting.
2
11/21/2020 11:01 am
Level 37 : Artisan Pixel Painter
M3FF1N
M3FF1N's Avatar
It would be nice if you could add their spike and lazer abilities too, that would be AWESOME
2
11/21/2020 12:37 pm
Level 70 : Legendary Programmer
Gamingbarn
Gamingbarn's Avatar
My big brain is making some big-brain thoughts right now.
Planet Minecraft

Website

© 2010 - 2024
www.planetminecraft.com

Welcome