• Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

Updated to support latest SkWaze, set use-skwrapper in SkWaze config.yml file to use SkWrapper with it.
Improved variable management, variables can now support basic objects like string, int, arraylist, ...
Variables are no longer stored in local, they are only accessed from bungeecord
Here is an example of how to use the new variable system:
unknown.png
Added a new communication system based on sockets (no plugin message anymore), wich means that your servers and proxy doesn't need to be on the same server
Added a lot of new proxy effects:
Code:
[waze] send network message %string% to proxy players
[waze] send network message %string% to %players%
[waze] send network title %string% [with] subtitle %string% (to|for) proxy players (for|to) %integer% second[s]
[waze] send network title %string% [with] subtitle %string% (to|for) %players% (for|to) %integer% second[s]
[waze] run proxy command %string%
[waze] send network actionbar %string% to proxy players
[waze] send network actionbar %string% to %players%
Removed player join proxy event (useless, can be replaced by basic player join event on server and then execute a global broadcast to all proxy players with new proxy effects)
This new system is less resource intensive
Code example:
Code:
command /test:   
    trigger:
        set network variable {mdr} to 5
        set network variable {player} to player's name
        set {add} to {mdr} parsed as integer + 1
        set network variable {servers} to bungee server list
        send message "Avant: %{mdr}%" to player
        send message "Apres: %{add}%" to {player} parsed as player
        set {servers} to "%{servers}%,yo"
        send "%{servers}%" to player
        #send "%bungee server list%" to player
        set {number} to online player on bungee
        send "%{number}%" to player
on player join:
    send network message "Salut %event-player% bienvenue sur le serveur Waze" to proxy players
    send network title "Salut %event-player%" with subtitle "Bienvenue sur le serveur Waze" to proxy players for 1 second
    send network actionbar "Salut %event-player%" to proxy players
    run proxy command "alert Hello %event-player%"
on horse jump:
    broadcast "Mdr %event-entity% a sauté"
on toggle swim:
    broadcast "%event-player% nage"
Added support for Windows servers
Fixed linux start and stop error
Added /greload support (servers stay in memory of BungeeCord)
Added Redirect to lobby server on Kick Listener
Added auto-refresh templates folder every minutes
Added Player Server Connect Event for SkWaze
Fixed Network Variables Parsing for SkWaze
If you update this plugin, please delete your config.yml file
Added enable-skwaze in config.properties for those who want to use SkWaze with SkWrapper. (false by default)
Fixed a startup error with the updater.
Added a lot of effects to SkWrapper like:
start all servers
stop all servers
start all servers from template
stop all servers from template
Added player server expression and online count expression
Added is server online condition
Added own communication system!
You don't need BungeeBridge anymore!