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.

Bobrocket

Members
  • Joined

  • Last visited

Everything posted by Bobrocket

  1. Bobrocket replied to Dex's topic in Runescape
    Go for explorer's ring 3 and morytania legs 3 and you've got yourself some pretty decent teleports. Ardy cloak has been the most useful achievement on my account for sure.
  2. You chatting shit about my scripts bruh?
  3. Each scripter has their own style, if you will. Some people prefer Czar's scripts over other people because he is more well known, as an example. It's the same principle that you would probably rather buy a car from a trusted brand than from some guy in a Walmart restroom: brand identity. The market is never divided, as you can't either buy one or the other, you can buy both.
  4. It's better to learn things like this early on, it's simple and it's gonna remove a lot of redundant code (1000+ lines in onLoop was mainstream anyway, right guys?)
  5. I can: use nodes public abstract class _Node { protected Script script; public _Node(Script script) { this.script = script; } public abstract boolean canProcess(); public abstract void process(); public void run() { if (canProcess()) process(); } } public class Bank extends _Node { public Bank(Script script) { super(script); } @Override public boolean canProcess() { return script.getInventory().isFull(); } @Override public void process() { //stuff } } //in onStart List<_Node> nodes = new ArrayList<_Node>(); nodes.add(new Bank(this)); //in onLoop nodes.forEach(node -> node.run());
  6. I don't think spending half of your dev time planning is a bad idea. Here's my (personal) process: Think of script idea and all the complex details and write them down Boil it down to the super basics and flowchart it (eg a NPC killer would be things like "walk to nearest bank -> prepare inventory -> (loop) has item? (y/n) -> walk to mob -> kill mobs until out of food/no more items -> repeat") Write the basics Start adding complex details (try and keep an OOP structure to ensure it's easy to add more stuff to) Refine your script and finetune it until it is ready for release An example for your complex details, an NPC killer may have these points: If in wilderness, search for a looting bag in your bank to use Must be able to start anywhere and work anywhere Support changing combat styles on demand Dynamic safespots for range/mage The script must check if the mob is at full hp for loot
  7. Bobrocket replied to Baller's topic in Archive
    Done
  8. Hi guys, just want to thank you all.. remember everything is possible! I'm now 7th on the latest products list, hopefully together we can make it #1 Seriously though, congrats dude, you deserve it
  9. Write a flowchart to understand the flow of the script, and then build the basic script and finetune as you go.
  10. Windows 10 is fucking amazing. I'm just now trying to set up an email account so I can say "Hey cortana, send an email to <x> saying he sucks".
  11. Well, for starters, let's assume you're renting a 1U dedicated server in a datacentre for $99.99/mo. Your server has 16GB RAM, a quad core 2.8GHz intel xeon and a 1TB HDD, with a 1gbps uplink. You pay approximately $0.01/gb incoming traffic, and about $0.03/gb outgoing traffic. You'd be paying $0.60/day when not in games peroid, and about $3.15/day when in the games period. You're going to be paying 90x $0.60 and 20x $3.15 which is a total of $117 in terms of bandwidth. Including incoming traffic may get you to around $125. Your server would be running some form of Linux (eg CentOS), so you do not pay for the OS. To further save money, you use php5 and nginx for your web server and web language of choice. These are both free. However, since you are not setting it up, expect to pay around $100 for some IT technicians to do it for you. Since you are also looking for a managed solution, you would probably pay another $50/mo. In terms of security, you don't need too much. You could probably get your IT technicians to change the SSH port, enable RSA keys for SSH, disable root login, and add iptables rules to protect further for another $100 or so. You can do the calculations yourself. If you are looking for totally in-house solutions, the server would cost around $399 to purchase and maybe a static $59 per month to keep the server up 24/7. These are all estimates though, so don't take them seriously (do your own research)
  12. I've messaged you regarding this
  13. Done in 15 minutes: Enjoy
  14. It should say when you purchase the script if you end up with a monthly contract or not.
  15. Will see about testing now. Just got on win10 and I fucking love it! This shit is fucking amazing!!!! EDIT: Works just fine. Only problem (seen above in console log) is a lack of AAing. Same happens in my script GUIs.
  16. 44% upgrading, hope its worth it. Looks amazing and MS have taken some great turns recently so I have high hopes!
  17. Yeah looks great
  18. There's a reason you need visual c++ redist...
  19. Let's find out B)
  20. Alright, so let's say your server has 2 quad core xeon CPUs and 16GB RAM. You sell "6 cores" to one person, and "6 cores" yet again to another. You only have 8 cores there alone, so how does that work? Moreso, how do you even profit from this? Also, your KVM servers are unmanaged by default. You have to pay an extra $100/month for them to be managed.
  21. Almost definitely through some form of exploit (or bought from someone who has received them through an exploit).

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.