Skip to content
View in the app

A better way to browse. Learn more.

OSBot :: 2007 OSRS Botting

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

dormic

Members
  • Joined

  • Last visited

Everything posted by dormic

  1. You're trying to get the ouput of the script/bot right? I tried this myself too and it didn't work. There is an option to open a socket with the CLI -debug porthere command and you can listen to this port with for example Python to get the output and store it somewhere. That's how far I got. import socket # creates socket object s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) host = socket.gethostname() # or just use (host = '') port = 5005 s.connect((host, port)) tm = s.recv(1024) # msg can only be 1024 bytes long s.close() print("the time we got from the server is %s" % tm.decode('ascii')) input("enter") Not sure how to continue, I gave up because I didn't need it anymore after all.
  2. dormic replied to Kramnik's topic in Botting & Bans
    Mine are automated and the workers trade with the mules when they reach the 30K gold mark. Then the mules will stay some time online waiting if there are other workers left to also trade. All these are level 3 except my 'real mule', that one is about combat level 50. All the automatic mules get banned within a week, because of macroing.
  3. Thanks, yea it's decent, I could have used a lot more coding patterns, but I am still in the process of learning them. You have to start somewhere as everyone else did. I know someone who started from scratch about 4 months ago and is now also at the same level at me. Work on a project and you'll learn it ? The muling system didn't have to be like this if you have a smaller farm. It's not like they are going to track all your mules, because the automated mules will most likely get banned for macroing anyway, this adds fewer actions per mule/super mule/server mule so they don't get banned all the time.
  4. The servers are bought at a company that sells them online, they provide me with a blank windows copy, there are some steps that I have to do before it's farm ready, but because of the server's maintenance costs, I can't buy too many at a time for now. I am currently using Dropbox to share all the files with those systems but will be using Github webhooks in the future. But after this server has been set up, it's ready and I don't have to do anything else than watch it run. The way you describe it, I would have to find a company that allows me to upload my own ISO's or buy my own machines, but I have not found one yet, but it would be much easier. The server setup is not automated, but there are quite some things you can do via CMD if you google for it, but the whole muling/trading/skilling/questing/farming is. Yea it's getting quite big. And a p2p farm would require alot more coding, but it is definitely something I want to do in the future.
  5. There were some issues with the server muling, because I didn't test it enough, it broke the rest, so had to rollback some of my code with Github (thank god that I am using github). Now going to rewrite that code with my own local testing environment to prevent it happening again. I've also purchases my 3rd server to run bots on, so now a total of 240 bots running! 160 on mining and 80 on woodcutting! Theres also something new with creating account on OSRS and it will block your IP-address and will waste lots of captcha's so made a workaround for that in the database. Last week I farmed a total of 230M which is about 160$ and is not enough yet to cover my costs. (server, captchas & proxy costs) These are the edits I made for the creating account issue. And after 60 minutes it will change it back to 0. It will detect when it gives an error and sets it to to 1.
  6. Where's the link for AIO Herblore - FREE & OPEN-SOURCE? Would be interesting to see how you coded it.
  7. Do you have the source code somewhere? Would like to see how it's coded. I could decompile the .class files but if you have it somewhere it'd be quicker
  8. dormic replied to Wishy's topic in Goals
    Hows the progress?
  9. Really interesting your journey, just wondering, how many bots you currently running in F2P? I am currently unlocking all my accounts that get locked with services as 2captcha, but you're saying that there's a way around to not getting locked? It also looks like there's just a few methods in F2P that have enough volume (mining, woodcutting) to be profitable, how do you get this profitable if you're running more than 500 bots?
  10. dormic replied to Kramnik's topic in Botting & Bans
    Err I am using a MYSQL database to communicate between clients. Awesome that's it's inspiring some people to do the same!
  11. dormic replied to Kramnik's topic in Botting & Bans
    Yea no problem ? The longer you make the chain, the less the bans I have noticed. Here's my farm progress if you're interested. Running about 160 bots fully automatic atm.
  12. Updated the post. EDIT: finished the server mules
  13. dormic replied to Kramnik's topic in Botting & Bans
    This is my current process with just one server. This is my future muling proces with multiple servers: All have different IP's, the workers trade to the mule till 1M cash, then the super mules trade at a total of 5M cash to the server mules. Once that is about ~ 50M I manually mule that to my manual mule. The automatic mulers are also created automatically. (tut island, walking to G.E., accepting trades from workers)
  14. How many picks per hour?
  15. Fun for a few bots, but not for a botfarm. There's not enough volume. Cool script though, didnt know the method!
  16. dormic replied to Explv's topic in Others
    Is this more CPU efficiënt than the normal webwalking? Otherwise it would be a great addition in the API or in general. Wouldn't mind buying it so I can use it in my own scripts. Or is it using the default webwalking from the API?
  17. Well, maybe but I don't want to create too much competition. Making a net profit (minus all costs & taxes) depends all on the sell price of the gold.
  18. The revenue is about x3 the expenses for me, thus so far making a little profit. Just try to build something and you'll get there! Thank you. I've also reached the 50M a day mark!
  19. dormic replied to someguy567's topic in General Help
    Yes, you'll have to unlock them.
  20. I will keep the IP's and reuse them, they'll get banned anyway. Awesome man!
  21. SOCKS5 shared proxies for about 0,30$ per proxy per month The JDBC library for MySQL in Java. Using a MySQL database for everything. Found out how to connect clients with a library so that helped out alot.
  22. Typing doesn't have to be with the API itself, try googling typing with Java in general without any libraries (since osbot blocks most). You'll have to get an account muted to test that part. Maybe a message appears in the chatbox and you can scan on that. You can scan the players around you with the API and then add them to your friends list. I am telling you that it's all possible and not too hard, but you will have to dedicate some time into this project. Looking for a message in the chatbox getChatbox().contains(Chatbox.MessageType.GAME, "message you're looking for, maybe for beng muted?") Looping through players around you getPlayers().getAll() Getting interfaces for adding people/removing to the friends chat for example There have been several tutorials about widgets, for example: https://osbot.org/forum/topic/139213-lesson-3-the-basics-to-configs-widgets/ I can help and guide you with most issues, but I am not going to write any code for you, you will have to do that for yourself.
  23. I've been optimizing all scripts, so nothing too exciting yet!
  24. Hi, I was having some issues getting the prices of items form the RsBuddy G.E, API, it seems to be down when using this link: https://api.rsbuddy.com/grandExchange?a=guidePrice&i=434 Anyone that know's whats going on here? If its not a reliable source, then I'd rather look for the official API Thanks
  25. Why don't you write an automatic muling script? I use it all the time without any bans.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.