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.

Leaderboard

Popular Content

Showing content with the highest reputation on 03/06/15 in Posts

  1. Could the scripting section get its own section instead of having to share one with programming? Its subsections aren't easy to find. As it is, the graphics section is more clear and easy to navigate. Propositions: Split scripting and programming into two separate sections. Give the new scripting section the following subsections: Scripting Tutorials Snippets Projects Help desk The way it's currently structured is really uninviting and impractical imo. Cheers. Credits to my #RaketBro @Czar for bringing it up, most of this was his idea.
  2. thread disguised as application
  3. Hey guys i recently started using OSbot and i purchased VIP. Once i purchased VIP i checked my profile and i indeed did have VIP. However once i canceled my subscription it was no longer VIP and i was not refunded the money. I was under the impression that once i canceled the Sub i would still have my months worth of VIP usage. But i do not have VIP. And the money has not been refunded. Who do i talk to and how do i rectify this. Thanks in advance.
  4. 3 points
    I'l make a new build later today with greatly reduced model buffers count, that should fix this issue. Thanks for your feedback.
  5. Good evening everyone! I fly to Berlin (Germany) tomorrow and will be back on 21st march. We (Austria) have a university project (Erasmus) together with students from Belgium, Sweden, Poland and Germany. A lot of workshops, presentations, going out to party and so much more.. It will be fun, thats for sure! I just wanted to inform you that I won't be active for this time, however I am going to browse a bit through the forums if I have time and wifi but I won't take much part on discussions or handle reports/disputes. See you in 2 weeks, Miss you already - @Oliver
  6. REQUIREMENTS: CPU: Dual core+ Operating System: Windows/Linux/OS X(MAC) Java: At least java 8 VIP, Sponsor, Scripter or Staff rank NOT HAVING THE REQUIRED RANK WILL NOT LET YOU START IT! HOW TO USE: Start runescape client on your browser or the official OSRS launcher Open new bot tab on OSBot and select to use mirror client Make sure you are not logged in before starting your script. Preferably with a freshly loaded OSRS client. And continue like you are used to! HOW TO REPORT BUGS: Reports missing the following will get ignored and deleted: Mirror client version Console output / terminal output Crash report if a crash occurred Script that you ran Hooks that failed JVM/Browser bit version (32 / 64) Known bugs & suggested/required fixes: Scripts are not starting/buggy: Please attach to rs client right after it loads BEFORE logging in.
  7. I wanna thank my mom for giving birth to me I wanna thank my dad my grandma Divinity for hiring those monkeys to do the things they did for me my sisters my best friend in kindergarten all of my people in the spam section And botre for having that awesome avatar picture This ones for you homies 1337 Also I wanna thank myself for making this high quality post.
  8. Ur just jealous
  9. Get the errors and post them here. Go and auth yourself on the script via the sdn and then open OSBot and run the sdn version (not local version). See if it runs properly for you and post here with your findings. ^_^
  10. 2 points
    How is there any confusion on the account info, he is the original owner? How did the account get messed up any ways? If I were you, I would demand a refund. He obviously has all the information to recover the account, telling you he doesn't is a clear lie.
  11. LOL ^ literally had a tear come out my eye bc how hard i was laughing at this lmfao i have no idea why i found this so funny
  12. Because there are in conflict with the rules of Googleads. We, therefore, have to remove them to make it a safe environment for Googleads.
  13. Man, gtfo and go back to being forgotten. The world was a much better place, like damn man. Do us a favor. Shit
  14. It seems like your computer is very slow & that's why the timeout happens. I've compiled a build for you with timeouts basically disabled. Please tell me if it works mirrorclient.zip
  15. I came here to see if I can get a free postcount Thread did not dissapoint
  16. Might have something to with what i said about double typing, holding an arrow key to rotate the screen causes it to do multiple spins for ages and blocks input until they're done.
  17. what am i supposed to think of this, how the hell is this advertising, i can't even see what fkin site they're advertising my ignore list has a fkin scroll bar wtf
  18. The node interface is Activity public interface Activity { public String status(); public boolean validate() throws InterruptedException; public void run() throws InterruptedException; } The is the Task manager public class TaskTracker { private Activity activeTask; private Activity[] taskList; public TaskTracker(Activity[] taskList) { this.taskList = taskList; } public Activity getActive() throws InterruptedException { if (this.activeTask == null || !this.activeTask.validate()) { for (Activity task: taskList) { if (task != null && task.validate()) { this.activeTask = task; break; } } } return this.activeTask; } }
  19. Fixed lel, that looked gross.
  20. I need a privately made script that is quality, there will be a large sum for it's creation and privacy. If anybody is interested and is reputable hmu on Skype: sklipz.rsgold
  21. 1 point
    looks good maybe i can get 99 mage lol
  22. LAST UPDATE: MARCH 6, 2015 Yes Logs is plural, there's no such thing as "a log" in osrs. package org.bjornkrols.woodcutting; import org.osbot.rs07.api.ui.Skill; import org.osbot.rs07.script.Script; /** * @author Bjorn Krols (Botre) * @version 0.0 * @since March 6, 2015 */ public enum Tree { TREE(1, 25f, Logs.LOGS), DYING_TREE(1, 25f, Logs.LOGS), DEAD_TREE(1, 25f, Logs.LOGS), EVERGREEN(1, 25f, Logs.LOGS), JUNGLE_TREE(1, 25f, Logs.LOGS), ACHEY_TREE(1, 25f, Logs.ACHEY_TREE_LOGS), OAK(15, 37.5f, Logs.OAK_LOGS), WILLOW(30, 67.5f, Logs.WILLOW_LOGS), TEAK(35, 85f, Logs.TEAK_LOGS), MAPLE(45, 100f, Logs.MAPLE_LOGS), HOLLOW_TREE(45, 82.5f, Logs.BARK), MAHOGANY(50, 125f, Logs.MAHOGANY_LOGS), ARCTIC_PINE(54, 140f, Logs.ARCTIC_PINE_LOGS), YEW(60, 175f, Logs.YEW_LOGS), MAGIC(75, 250f, Logs.MAGIC_LOGS); private final int chopLevel; private final float chopExperience; private final Logs logs; private Tree(final int chopLevel, final float chopExperience, final Logs logs) { this.chopLevel = chopLevel; this.chopExperience = chopExperience; this.logs = logs; } public int getChopLevel() { return chopLevel; } public boolean canChop(Script script) { return chopLevel <= script.getSkills().getDynamic(Skill.WOODCUTTING); } public float getChopExperience() { return chopExperience; } public Logs getLogs() { return logs; } @Override public String toString() { String string = super.toString().replaceAll("\\s+","").toLowerCase(); return Character.toUpperCase(string.charAt(0)) + string.substring(1); } } package org.bjornkrols.woodcutting; import org.osbot.rs07.api.ui.Skill; import org.osbot.rs07.script.Script; /** * @author Bjorn Krols (Botre) * @version 0.1 * @since March 6, 2015 */ public enum Logs { LOGS(1, 40f), ACHEY_TREE_LOGS(1, 40f), OAK_LOGS(15, 60f), WILLOW_LOGS(30, 90f), TEAK_LOGS(35, 105f), ARCTIC_PINE_LOGS(42, 125f), MAPLE_LOGS(45, 135f), BARK(999, 0f), // Can't be burned. MAHOGANY_LOGS(50, 157.5f), YEW_LOGS(60, 202.5f), MAGIC_LOGS(75, 303.8f); private final int burnLevel; private final float burnExperience; private Logs(final int burnLevel, final float burnExperience) { this.burnLevel = burnLevel; this.burnExperience = burnExperience; } public int getBurnLevel() { return burnLevel; } public boolean canBurn(Script script) { return burnLevel <= script.getSkills().getDynamic(Skill.FIREMAKING); } public float getBurnExperience() { return burnExperience; } @Override public String toString() { String string = super.toString().replaceAll("\\s+","").toLowerCase(); return Character.toUpperCase(string.charAt(0)) + string.substring(1); } }
  23. Hahahaha newbitch please don't start confrontation because you got called out for being a fucking nerd. Go play Edward 40hands with bleach you fat twat EDIT: Also be sure to edit your posts because I got you all shaken up and you couldn't properly put a sentence together phaggot
  24. this sub forum was made for spamming you fucking spastic wankstain why didnt ur dad leave u in a sock JESUS CHRIST LEARN TO NOT BE A NOOOOOOOOOOOOB
  25. Haha im leaving in about an hour but ill be on tonight ;)
  26. no wonder why they're looking for a new QA tester
  27. Cant blame him, pretty big update that was surely going to have some bugs in it
  28. Basic im telling you now, i will get this account. 24m.
  29. i'll offer 21m, basic don't do this -.-
  30. 1 point
    Hmm I guess they're not on the SDN anymore. I remember some script called king of the dragons though.
  31. 1 point
    Lesson 34: "The postcount comment". Omg Mysteryy you almost have 1337 postcount, how amazing I'm so glad for you! Leson 35: "The Mysteryy"
  32. Thanks for paying attention and fixing so fast - hopefully it works in the new update!
  33. 1 point
    The Skype matches with the one on here. He has now been banned here too. Thanks for reporting !
  34. 1 point
    Make sure you have the console enabled.
  35. 1 point
    german sausage jokes are the wurst
  36. parse the string as an integer
  37. 1 point
    Sorry about that man. I actually spelled 'Shrimps' wrong on the GUI side of things. It is working now.
  38. I feel like most of the issues only occur on the west side. It might be a switch or case that is broken and messing up other things. GL on finding the issue.
  39. 1 point
    Nice paint

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.