Jump to content

Chris

Scripter II
  • Posts

    8355
  • Joined

  • Last visited

  • Days Won

    14
  • Feedback

    100%

Everything posted by Chris

  1. int bones; if condition bones++; //onPaint g2d.drawString("Bones: " + bones, x position, y position);
  2. Dont have time atm. Work in the AM
  3. Traditional banking using RS2Object. RS2Object bankBooth = objects.closest("Bank booth"); //Create an RS2Object looking for "Bank booth" if (bankBooth != null) { //Null check if (bankBooth.interact("Bank")) { //If the action was successful (true) sleep(600); //sleep //bank is open... } } Improved way to open the bank using the Bank API if (!getBank().isOpen()){ //If the bank is not open getBank().open(); //Opens bank chests, booths, etc. //sleep } else { //Bank is open..do something }
  4. if you dont get stuck on transit m8
  5. That is the name of my Class refer to this topic http://osbot.org/forum/topic/91021-basic-java-tutorial-i-found-online-for-anyone-wanting-to-learn-basics-also-contains-link-for-more-information/ Could help you out a bunch
  6. Yes Should implement it like this then you should have a method @Override public void onMessage(Message m) { if(m.getMessage().contains("Blah")) { kebabCounter++; } }
  7. int kebabCount; //After you get a full inventory and head to the bank. //before you open the bank kebabCount += getInventory().getAmount("name of item"); for walking grab a position near the GE WebWalkEvent toGE = new WebWalkEvent(INodeRouteFinder.createAdvanced(), new Position(0,0,0)); context.execute(toGE); hope this helps
  8. //try NPC FishingSpot = npcs.closest(true, "Fishing spot");
  9. There was one and it was run by Lemons. Not sure if people still use it though.
  10. 1. What is your favourite script? Sinatra 2. Who is your favourite scripter? Sinatra 3. Who is your favourite mod/admin? Sinatra 4. Who is your favourite member? Sinatra 5. What is your preferred method of botting? (Mirror/Stealth) (Breaks Y/N?) Sinatra 6. If you could add one thing into osbot or improve something, what would you add/improve? Sinatra
  11. stop(false); @Override public void onStart() { log("Let's get started!"); } @Override public int onLoop() throws InterruptedException { getWalking().webWalk(new Position(3166, 3485, 0)); if (npcs.closest("Banker") != null && npcs.closest("Banker").interact("Bank")){ stop(false); } return random(200, 300); } @Override public void onExit() { log("Arrived at destination !"); } @Override public void onPaint(Graphics2D g) { } }
  12. 83 posts? joined 2 days ago? What's next..? *Selling Maxed main RSGP Only!*
  13. yes i am paying 10$Million in damages since owning SinfulBotCommunity
  14. ae5hyaetrhaetrhaetrhyaethaethbaetrghae5thnqthadtyerae
  15. Chris

    Fishing spot

    //try NPC fish = getNpcs().closest(o -> o.getName().equals("Fishing spot") && o.getPosition().equals(Position position));
×
×
  • Create New...