hello all im having a problem with my dice I will post 2 pictures from 2 different client and it will show you whats wrong and hopefully you can help me also switch dice makes it roll and public roll wields hopefully someone can tell me how to fix that also but here is the other problem im having when I roll http://prntscr.com/lhmnzc another person see's this http://prntscr.com/lhmo4i ill show both together so u can seehttp://prntscr.com/lhmo87 also fixing public roll to roll the dice not switch dice. would be a big help..heres my code in itemclick2.java


case 15098:
if (System.currentTimeMillis() - c.diceDelay >= 5000) {
for (int j = 0; j < Server.playerHandler.players.length; j++) {
if (Server.playerHandler.players[j] != null) {
Client c2 = (Client) Server.playerHandler.players[j];
c2.sendMessage("@blu@Closereality channel@@ "
+ Misc.ucFirst(c.playerName) + " rolled @red@"
+ Misc.random(100)
+ "@bla@ on the percentile dice.");
c.diceDelay = System.currentTimeMillis();
}
}
} else {
c.sendMessage("You must wait 10 seconds to roll dice again.");
}