Advanced-Portals/src/main/java/com/sekwah/advancedportals/bungee/BungeeMessages.java

35 lines
836 B
Java
Raw Normal View History

2020-06-18 04:37:06 +02:00
package com.sekwah.advancedportals.bungee;
public class BungeeMessages {
/**
* String in
* string bungee server
* string desti name
* string uuid (of what the server thinks it is)
*
* String out (to recieving server)
* string destination
* string uuid
* string offline uuid
*
* String out
*/
public static String ENTER_PORTAL = "PortalEnter";
public static String SEND_TO_SERVER_WITH_KNOCKBACK = "SendToServerWithKnockback";
public static String KNOCKBACK = "Knockback";
2020-12-30 03:49:45 +01:00
public static String CHANNEL_NAME = "advancedportals:warp";
2020-06-18 04:37:06 +02:00
public static String SERVER_DESTI = "BungeePortal";
/**
* Same in and out. This is read by the bungee
* String containing command
*/
public static String BUNGEE_COMMAND = "BungeeCommand";
}