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.

Apaec

Scripter III
  • Joined

  • Last visited

Everything posted by Apaec

  1. Apaec replied to dokato's topic in Archive
    I catch your drift. But does making it a bit more random make it more human like? c:
  2. Apaec replied to dokato's topic in Archive
    mhm, interesting code c: Safe, btw. http://pastebin.com/YrdYpCE0 You can use localWalker.walkPath(Position[]) instead of walking to each individual position though! Apaec
  3. Well enum allows you to store extra things such as whether or not the world is pvp etc, idk, an enum would probably be more useful generally
  4. Sure, have enabled a 24h trial on your account. Enjoyy! Apa
  5. I think you can go nmz, all you need is blowpipe. You can afk at nmz so that might save you a bit of time. Other than that i've jsut got my levels playing normally through zulrah etc
  6. Welllll Firstly, we already have 3 rock crabs scripts (lol), but I guess we'll all welcome new competition The way I check in my script is much the same to how a human would check: Walk up to crab Check if there is a rock crab in the nearest 3x3 square around the player which is fresh Attack said crab Check if under attack & rock crab still exists If no rock crab (NPC) spawns, then refresh ofcourse there would be timers going on throughout. The only problem with this method is sometimes it refreshes when it doesnt need to if the world lags by over 5 seconds or so, but this rarely happens, so it's not too much of a problemo in my script. Apaec
  7. Write one for yourself! http://osbot.org/forum/topic/58775-a-beginners-guide-to-writing-osbot-scripts-where-to-get-started-by-apaec/ That way the ban rate will be way low as you're the only one using the script, and you have the satisfaction of being able to update it / customise it you your free will Apaec
  8. u drive me to an early gravy
  9. Yes. Zulrah. mage is effective against 3 of the 4 phases (melee and ranged and jad), and it still hits on his mage phase. So yes, you can use a swamp trident and zulrah will be easy (takes a while to learn tho!) Apaec
  10. Apaec replied to Maldesto's topic in Spam/Off Topic
    wtf is nba
  11. anne i think you know you'd like to send it to me the most pls but srs note im english and I did a course in tefl as well so ye, feel free to ask any questinos c: Apa
  12. The problemo is here: switch(getState()){ case KILL: NPC skeleton = npcs.closest("Skeleton"); if (skeleton.isVisible() && getTabs().getOpen().equals(magic)){ getMagic().castSpellOnEntity(Spells.NormalSpells.CRUMBLE_UNDEAD, skeleton); } else sleep(random(100,250)); getTabs().open(Tab.MAGIC); break; more importantly: if (skeleton.isVisible() && getTabs().getOpen().equals(magic)){ Firstly, nullcheck for the skeleton. Secondly, it would have to be getTabs().getOpen().equals(Tab.MAGIC); (not sure why you had just magic there, but i would expect it to give you an error for that). The reason it opens the magic tab then does nothing is because that if statement returns false every time as you just wrote magic in there. that means it always goes to the else part which says open the magic tab (which already checks if it is open or not before performing). So ye, replace all that with this: case KILL: NPC skeleton = npcs.closest("Skeleton"); if (skeleton != null && skeleton.exists() && skeleton.isVisible() && getTabs().getOpen().equals(Tab.MAGIC)){ getMagic().castSpellOnEntity(Spells.NormalSpells.CRUMBLE_UNDEAD, skeleton); sleep(3000L); } else { sleep(random(100,250)); getTabs().open(Tab.MAGIC); } break; Let me know if anything is unclear Apaec
  13. Added. Enjoy!
  14. Apaec replied to Apaec's topic in Spam/Off Topic
    Well atm i'm on my calculator but ye I also have a toaster
  15. Apaec replied to Apaec's topic in Spam/Off Topic
    Thank you sounds good ! sorry I used you as an example. My comp just gets a bit laggy with all the images on 1 page hehe :c but I appreciate this
  16. Apaec posted a topic in Spam/Off Topic
    Why can we not hide supermod signatures? No offence to anyone, but as @Oliver is so active on the forum, I see him post alot, and he's got so many ads in his sig it hurts. His sig takes up pretty much my whole laptop screen when I scroll down and it's quite obstructive, and I've found I can hide everyone's signature apart from his (and presumably other supermods +). I was wondering if this was a bug or intended, and if so for what purpose? Apaec PS oliver u are great keep it up Ye...
  17. I'll pay my virginity for your virginity is gud deel?
  18. http://osbot.org/forum/topic/66803-what-is-osbots-mirror-client/ http://osbot.org/forum/topic/66800-osbot-mirror-client-your-guide/ You may find these links helpful ^.
  19. Apaec replied to Pecman's topic in Spam/Off Topic
    whats nba
  20. You're not allowed to release a free AIO cooker as there are already two on the store.
  21. this is NOT normal! sometimes payments take a little while to go through but this sounds like a mistake. Contact @Maldesto with a PM and he'll sort it out for you Apaec

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.