Jump to content

mrzoro35

Members
  • Posts

    117
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by mrzoro35

  1. You, my friend, are a hero @Patrick
  2. That's a interesting idea, I wouldn't think you could auto click all the skills obivously though haha
  3. Some things are common sense but overall a good guide for people looking to start botting
  4. Damn...should have quit while you were ahead...
  5. Interesting not using any GP on it but good luck, the F2P grind will be slow asf LOL
  6. Doesn't sound bad but I'd get the strength up
  7. 30m is a steal for that build, I would jump on that if I were you
  8. mrzoro35

    PC plz

    I would say 150M but that is crazy getting it from a random person at ge?
  9. I would say 150-200M for a fairly quick sale? 99 thieving and firemaking are nice but won't add value for everyone but you might get a bit more if someone likes the 99's
  10. Damn dude, sucks to hear...
  11. Hey guys! Been awhile. I know I am not allowed to sell accounts on here currently, but still wanted to see what you guys thought it would be worth Stats: Currently working on Desert Treasure and Regicide. Important things done: -Lost City -Monkey Madness -Mith gloves -5m NMZ points -Full Graceful I am OO and if someone were to buy they would also receive the e-mail associated with log-in. The account does not have a recovery e-mail registered. So what do you guys think? Current price and price with DT done and Zulrah reqs done? Much appreciated everyone
  12. I was actually just about to reply and say that I overlooked the "getStore()" method, and that i added that and now it works and doesn't close after every time it buys. Now I just have to make tweaks here and there to make it run smoother and more human-like. Thank you guys so much for the help
  13. Thank you for the quick response. I will make some changes and let you know. Appreciate it!
  14. So basically, I am trying to make a stupid simple bot that buys one item from a shop. Nothing really complex or anything. I am having trouble with it opening the shop, buying the item and then closing it. There is no .isOpen() method for widgets (obviously), but .isVisible() seems like it should be the widget equivalent. Basically I'm either getting a NPE, or it will open the shop, buy 10, then close the window, re-open, buy, close... until the inventory is full, it will bank and then repeat. So my first guess was to do something along the lines of: Objects created (both defined at the beginning of case "BUY"): NPC npc = getNpcs().closest(502); RS2Widget shop = widgets.get(300, 2, 29); Actions: if (!shop.isVisible()) { if (npc != null) { log("npc is not null"); npc.interact("Trade"); log("Opening shop"); } } else { if (shop != null) { log("Shop is not null"); if (shop.getItemAmount() > 0) { log("The store has some items you can buy!"); shop.interact("Buy 10"); } } } (the logs were put in pretty much every step for troubleshooting) When I tried this, it gave me a NPE. So then I tried creating object "npc" directly before the first half of the code, creating object "shop" directly before the second half, and beginning the second half with the isVisible() if statement. Something like this: NPC npc = getNpcs().closest(502); if (npc != null) { log("npc is not null"); npc.interact("Trade"); log("Opening shop"); } RS2Widget shop = widgets.get(300, 2, 29); if (shop.isVisible()) { if (shop != null) { log("Shop is not null"); if (shop.getItemAmount() > 0) { log("The store has some items you can buy!"); shop.interact("Buy 10"); } } } Which got rid of the NPE but then was doing that weird thing where it would open the shop, buy, close the shop just to reopen it thing. I've tried putting the code out of order by putting shop.isVisible() rather than !shop.isVisible() in the beginning of the case and then starting with the buying process rather than opening the store first.... NPE. I've also tried null checking before the isVisible(), but then the script skips the rest of the code and loops just that point where it switches states to the "BUY" case. I even went ahead and tried "shop.isVisible() == false" just for shits and giggles and that obviously didn't work either Obviously I'm doing something wrong. And it is probably stupid. I'm new, I have minimal prior knowledge but I did just order a java book and will be continuing to teach myself and learn about the programming language itself.. But for right now, i'm going to ask this very nooby question :P. Also on a side note, I've never really understood how do you get the interact method to not try to do the same action 5 times all at once without just doing a simple sleep? I see a lot of new scripters kind of get roasted for that and I guess I just don't know enough yet to know how to do it "properly". Where should I start in that respect? Thank you in advanced for the help!
  15. This looks fantastic! Maybe think about adding pouch and pouch repair via NPC Contact support? Congratz on the release! Will definitely be using this once it is fully released
  16. Here is a proggie of 70-80 all in one go! Have used this since level 40 with no bans at all. Like always, your scripts are god-like
  17. I just bought this and so far I love it. I would like to make a suggestion though. If it is possible, the bot should drink energy potions while running and should keep run above like 50% at all times. So I am crafting cosmics using the obstacle and normal energy potions. Basically what it will do it run to the altar and back, and then on the second trip it runs out of energy, walks back to the altar, drinks an entire energy potion (which is only 40% run energy) and then withdraws ess, puts in pouch and runs to altar again. The problem is the character is not only wasting time drinking an entire potion, but the run energy is not kept up with enough so half of the time the character is walking. This causes a large decrease in exp & runes/profit p/h. I understand that I could use super energys and probably yield better results, but i also feel like depending on what you're running, super energys may still have the same issue. Just a thought, not bagging on the product though, its a great script, as all of your scripts are
  18. That looks more like a client issue, do you have the latest version of the client?
  19. Khal, this is one of the best scripts I have ever used, period!! I got 50 firemaking just for the mini-game, did 50-75 in one 8-9 hour session, then did 75-99 a couple days later all in one go! I would have a longer proggie for you, but the login handler glitched a few times and wouldn't log back in when the bot took a break. But anyway, thank you for such an awesome script and here are a few pics as well <333
×
×
  • Create New...