SkyeDarkhawk

Untitled

Apr 26th, 2011
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. System.out.println("Message is too long and is this long: " + msg.length());
  2. if (msg.length() >= 119){
  3. String cutMsg = msg.substring(0,118);
  4. String newMsg = msg.substring(119);
  5. server.f.a(new OPacket3Chat(cutMsg));
  6. messageAll(newMsg);
  7. }
Advertisement
Add Comment
Please, Sign In to add comment