Jump to content

Psvxe

Members
  • Posts

    235
  • Joined

  • Last visited

  • Feedback

    100%

Profile Information

  • Gender
    Male

Recent Profile Visitors

1233 profile views

Psvxe's Achievements

Steel Poster

Steel Poster (4/10)

35

Reputation

  1. I get NPE´s to when doing log(method())try log(""+method());
  2. Why would check within the method if player is animating and only drop if it isn't? Doesn't really make sense to me.
  3. As a S2 you should understand he's asking why they're gone rather than what they do.
  4. No, Don't bot at all. Stop playing the game. No way you would get banned.
  5. 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.
  6. for(int i=0; i<questions.length; i++) { group[i] = new ToggleGroup(); Label label = new Label((i+1) + questions[i]); grid.add(label, 0, i); agree[i] = new RadioButton("Agreed"); agree[i].setToggleGroup(group[i]); grid.add(agree[i], 1, i); disagree[i] = new RadioButton("Disagree"); disagree[i].setToggleGroup(group[i]); grid.add(disagree[i], 2, i); no_opinion[i] = new RadioButton("No opinion"); no_opinion[i].setToggleGroup(group[i]); grid.add(no_opinion[i], 3, i); }
  7. LOL at those scripters saying to use that.
  8. Edited the post above me. \\u00A0did eventually worked for me to replace the non-breaking space. nbsp; didn't do the job.
  9. 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.
  10. Search before starting new threads. http://osbot.org/forum/topic/95180-myplayergetnameequalsbla-bla/
  11. Send me a pm with your Skype. I'll help you out.. Made the quest already.
  12. 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
  13. Someone is going strong on releasing snippets. Nice release.
  14. 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.
×
×
  • Create New...