Hey guys... So, I need to help from anyone who is familiar with the commands and syntax for Addons... I am in the middle of construction an Amazing Addon, but I have run across an error that I have spent two whole days trying to figure out with no progress...
I am trying to alter the Player abilities, to Supercharge the player in a Superpowered way, but for the life of me, I can't figure out how to give the player SUPERSPEED, SUPERJUMP, CLICK/TOUCH-TO-TELEPORT-TO-POINTED-DESTINATION, and then also changing small things about other mobs...
i have done most of it, such as shrinking and growing certain mobs, making certain mobs teleport, be untouchable by fire, attack, changed behavioral roles of other mobs, and even gave myself "super strength" by increasing the Damage of the player to 15... but If there is a better way (or any way) to actually code the SuperPowers I listed to the player, and then to mobs, Then Please Help Me!!!
I tried messing with "minecraft:movement":, to see if I could increase the speed of any mob, but I could only seem to get a response if I went to an extremely slow--- //"value": 0.01 or something... I couldn't get a mob to speed up... Am I missing something?
And then, I don't even have a clue what the syntax is for increasing strength (except for increasing player damage), super jump (jump_boost???), point-click-teleport (or teleporting quickly to pointed destination (up to 128 blocks) without using ended pearls), or ANY OTHER ABILITY OR EFFECT....
PLEASE SEND A PROFESSIONAL IF YOU CAN'T HELP!!!
LOL
Hey guys... So, I need to help from anyone who is familiar with the commands and syntax for Addons... I am in the middle of construction an Amazing Addon, but I have run across an error that I have spent two whole days trying to figure out with no progress...
I am trying to alter the Player abilities, to Supercharge the player in a Superpowered way, but for the life of me, I can't figure out how to give the player SUPERSPEED, SUPERJUMP, CLICK/TOUCH-TO-TELEPORT-TO-POINTED-DESTINATION, and then also changing small things about other mobs...
i have done most of it, such as shrinking and growing certain mobs, making certain mobs teleport, be untouchable by fire, attack, changed behavioral roles of other mobs, and even gave myself "super strength" by increasing the Damage of the player to 15... but If there is a better way (or any way) to actually code the SuperPowers I listed to the player, and then to mobs, Then Please Help Me!!!
I tried messing with "minecraft:movement":, to see if I could increase the speed of any mob, but I could only seem to get a response if I went to an extremely slow--- //"value": 0.01 or something... I couldn't get a mob to speed up... Am I missing something?
{"minecraft:movement": { "value": 30.0, "max": 40.0 } }And then, I don't even have a clue what the syntax is for increasing strength (except for increasing player damage), super jump (jump_boost???), point-click-teleport (or teleporting quickly to pointed destination (up to 128 blocks) without using ended pearls), or ANY OTHER ABILITY OR EFFECT....
Anyone willing to give me a few pointers???
{ "minecraft:entity": { "format_version": 0.1, "components": { "minecraft:identifier": { "id": "minecraft:player" }, "minecraft:type_family": { "family": [ "player" ] }, "minecraft:loot": { "table": "loot_tables/empty.json" }, "minecraft:collision_box": { "width": 0.6, "height": 1.8 }, "minecraft:scale": { "value": 5.0 }, "minecraft:movement": { "value": 40, "max": 40 }, "minecraft:attack": { "damage": 50 }, "minecraft:player.saturation": { "value": 20 }, "minecraft:player.exhaustion": { "value": 0, "max": 4 }, "minecraft:player.level": { "value": 0, "max": 24791 }, "minecraft:player.experience": { "value": 0, "max": 1 }, "minecraft:breathable": { "totalSupply": 2000, "suffocateTime": -1, "generatesBubbles": false }, "minecraft:nameable": { "alwaysShow": true, "allowNameTagRenaming": false } } } }TRY IT
I'll try it. Thanks. I'll get back to you if it doesn't seem to work.