Jump to content

apa

Members
  • Posts

    80
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by apa

  1. Better yet 100+ gang on the mugger for capes
  2. I'm looking at the costs at running a bot farm to see what I'd need to expect minimum to break even. I'm thinking as far as power consumption costs, cost of proxy per account. I have a few computers I could run ~20 bots on for now. I'm thinking of a f2p throwaway farm. Scripts I'd write myself, auto mule and everything. What got me interested was this proxy service https://www.socks-proxy.net/buysocksproxy.html which offers an updating list of proxies. You could have a different proxy per throwaway account... I'd like to know if anyone has done the math to the specifics.
  3. I use it in one of my scripts and it doesn't logout. You only need to move your mouse over the client to stay logged in.
  4. I have something just move the mouse on or off the screen every 0-3 minutes. import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; @ScriptManifest(author = "apa", info = "Afks", logo = "", name = "AFK", version = 1.0) public class Main extends Script { public void onStart(){ } public int waitTime(int min, int max) { return (int)(Math.random() * (max - min)) + min; } public int onLoop() throws InterruptedException { if (mouse.isOnScreen()) { mouse.moveOutsideScreen(); } else { mouse.move((int)(100 + (Math.random() * 660)), (int)(100 + (Math.random() * 400))); } return waitTime(1000, 240000); //1 sec to 4 mins. } }
  5. I have an update but I'm running it privately for a bit to make some bonds. It was a problem with OSBuddy prices going down making all items 1gp. It now pulls item prices from official osrs page.
  6. If you're still looking, I may be interested. Don't have a rank, but I do have access to upload scripts (just haven't got time to release a CDN script yet). I have one released free script with fantastic feedback however; I also work in software and finished my degree a few months ago in Computer Science. Send me a pm or Skype @ 'aapalapa' if you wanna talk.
  7. That's the thing, I jump around too much to keep a scripter rank anywhere haha. I used to write a lot of bots for RSPS's, some of which made me enough to pay rent for a few months. I'm approved for the SDN, just need the time now ? Thanks! Maybe I'll take a look at fixing this and beg to have it on SDN against the rules so I can publish some more haha
  8. Don't know how I missed that haha
  9. Line 1: missing semicolon. Whenever you have a statement, it needs a semicolon. If placing a set of curly brackets after the statement doesn't work, you know it needs a semicolon. the other ones between '(){' is because you're missing spaces between the '()' and '{'. That's just styling "errors" to make your code look pretty. The long one; missing a bracket on the left side, right after the return. Last two lines, they are erroring because you have return true, else, return true. This always returns true, make the second one return false.
  10. I'd like to, but my time is too preoccupied to do it for free right now. I had to get rid of all my hobbies for a while to get this MMO done haha. I've had other people contact me about making one, I would do it for GP/$ and make it private or exclusive, or just raise a pool of cash/GP and I'll release it free for everyone. I hope you understand why I'm asking, I don't have a job, and my income right now is literally from random things like this... But, if you don't mind waiting a few months at least, I'm sure I'll be back to make some more hobby scripts.
  11. Haha, ask for tips and follow people around? Nah, I joined before the other apa, with this name haha. I just have been busy with other things that I haven't really been in the botting scene for a while. I'm glad it worked Damn I'm that's insane haha. Glad it worked well! I'll take a look at the bug, I think it was an old API for requesting from OSBot exchange. Yea the bounds aren't perfect in the GE, I kinda left it like that to be safe from going outside the walls. I could adjust it. Maybe I'mm make that my next release ? I'll take a look, you could try setting the value to 0 to pickup. I've been gone for a while, working on another project that will be rather interesting. I'm making an MMO somewhat similar to OSRS; but you control multiple characters, and a lot of the grinding can be botted with an in-game control system. So, I probably won't be working on any free scripts for a while, I just can't afford to. I may release a CDN script in some time for AIO f2p bot farms, but really only if there's enough interest, and it wouldn't be free unfortunately . I spend all day every day working on the MMO. An early release will hopefully be in a few weeks, but I put updates here: https://www.reddit.com/r/AdventurerSimulator/.
  12. Thanks so much, some things came up with school recently so I had to drop this for now, I'll take a look soon. I'm putting this on low priority for now.
  13. I was looking at that, I couldn't figure out the headers haha, it was 6am... What does yours include?
  14. The extension directly contacts the Runescape name lookup API, and it returns true or false with suggestions if a name is taken, banned, or locked. I have this part of the name search done already, i just need to make a name loader, sorter, and UI. Ah good point, proxies would be needed. I took a look and Chrome has direct support for proxies with extenstions https://developer.chrome.com/extensions/proxy. The username searching i can do at least quite easily, as long as Jagex doesn't throttle that. I'll focus on the name search for now I think, see if its worth it to make the account generator.
  15. I'm looking into making a chrome extension for searching from a list of accounts for unused runescape names, as well as plugin to create accounts from a list, or from random random email with dictionary based usernames. The plugin would repeat this x amount of times, or until list is empty. The reason for a plugin rather than program or web app is to bypass the security Jagex has so you can't do requests outside of their webpage. This is not ready for release, but im considering developing this if it has enough interest, and I want to ask what a reasonable price for a service like this would be. It would require 2captcha or similar to allow the full automation for account creation to start. For 2captcha to solve the captchas for you, it costs ~$3.00 USD per 1k captchas, so thats a base price of .3 cents per account. 2captcha will be handled easily by the chrome extension, payments for using the extension will be through Ethereum (bulk purchasing to reduce fees), using MetaMask to keep things secure and automatic. Playing around with it, it appears you could get about 3k name searches, and 100 accounts per hour. Per webpage (probably best to do on different computers/ips). The extension would insert code into the site and let you activate it from there, kinda like this: Let me know what you think, if its even worth making.
  16. It doesn't look like there's an easy way to do this. You could interrupt, disable run, and recall the web-walk, but that won't accomplish anything as it'll just turn run back on, and be slower recalculating the web-walk (if it precomputes), as theres no way to get a path back from the event, only destination point it seems. An addition to the API for this would be easy enough.
  17. If youre not using advanced methods in the event, you could try walking.webWalk(); I'd assume this sets same defaults as the WebWalkEvent under the hood though. I'd go with setting energy threshold to 101 if the method doesn't clamp it to 1 - 100.
  18. The bright side if nobody does have any for sale; those all require next to no resources to do at least, easy to bot.
  19. apa

    OSBot 2.5.3

    Great to see OSBot so stable & feature-full. Thanks for update
  20. Damn, yea I guess you cant really intercept the random events, the script pauses entirely... I suggested a timeout on the lobby at least, that at least just kills the script if it sits there for 20+ seconds without finding the correct button id.
  21. It depends a lot on the time you run it. Most drop parties are during a certain few hours. The paint on my version has a total money gained based on osbuddy prices, and money gained per hour. It's still not 100% accurate though, a bug im having.
  22. Sorry yea its not fixed, but yea this got my accounts banned @Alek Maybe add a "logout and kill script" if it timeouts on the lobby? Would be a great anti-ban in case they do this a second time.
×
×
  • Create New...