xIDarkness
xIDarkness
AAdmincraft
Created by Felix on 7/3/2023 in #questions
Deactivation of Advancement Announcements
well, yeah ._.
10 replies
AAdmincraft
Created by Felix on 7/3/2023 in #questions
Deactivation of Advancement Announcements
It actually is. But as nearly everytime it depends on the server version and core. I don't know much about the newer versions. But we simply don't know which version is used
10 replies
AAdmincraft
Created by Bambizo on 7/3/2023 in #questions
Knockback effect / velocity
That's kind of specific, so it will be difficult to find an already developed plugin either... Difficult when you never did something like that yourself I guess. But do you have Java knowledge?
10 replies
AAdmincraft
Created by Felix on 7/3/2023 in #questions
Deactivation of Advancement Announcements
announce-player-achievements=false
announce-player-achievements=false
in server.properties
10 replies
AAdmincraft
Created by Bambizo on 7/3/2023 in #questions
Knockback effect / velocity
If you want to implement the whole thing with a diamond block, then listen to the PlayerMoveEvent, check whether the player stands on a diamond block and set the velocity of the triggering player via setVelocity(Vector vec)
10 replies
AAdmincraft
Created by Bambizo on 7/3/2023 in #questions
Knockback effect / velocity
You know how to register a command and implement it in a bukkit plugin? If so, make sure that the argument length of the command is 1. The argument is the name of the player you want to knock back. To get the player instance, use "Bukkit.getPlayer(args[0])" and check the returned value for null. If the value is != null, then you can take this player instance and use the setVelocity(Vector vec) method. You can either determine the vector with fixed values or set it dynamically with your or the player's look direction (or some other vector)
10 replies