NEED HELP | PAYING 50$ | "GHOST PLAYER" ISSUE

Status
This thread has been locked.

Minesharp

Banned
Feedback score
0
Posts
29
Reactions
22
Resources
0
Hey,

I have a big problem and I am willing to pay 50$ to anyone who helps me find the cause and solve this. So, about little more than one month ago "ghost players" started appear on my server. They are displayed in glist, messing with the tab and their player is actually physically there, even though the player isn't online.

This is what the tab looks like. It displays the "ghost players" without writing out their names (plugin: BungeeTablistPlus).
mahWvr3.png

This is the bungee playerlist displaying an inaccurate number. About 30 "ghost players".
d161230dc6ef9910a51ae36beebf4b00.png

Here are some of them in the Skyblock spawn (they are in the hub too).
vJGZGXG.png

What could be causing this? Citizens (NPC's)? Something with Bungee? The tablist? Something else? Please help me. As I said, whoever helps me will receive 50$.

My Skype:
energytomten
 
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

sodex234

Supreme
Feedback score
2
Posts
34
Reactions
23
Resources
0
I Know the fix! I do this for my plugins
write code in a plugin or pm me for it:
Player joiningPlayer = e.getPlayer();
for(Player p : Bukkit.getServer().getOnlinePlayers()){
if(p.getUniqueId() != joiningPlayer.getUniqueId()){
joiningPlayer.hidePlayer(p);
}
}

//then re loop


for(Player p : Bukkit.getServer().getOnlinePlayers()){
if(p.getUniqueId() != joiningPlayer.getUniqueId()){
joiningPlayer.showPlayer(p);
}
}

PM me if you want me to compile it into a plugin, it will take my 5 seconds. I know it works as I had the problem on my server.​
 
Status
This thread has been locked.
Top