Jump to content

harrypotter

Trade With Caution
  • Posts

    397
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by harrypotter

  1. What I would do is start by structuring your script so that if an event fails at anytime, it will simply retry that action only, not the whole loop again (as @Apaec suggested): if (!inventory.isItemSelected()) { // Use first item // Sleep until inventory.isSelected() } else { // Use first item with second item // Sleep until finished making pie shell } Here is a full example taken from my AIO Herblore script: if (!script.inventory.isItemSelected()) { Item pestle = script.inventory.getItem("Pestle and mortar"); if (pestle != null) { if (pestle.interact("Use")) { Sleep.sleepUntil(() -> script.inventory.isItemSelected(), 5000); } } } else { int clickSlot = script.inventory.getSlot(itemToGrind); InventorySlotDestination itemSlot = new InventorySlotDestination(script.getBot(), clickSlot); script.getMouse().move(itemSlot); if (script.getMouse().click(false)) { Sleep.sleepUntil(() -> !script.inventory.contains(itemToGrind) || script.getDialogues().isPendingContinuation(), 120000); } }
  2. Trump's Travel Ban OT: Last year I used a free fletching script on my DMM account that had never been botted before, was banned a few hours later
  3. Have a look at this: Should be a good learning resource!
  4. Tried here? http://www.quodb.com/search/quiet%2C boy!
  5. Do you Agree to the terms of service?: YesWhat is your skype name?: live:phatslimeYour Partners Skype name?: live:sphairai.rsType of trade?: Private ScriptDo you have me on Skype Already?: No but I'm in a group conversation with you
  6. I'll have a look into this tonight when I'm home.
  7. I wasn't aware it was broken, can you let me know what your settings are?
  8. Custom build, built in Laravel 5 to your specs. Add me on skype and I'll show you some of my previous work. live:phatslime price will depend on a full spec.
  9. From the snippet you've shown you're not even calling the debug_Connection() function?
  10. I'm not really sure what you mean, if should return an error if the database table doesn't exist. Why would it give a connection success message when it didn't successfully connect? If you're getting an error stating that the db table doesn't exist then double check your table name is correct
  11. Also I believe this: $this->connection = new PDO("mysql:host=$this->db_hostname;$this->db_database", $this->db_username, $this->db_password); Is invalid, you need to specify that $this->db_datebase is the database name: $this->connection = new PDO("mysql:host=$this->db_hostname;dbname=$this->db_database", $this->db_username, $this->db_password); Might be wrong though
  12. If you're using MAMP you need to connect via socket, if not please give more info.
  13. Selling 35m 07, $0.95/m. Only accepting paypal so looking for trusted buyers, happy to use a MM.
  14. Please only give me quotes for the full order
  15. Need 34 farming + 100% Hosidius favour on a fresh level 3 account. Let me know your prices. No skype ids, just prices...
  16. For someone whos time is soooo valuable, you seem to be spending a lot of time with this argument
  17. Why are you doing: !(myPlayer().getX() == 2704) Wouldn't: myPlayer().getX() != 2704 Be better? As for your question you need to do something like so: WalkingEvent walkToSpot = new WalkingEvent(afkspot); walkToSpot.setMinDistanceThreshold(0); execute(walkToSpot);
  18. All you're missing is long grey hair and you'd look like an Elf from the Witcher series...
  19. Disputed member: https://osbot.org/forum/profile/93838-chrisscott99/ Thread Link: Explanation: Fee of 150m for service + 15m for supplies was agreed. 150m paid @Decode MM. User received login details for account that contained 15m supply cash. *Hidden* User states he will only be online for another hour, this implies he's already on the account (If the 15m wasn't on the account he would ask about it? - this is in the likely event that he's going to claim the gp was never palced on the account in the first place). *Hidden* This morning I asked him about his progress to which he replied: *Hidden* A few hours later around 12pm I checked the accounts stats against an xp tracking website I submitted the account to: http://www.crystalmathlabs.com/tracker/track.php?player=lane+zoo+64 Given that the account was fresh from tut island some progress should have been made in a few hours of play time, I was worried at this point and decided to login to the account to check the progress. I found the account in lummy where I left it with the gp gone. Evidence: ^^ See Explanation
×
×
  • Create New...