I guess you could use a second thread if you willing to do something different than the main job of your script. Don't take it for granted though. Never did that shit since I never got banned when I'd use a script without anti-ban features.
Actually, I did some debugging myself for fun and I figured out that some names do have normal spaces, or more likely, they don't seem to be non-breaking spaces.
[INFO][Bot #1][03/30 09:45:02 AM]: Player : Lil Slurp = Lil Slurp
[INFO][Bot #1][03/30 09:45:02 AM]: Player : king ammar x = king ammar x
[INFO][Bot #1][03/30 09:45:02 AM]: Player : 66�Atlas�998 = 66�Atlas�998
[INFO][Bot #1][03/30 09:45:02 AM]: Player : Item�Robber = Item�Robber
Something is different, no clue what.EDIT:
Alright.
Itz�PRADA Itz PRADA
[INFO][Bot #1][03/30 10:01:06 AM]: Player : Stanklin Stanklin
[INFO][Bot #1][03/30 10:01:06 AM]: Player : EpezuWnBnoob EpezuWnBnoob
[INFO][Bot #1][03/30 10:01:06 AM]: Player : NatusVincere NatusVincere
[INFO][Bot #1][03/30 10:01:06 AM]: Player : JollyJJoker JollyJJoker
[INFO][Bot #1][03/30 10:01:06 AM]: Player : Kitten_Dance Kitten_Dance
[INFO][Bot #1][03/30 10:01:06 AM]: Player : king ammar x king ammar x
[INFO][Bot #1][03/30 10:01:06 AM]: Player : Inneva Inneva
[INFO][Bot #1][03/30 10:01:06 AM]: Player : Erza Kagura Erza Kagura
[INFO][Bot #1][03/30 10:01:06 AM]: Player : SG Editz SG Editz
[INFO][Bot #1][03/30 10:01:06 AM]: Player : Lil Slurp Lil Slurp
[INFO][Bot #1][03/30 10:01:06 AM]: Player : mag3king6424 mag3king6424
[INFO][Bot #1][03/30 10:01:06 AM]: Player : 39�Bork�Roc 39 Bork Roc
[INFO][Bot #1][03/30 10:01:06 AM]: Player : 54ancient428 54ancient428
Done with the following code
for (Player player : ctx.players.getAll()) {
if (player != null) {
String orginal_name = player.getName().replaceAll("\\u00A0", " ");
ctx.log("Player : " + player.getName() + " " + orginal_name);
}
}
\\u00A0Good luck.
I guess I am like the only one that did learn java trough just writing programs and googling around if I couldn't get the answer here..
I advice you to follow some study though. Good luck
I did create a similar framework.
I'm not quite sure if I understand you right however.
Do you mean you want to add / pause / remove tasks / nodes on conditions from any other task you're running at the moment?
If so, I can help you.