BungeeCord Coding Tutorial - Kick Plugin - Episode 7

preview_player
Показать описание
Thank you for tuning in to this video! We wanted to give you a quick update: as of December 19, 2023, we've reset all our video descriptions. We apologize if you were searching for a specific link mentioned in this video, but here's the great news – Google makes it incredibly convenient to find what you're looking for! If you have any questions or need assistance, feel free to drop a comment below. Your understanding is truly appreciated, and we look forward to providing you with more exciting content in the future. Stay tuned and thank you for your continued support!

Join us on Discord:
____________________________
💻 View all our code:

🌌Need a VPS, chose SkySilk:

🐙Join GitKraken:
____________________________

Music from #Uppbeat (free for Creators!):
License code: 95IHGXH3WE6WJJ4A

#TheSourceCode #NewEra #CodingRevolution #PrepareToLevelUp
Рекомендации по теме
Комментарии
Автор

Wow, I was just thinking of how to do this and then I saw this video! Good vid!

gggamegggame
Автор

You're iterating across all of the online BungeeCord players and doing all of your work in each iteration...
This is not good practice.


More importantly, you should not use a singleton. It will come back to bite you because, eventually, 1) you'll want multiple instances of something OR 2) you won't have a (YourPlugin extends Plugin) object to refer back to. The singleton confines you to the YourPlugin#method implementation. Instead, you should practice dependency injection. This way, the objects you use will only hold references to the dependencies they need, which allows for far greater flexibility later on.

anandbeh
Автор

keep up the nice work, your are maken really good video's

twan
Автор

where do you put the plugin.jar file? in all the servers or just in the bungeecord one?

Motasim
Автор

Hello! I'm getting a really hard time in learning and understanding the java language, is there any way that I could understand the language easier?

COSMICPLAYER
Автор

Just watching the kick and ban video, just noticed that in the video you didn't go about explaining how to check for permissions for the player to see if they can run the command.
How would you go about this?

shadowolf