Jump to content

Chris

Scripter II
  • Posts

    8355
  • Joined

  • Last visited

  • Days Won

    14
  • Feedback

    100%

Everything posted by Chris

  1. Custom walkers follows the same idea as local walker but doesn't spam click if ur not on the first position of the list It would be in a new class Walking.java Then I call it snide my script Walking walk = new Walking (); Then walk.walkpath (path here); @Sinatra Something like this public class Walking { private Script scriptInstance; public Walking(Script scriptInstance){ this.scriptInstance = scriptInstance; } public void walkPath(Position[] path) throws InterruptedException { Position[] var5 = path; int var4 = path.length; for(int var3 = 0; var3 < var4; ++var3) { Position p = var5[var3]; boolean success; if(scriptInstance.myPosition().distance(p) <= 16 && scriptInstance.myPosition().distance(p) >= 3) { do { success = this.walkTile(p); } while(!success); } } } public boolean walkTile(Position p) throws InterruptedException { if(scriptInstance.myPosition().distance(p) > 13) { Position fail = new Position((p.getX() + scriptInstance.myPosition().getX()) / 2 + scriptInstance.random(-3, 3), (p.getY() + scriptInstance.myPosition().getY()) / 2 + scriptInstance.random(-3, 3), scriptInstance.myPosition().getZ()); this.walkTile(fail); } scriptInstance.mouse.click(new MiniMapTileDestination(scriptInstance.bot, p), false); int var3 = 0; while(scriptInstance.myPosition().distance(p) > 2 && var3 < 10) { scriptInstance.sleep(500L); if(!scriptInstance.myPlayer().isMoving()) { ++var3; } } return var3 != 10; } }
  2. Bobrocket is really mod weath! grab the pitchforks bois
  3. That's what the common pleb does
  4. Because Sinatra Gatherer Plus is better EDIT: Post on the script thread and tell him to fix it :P!
  5. script.log(salmon.isVisible());
  6. Just skills for Quested attack + Mith gloves
  7. 1. Pictures of the account stats (Quested attack) 1 prayer, 22 mage 2. Pictures of the login details 3. Pictures of the total wealth (if there is any) 4. Pictures of the quests completed 5. The price you will be starting bids at 5M OSRS 6. The A/W (Auto-win) for your account 30M OSRS 7. The methods of payment you are accepting OSRS Gold or Paypal if you're trusted. 8. Your trading conditions You go first or find an MM. 9. Account status -No Authenticator or recoveries. 10. Original/previous owners AND Original Email Address Original Owner and email change will be provided.
  8. why when I can go to the other guy for 10k each account?
  9. ("Raw trout && Raw salmon") to (groundItem.getName().equals("Raw trout") || groundItem.getName().equals("Raw salmon")) B)
  10. No bans No wealth 1 pray 22 mage Quested Attack && Mithril Gloves
  11. onMessage() is for text appearing over character text i think
×
×
  • Create New...