Jump 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.

Cory

Members
  • Joined

  • Last visited

Everything posted by Cory

  1. the only things you can make sure it does are; -bank for food when run out, for lower levels -make it lure the crabs -leave the area when they don't attack user anymore -cannon support -loot any ammo anything other than that is overkill.
  2. Is currently doing a service for me. will vouch when complete.
  3. [user] - Use a script that's broken or need a bug fixing, but the scripter is afk or has been inactive for a while. fill out the form and I'll attempt to fix the script. [scripter] - If you would not like me to edit your script, reply here or leave me a pm and I won't edit it and will remove any edited scripts currently released here. Scripters not wanting me to edit their script will be posted below: - XAvier - Any script fixed will be posted here below: - Fixed - http://osbot.org/forum/topic/4454-beta-diclonius-flesh-crawlers/page-9?hl=flesh - Form: Script Name: Thread link: Issue: Errors:
  4. Cory replied to Cory's topic in Archive
    Which is why a lot of premium scripts are reportedly broken, very buggy, or just don't work.
  5. Depends how hungry I am, McDonalds is OK for a snack, or a light meal. But if i want something a little bit more filling I would go with KFC. Never been to Subway and never been to burger king.
  6. Cory replied to Cory's topic in Archive
    the few people that use osbot that could do that, wouldn't use the script most likely, and if they wanted too, they would of wrote their own. if they go through that much shit to run the script, imo they're welcome to it.
  7. Would be pretty good if people who released premium scripts could select an option which allows users to run their script for like maximum of 3 hours (or even specify their own time frame) , as a trial. then after the 3 hours is up, they can't run it anymore. just a 1 off 3 hours or so, to see if the script interests them and is worthy of them buying etc.
  8. Your logic and implementation logic seems off, you're checking if the door is open, but returning true if its closed and the way you're telling them to use it doesn't make sense, they don't have access to the door variable inside checkDoorIsOpen as its Scope is only inside that method. It would make more sense to pass the door area and have that method handle opening the door, something along the lines of; Area doorArea = new Area(x, y, x, y); if(openDoor(doorArea)) { //CODE HERE } private boolean openDoor(Area area) throws InterruptedException { RS2Object door = closestObjectForName(area, "Door"); if(door != null && door.getDefinition() != null) { if(hasAction(door.getDefinition().getActions(), "Open")) { return door.interact("Open"); } } return true; } public boolean hasAction(String[] actions, String action) { for(String a : actions) { if(action.equals(a)) return true; } return false; }
  9. Diamonds messaged me on skype, /close thread
  10. Cory replied to Andrew's topic in Archive
    Thanks for the feedback; however I like the idea and it could help take the load off of service owners. They'd no longer need to constantly message clients to update them on their order. But if the client only had 1 account, that was being worked upon, he wouldn't be able to check. This would be a better idea as a standalone program, rather than a script. I see where you are coming from; I might change it / create a separate stand alone version once I find a pastebin alternative Just use a free web hosting service and setup a basic database. Plenty of tutorials out there that would easily suffice, Then just use jdbc or any other api to interact with the database.
  11. Cory replied to Andrew's topic in Archive
    Thanks for the feedback; however I like the idea and it could help take the load off of service owners. They'd no longer need to constantly message clients to update them on their order. But if the client only had 1 account, that was being worked upon, he wouldn't be able to check. This would be a better idea as a standalone program, rather than a script.
  12. Why not use methods already provided by the inventory api, they're there for a reason. public boolean inventoryContains(int...ids) { for(int id : ids) { if(client.getInventory().contains(id)) return true; } return false; } public boolean inventoryContainsAll(int... ids) { for(int id : ids) { if(!client.getInventory().contains(id)) return false; } return true; } public Item[] findInInventory(int... ids) { ArrayList<Item> list = new ArrayList<>(); for(int id : ids) { for(Item item : client.getInventory().getItems()) { if(item.getId() == id && !list.contains(item)) list.add(item); } } return list.toArray(new Item[list.size()]); }
  13. Cory replied to Kati2's topic in Snippets
    Nice, would use but I don't use sleeps.
  14. Cory replied to Andrew's topic in Archive
    Seems stupid. Having to run a script to check when your account is done or what condition it is in.
  15. I Voted cory.
  16. I sent @Catastrophe $350 before i got disputed $100 so i wouldn't lose any money, Then told him to send the $350 to my parents account so he didn't have to hold onto it. Then next thing we know, all 3 accounts have been locked/limited for fraud or some shit. They rang all 3 of us and we verified it etc over the phone, sent i.d and shit. yet they have said: Unfortunately, due to excessive risk involved, our decision to leave your account in a permanent limitation status is final. Your right to appeal: PayPal will always carry out a thorough and routine investigation before closing any account. However, we appreciate that from time to time misunderstandings can happen. If you have an important query on this matter, and wish to appeal our decision, you can do so. Please log in to your PayPal account at www.paypal.co.uk and click 'Contact Us' at the bottom of any PayPal page. Anyone know away around this or anything we can say/do to get the accounts unlocked and get the money off the paypal?
  17. Cory replied to n3ss3s's topic in Archive
    Ofcourse I don't work for Jagex, but rather than wasting effort with anything more complex, all they'd really have to check is if anyone does more than 20 puzzles or so in a few hours. It's annoying as hell to pluck the numbers into an online solver and then put them back in manually, and I don't think any human would do this for long periods as a money making method. Writing down like 10 numbers into an online sudoku solver is very easy and takes minimal effort. doing this, someone could easily have solved about 40 puzzles an hour. then after the hour, take a break, do something else. and resume.
  18. Cory replied to n3ss3s's topic in Archive
    This isn't always correct. Many people who do sudoku legit, use an online solver and then just copy the results into the game. Still completing the puzzle up to 10 x faster than a legit human could. So if a user did get banned for this, then I would have to blame the bots mouse movement system. But obviously there are many factors that are down to the script which could change this, So it is hard to tell who was to blame, whether it be the script, the user, or the bot.
  19. Cory replied to n3ss3s's topic in Archive
    Will produce more bans than profit.
  20. Cory replied to Ericthecmh's topic in Snippets
    Does windows take both? I didn't know that. Thanks Eric If you really wanted it to be cross platform, just use System.getProperty("file.separator")
  21. Cory replied to YoHoJo's topic in Archive
    If you start using PA you won't have any feedback or trades done there and chances that people will accept your offer are really low. It is useful for a start on PA to show your PA offer on OSBot to get some easy trades going because you most likely are already trusted here. If someone from here posted their offer on playerauctions and i saw someone more trusted on there for the same price, or someone as trusted that is cheaper, i would always go for them, not the person from here.
  22. 20/40 posts takes an hour to get tops... if they was set out on scamming, the post limit wouldn't stop them. Personally I like it when people get scammed, as it's there own fault, they should be more careful, it serves them right.
  23. Cory replied to YoHoJo's topic in Archive
    I don't see the point in this personally, anyone who uses PA goes for the cheapest reliable option... anyone posting there links on here won't get more sales, unless they beat the rest of the competition on PA, and if they are doing, they won't need to advertise there sales on here... seems redundant to me.

Account

Navigation

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.