Skip to content

Releases: ZorgBtw/BungeeSK

🔥 1.1.0 | The big update

22 Jul 12:44
ecb1b79
Compare
Choose a tag to compare

Finally a new update ! Yes I know...

CHANGED:

  • ✨ The socket exchanges now communicate with JSON encrypted using a library named Alice (available here)
  • ✨ BungeeSK.jar is now compiled using shadowJar
  • ✨ You don't have to set the name for a connection anymore
  • ✨ A bungee server is now represented with a type (%bungeeserver%)

ADDED:

  • ➕ Effect to make a player execute a command
  • 🌐 Expression to get a bungee player's ip address
  • 💡 Whole bungee stored variables system (global variables)
  • ✨ Effect to kick a bungee player from the network
  • 🚀 Whole bungee messages system (you can send a custom string message to a specific bungee server)
  • 🔥 Effect to broadcast a message to the whole bungeecord proxy
  • 💙 Effect to send an action bar message to a bungee player
  • 🔒 Effect to send a title to a bungee player

✨ 1.0.3 | Some stuff and bug fixed !

02 May 08:50
8edbffb
Compare
Choose a tag to compare

New update is out !

FIXED:

  • 🐛 ExprAllBungeePlayers throwing NullPointerException when nobody was connected (thanks @Skylyxx)
  • 🐛 Set API-version to 1.13, preventing bug to compatibility with 1.14+
  • 🐛 Communication can now work with unicode characters !
  • 🐛 Fixed EvtClientDisconnected
  • 🐛 Now checking if client is connected to a server at every request

ADDED:

  • 🌐 EffBroadcastToServer

🐛 1.0.2 | Lot of bug fixes and new syntaxes !

23 Apr 15:47
a900d25
Compare
Choose a tag to compare

New update is out !

FIXED:

  • 🐛 Example on the docs for EffExecuteCommand
  • 🐛 Addon compatibility with 1.14+ not working
  • 🐛 And more...

ADDED:

  • 🔒️ ️ Security update thanks to TPGamesNL
  • ✨ ExprServerRealName
  • 🌐 ExprAllPlayersOnServer

🚀 1.0.0 | First release !

21 Apr 17:33
Compare
Choose a tag to compare

BungeeSK

BungeeSk is a Skript addon that allows you to communicate with a bungeecord proxy easily !

📥 How to download and install ?

You can download the last available version of BungeeSK by clicking here.
Then you can drop your BungeeSK.jar file in your Bungeecord plugins/ folder and in every Spigot plugins/ folder too. Make sure you got Skript running on your Spigot servers. (If not, you can download Skript here)

🚀 How to run correctly BungeeSK ?

First, you will need to connected your Spigot servers (called as clients) to your Bungeecord proxy (call as server).
Here's an example of code to link everything:

on server start:
	while client is not connected: #Using a while loop to try to connect if the client is not connected
		create new bungee connection: #Creation of a new Bungeecord connection
			set address of connection to "127.0.0.1" #Use this IP if the Bungeecord is on the same machine
			set port of connection to 100 #This port as to be opened if the specified client is not hosted on the same machine as the server
			set password of connection to "Strong password" #Complete your password here, this has to be the same as the one in the Bungeecord config
			set name of connection to "hub" #Name has to be unique, if the same name is already connected, the connection will end
		start new connection with last created connection #Sending connection request to the server
	        wait 30 seconds #Waiting 30 seconds between 2 connection tries, it's recommended to not decrease this value

📚 Need support or be informed ?