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.

Precise

Java Lifetime Sponsor
  • Joined

  • Last visited

Everything posted by Precise

  1. there has been an rs update, wait patiently for a fix.
  2. Precise replied to mikehunt's topic in Archive
    http://osbot.org/forum/topic/66803-what-is-osbots-mirror-client/
  3. what if inventory is empty? it wont mine just read through the logic and see for yourself ^_^
  4. well you are checking whether the inventory is empty except for the ore, and so it will drop it since you have just mined it. instead you want to check if the !getInventory().isFull() then mine else drop ^_^
  5. Using mirror?
  6. im working on stats on an account as we speak, so once completed ill start to work on it if i am not banned xD
  7. what is happening exactly? your getState isnt efficient at all and will cause you issues. private State getState() { if(!myPlayer().isAnimating() && myPlayer().getInteracting() == null && !myPlayer().isMoving() && warrior != null) { return State.killWarrior; } else if (!myPlayer().isAnimating() && myPlayer().getInteracting() == null && !myPlayer().isMoving() && warrior != null) { return State.banking; } else if (!bank_area.contains(myPlayer())) return State.walk_bank; else if (myPlayer().isAnimating() && myPlayer().getInteracting() != null) { return State.walk_warrior; } return (State.idle); } have a read through this, you first if and else if statements are exactly the same yet return different states and some of it doesn't really make sense at all. do something like this: private State getState() { if(/*doesnt need to bank*/) { if(warrior != null) { if(myPlayer().getInteracting() == null && !myPlayer().isUnderAttack()) return State.killWarrior; else return State.idle; } else { return State.walk_warrior; } } else if(/* at bank*/) { //return bank } else { return State.walk_bank; } }
  8. would like the colour of my name to match my ava thanks!
  9. you can make this in the bot client xDD
  10. i have bought a few games from there no problems, they are legit
  11. it is unreadable, maybe change the format? ^_^ use names instead of ids
  12. i assume no fill? so g.drawRect
  13. maybe, but i asked this too and was told it wouldn't be accepted.
  14. Why it isn't allowed, I'm not sure. But it won't change anytime soon. http://osbot.org/forum/forum-181/announcement-25-scriptscripter-rules/
  15. I have been a retard and left all my maths coursework on my USB, i know it is dumb but i dont care about that. i went to print it off my laptop and now it is corrupt. anyone know any good programs for this which are free? tried so many already thanks! Precise
  16. Precise replied to daamurda's topic in Archive
    i made one ages ago, ill give it another go once i have he levels.
  17. reporting it solved ^_^ hf botting!
  18. hmmm weird, using 2.3.77 no problems here.
  19. osbot version?
  20. This occurs when trying to run the script? probably removed API which is either duplicates or not used anymore. Solution: open up the source in an IDE and correct it.
  21. Precise replied to neems's topic in Archive
    to stop leechers maybe?
  22. how isn't it working? being vague doesn't help us. and yes it works for me.
  23. Precise replied to MGI's topic in Releases
    this is a core bug which is known by the developers. check the page of the latest release of the client. (not mirror)
  24. Precise replied to MGI's topic in Releases
    this isnt a mirror issue. but a known bug for the client.
  25. this is on the thread of the latest version of osbot.

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.