Solved Bungeecord Skript Problem

  • 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!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.

iStopcontact

Member
Feb 18, 2017
113
2
18
23
Hello guys,

I have a question about Bungecoord with Skript.
I'm working on a own network for a while now and i for my hub i want to send player to other servers (bungeecord) with a command.
example: when they do /pvp they go to the kitpvp server.

Now i was looking on the internet and i fount that I needed Umbaska for the bungeecord.
But when i add Umbaska for my server, my skripts wont work anymore.
So can someone pls help me with this?

Thank you!

Jarno//iStopcontact
 
Hello guys,

I have a question about Bungecoord with Skript.
I'm working on a own network for a while now and i for my hub i want to send player to other servers (bungeecord) with a command.
example: when they do /pvp they go to the kitpvp server.

Now i was looking on the internet and i fount that I needed Umbaska for the bungeecord.
But when i add Umbaska for my server, my skripts wont work anymore.
So can someone pls help me with this?

Thank you!

Jarno//iStopcontact
Use SkellettProxy for any Bungeecord-related stuff. @LimeGlass
 
I have added it to my server, but how can I now make it work that when a player enters a command it sends the player to a server? @Syst3ms
Once you have installed correctly Skellet & SkelletProxy and enabled SkellettProxy Sintax in the Skellet config

code_language.skript:
send "%player%" to bungeecord server "Name"
 
Once you have installed correctly Skellet & SkelletProxy and enabled SkellettProxy Sintax in the Skellet config

code_language.skript:
send "%player%" to bungeecord server "Name"
I did everything i had to do but it still doesnt work for me...
My bungeecord config:
code_language.skript:
# SkellettCord config file
#
# The port must match the port in the SkellettProxy.yml from Skellett on servers connected to this Bungee.
version: "1.2.8"
debug: false
Port: 7731

# If a spigot server fails to send a packet to SkellettProxy.
# How many trys should be allowed before claiming that server as offline.
AllowedTrys: 3

# If a spigot server goes unresponsive and this is true, SkellettProxy will stop tracking it.
# This will throw a harmless error in your console everytime a server goes unresponsive though.
DisableTracking: false

# If you have scripts in the folder plugins/SkellettProxy/scripts/
# SkellettProxy will relay these scripts to all connected servers.
# This acts like global scripts to keep all servers up to date.
# All connected servers need to have the "events" option enabled in the SkellettProxy settings.
GlobalScripts:
    Enabled: true
My server config:
code_language.skript:
# Skellett the addon with the beast name!
# By LimeGlass
#
# The Host must be the main IP of the BungeeCord that is hosting SkellettProxy.
# If the bungeecord and this server are on the same machine, you can leave it as localhost.
#
# The port must match the same port that is in the SkellettProxy config.
SkellettProxy: true
Host: localhost
Port: 7731
Heartbeat: 50
Disconnect: true
Events: true
EventPort: 7332
GlobalScriptReloadMessage: true
I have Localhost as host because it is all hosted on the same VPS.
And i have skript code:
code_language.skript:
command /test:
    trigger:
        send "%player%" to bungeecord server "lobby2"
Can u maybe see what i did wrong? @YoshYz
[doublepost=1489676098,1489675787][/doublepost]
or "WildScript":
code_language.skript:
bungeecord connect %player% to %text%

DOCS
I allready tried to do it with WildSkript, I have this code:
code_language.skript:
command /lobby2:
    trigger:
        bungeecord connect "%player%" to "lobby2"
But when i reload the skript in the server i get this error
 
I did everything i had to do but it still doesnt work for me...
My bungeecord config:
code_language.skript:
# SkellettCord config file
#
# The port must match the port in the SkellettProxy.yml from Skellett on servers connected to this Bungee.
version: "1.2.8"
debug: false
Port: 7731

# If a spigot server fails to send a packet to SkellettProxy.
# How many trys should be allowed before claiming that server as offline.
AllowedTrys: 3

# If a spigot server goes unresponsive and this is true, SkellettProxy will stop tracking it.
# This will throw a harmless error in your console everytime a server goes unresponsive though.
DisableTracking: false

# If you have scripts in the folder plugins/SkellettProxy/scripts/
# SkellettProxy will relay these scripts to all connected servers.
# This acts like global scripts to keep all servers up to date.
# All connected servers need to have the "events" option enabled in the SkellettProxy settings.
GlobalScripts:
    Enabled: true
My server config:
code_language.skript:
# Skellett the addon with the beast name!
# By LimeGlass
#
# The Host must be the main IP of the BungeeCord that is hosting SkellettProxy.
# If the bungeecord and this server are on the same machine, you can leave it as localhost.
#
# The port must match the same port that is in the SkellettProxy config.
SkellettProxy: true
Host: localhost
Port: 7731
Heartbeat: 50
Disconnect: true
Events: true
EventPort: 7332
GlobalScriptReloadMessage: true
I have Localhost as host because it is all hosted on the same VPS.
And i have skript code:
code_language.skript:
command /test:
    trigger:
        send "%player%" to bungeecord server "lobby2"
Can u maybe see what i did wrong? @YoshYz
[doublepost=1489676098,1489675787][/doublepost]
I allready tried to do it with WildSkript, I have this code:
code_language.skript:
command /lobby2:
    trigger:
        bungeecord connect "%player%" to "lobby2"
But when i reload the skript in the server i get this error
Try setting "server-name=" from "lobby2/server.properties" to "lobby2"
 
Try setting "server-name=" from "lobby2/server.properties" to "lobby2"

Nah , not needed.

Here , you need to put the ip of your bungeecord server
code_language.skript:
Host: localhost
Different event port for every skellett config.
Hub Skellett Config
code_language.skript:
EventPort: 2000
Vanilla Skellett Config
code_language.skript:
EventPort: 2001
etc etc
 
  • Like
Reactions: LimeGlass
Nah , not needed.

Here , you need to put the ip of your bungeecord server
code_language.skript:
Host: localhost
Different event port for every skellett config.
Hub Skellett Config
code_language.skript:
EventPort: 2000
Vanilla Skellett Config
code_language.skript:
EventPort: 2001
etc etc
That worked, thanks! This topic is now solved!
 
Status
Not open for further replies.