Want a better Minecraft server? Read about SpigotMC here!
Separate names with a comma.
Okay since nobody can come up with answer to the problem , even forum staff doesn't reply with any solution , i able to get the the conclusion...
It's a private plugin , just for me and my server :\
No it's not , my plugin was designed to control any permission from any plugin as much as possible , even if i never see / know the plugin ....
Permission include not only command , but also action such as using modded item .
Yeah just imagine the plugin crashed and player start abusing command that no longer blocked because the plugin crashed . That's why shutting down...
It also control other plugin command . Your idea was exactly i am doing , i shut down the whole server when my plugin crash , but it cost server...
i already explain that the server shouldn't continue if the plugin crash because it is controlling player permission . Graceful crash could lead...
oof that suck , i was able to pause the server using loop in onEnable() and periodically sleeping, but got no idea how to receive command since...
thanks for that ! but it still didn't answer my question , how do i pause the server while being able to receive command ? right now my...
I want to pause the server if during plugin startup the plugin found corrupted data / error . Then i want to get text from console to make...
found it , it was the mojang.brigadier . for the individual command itself is in net.minecraft.server.v(version)
When player say "/<command>" there must be code somewhere that handle the parsing that turns command into action , but spigot has soo many file...
yeah but what if other plugin also use onjoinevent and the plugin ran before my plugin executed ?
When player join , i want the other plugin to not know that the player is online until the player do the authentication step (such as login) . I...
Oh my , that was very simple , thanks for explanation .
I'm beginner to spigot modding without any prior knowledge , so i tried to read the source code of existing plugin and try to learn from there ,...