Jump to content

Wizard

Members
  • Posts

    539
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Wizard

  1. You cant do that, at least for now. Script class doesnt have KeyListener implementation.
  2. Wizard

    BETA v1.7.5

    I dont know how your anti virus managed to scan a jar file...
  3. So, yesterday I was bored and I decided to make some utilities for my script to use, so here the things I have so far -Console with commands to control script(stop, hide paint, debug...) -A monitor that shows the game screen in smaller size(you can resize it Thats all so far, may add paint info of the script later.
  4. public void onStart() { if (client.getInventory().contains(ectophial) &&!myPlayer().isInArea(EctoArea)) { client.getInventory().interactWithId(ectophial, "Empty"); if (myPlayer().getAnimation()== 714) { while (myPlayer().getAnimation()== 714) { try { sleep(1000); } catch (InterruptedException e) { e.printStackTrace(); } } } state = State.WALKTOECTOHERB; } }
  5. What the error? when you hover over the red line what does it say? EDIT: nvm remove the throw thing, the onStart method in the Scrip class doesnt throw InterruptedException, I think you have to add the try and catch blocks again And what is try and catch basically is a code that try to preform the code between the try {} and if something unexcepted happened it catches the errors.
  6. Dont catch the exception, you should throw it, so in the method signature throw InterruptedException so it would be like public void onStart() throws InterruptedException { and remove the try and catch block.
  7. Not very original, I thought it was a GUI based on built in graphics and not SWING. Still cool tho.
  8. wow these look so good, amazing!
  9. Wizard

    OSBot Logo

    Finally a decent logo, it is really look nice, good job!
  10. I dont want to live on this planet anymore!
  11. Awesome, cant wait for this. would be helpful for my Rare hunting script :3
  12. English Emma Watson or Emma stone
  13. RS2Object rock = closestObjectForName("rock"); if(rock != null) { if(rock.interact("mine") { RS2Object temp = closestObjectForName("rock"); //basically scans if the closest object is the same object you interacted with while(rock == temp && rock.exists()) { sleep(500); } } } Cheap method i use
  14. Yet another amazing release man, thank you definitely going to use.
  15. I like this one more than the current!
  16. Well, I do agree that they are sexy, but you also can make the SWING GUI also sexy by using custom substence to change the look and feel of it :p
  17. The number of mins you quit * 0 is the number of fucks i give see ya
×
×
  • Create New...