.

Status
This thread has been locked.
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

Eric

Software Engineer
Supreme
Feedback score
14
Posts
1,760
Reactions
1,648
Resources
1
Its PluginMessaging

Code:
    public void onPluginMessageReceived(String channel, Player player, byte[] message)
    {
        if (!channel.equals("BungeeCord")) { return; }
        try
        {
            ByteArrayDataInput in = ByteStreams.newDataInput(message);
            String command = in.readUTF();

            if (command.equals("PlayerCount"))
            {
                String subchannel = in.readUTF();
                if (subchannel.equals("ALL"))
                {
                    int playercount = in.readInt();
                    Online = playercount;
                }
            }
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
    }
Best code 10/10
 

kojoti

www.xurver.com
Supreme
Feedback score
17
Posts
1,100
Reactions
375
Resources
0
trash.jpg
 

KitKat

Feedback score
0
Posts
13
Reactions
4
Resources
0
TabList work for 1.8 ? Can i edit the plugin (just the text in the scoreboard or tablist or message) with JBYTEdit ?

Suggestion :
Chat Format:
/msg custom format
global chat
 

Connectify

Supreme
Feedback score
5
Posts
86
Reactions
19
Resources
0
TabList work for 1.8 ? Can i edit the plugin (just the text in the scoreboard or tablist or message) with JBYTEdit ?

Suggestion :
Chat Format:
/msg custom format
global chat
This is a very old thread and i thought it has died already do you guys really want it? i didn't even update it by the way
 

KitKat

Feedback score
0
Posts
13
Reactions
4
Resources
0
yes i would like it :D (if tab is 1.8)[DOUBLEPOST=1507043148][/DOUBLEPOST]and the scoreboard*
 

Connectify

Supreme
Feedback score
5
Posts
86
Reactions
19
Resources
0
yes i would like it :D (if tab is 1.8)[DOUBLEPOST=1507043148][/DOUBLEPOST]and the scoreboard*
Well, I Need an API For the tab because Kraken is trash and doesn't support 1.8 + I Can use Deathstream's API For the scoreboard it is not a big deal if you want me to add it
 
Status
This thread has been locked.
Top