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.

Leaderboard

Popular Content

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

  1. Hey everyone! I just want to thank Divinity for everything he has done for me and I want to spread the love Using my own money, you can WIN any of his following Extreme scripts: 1. 2. 3. 4. 5. 6. AND (Since the smither and druids are cheaper, its a 2 for 1 deal!) Rules Now the rules are simple: Guess a number between 111-1111 and I would use an random number generator Everyone can have up three guesses by: 1. By liking this post and the thread of the bot you want (I WILL CHECK IF YOU LIKED THE POST OR NOT) 2. Putting the logo [above] of the bot you want into your signature (just copy and paste it, but make sure the image is still linked) for a minimum of two weeks 3. By purchasing any of his script. Doesn't matter if you purchased this before or after this thread, just make sure you write what script you have/purchased. (TRIALS DO NOT COUNT) Any cheating such as posting multiple guesses when you are eligible for one or lying about purchasing a script will result you being disqualified. Make sure that your guess is different, if there is a case that the lucky number is picked by multiple people, then the first person to post will win. The person who got the number or is closest will win! Contest will end whenever I feel like drawing the winning number but you have at least 24 hours so post away So good luck and have fun!!! Special thanks to: Dex
  2. Disputed member: @Reflected Thread Link: http://osbot.org/forum/topic/69072-reflected-designs/ Explanation: I requested a website logo from the user and paid $15 for it. During the request I made it clear I wanted a logo I can resize without quality loss and I was quoted 2-3 hours for the work. He completed the work and provided me a small logo, although logo was okay it was no re-sizable at all. Any re-sizing resulted in pixelated logo. After telling him about that, he claims he does not have illustrator on his current computer so he will have to get back to me in 2 days with the completed product I wanted in the first place. Today I skyped him about it while he was online on skype, without a response, I checked back later to find him offline. Which suggests he did see the message. I do not have time to waste, nor am I going to keep putting off my website because of this. I would like a full refund from him so I can get someone else to make a new logo today as Reflected has failed to complete the original request and too much time has passed. Evidence: http://i.imgur.com/fchheTh.png http://i.imgur.com/MFGhFcd.png http://i.imgur.com/q2BEHgi.png Edit: To add to the topic I would like to state illustrator was in no way a requirement to make a logo re-sizable, you can simply use shapes and such similar in photoshop or just start off making it large in the first place, (which i suggested to him, yet he ignored it). Nor would it ever have to take two days for such a simple request.
  3. 3 points
    Yh totally
  4. 3 points
    At least you're not having sex with a super hot girl for an hour. Man that would suck.
  5. title you log on my acc and buy $15 worth of rp ($10 then $5 cause there isnt an option for $15) then i pay you (unless higher feedback)
  6. This script looks amazing just by your singular thread, I'll be checking it for sure. Will you have full support for black chinchompas? Some suggestions for black chinchompa's if you haven't already: World hop if anyone/someone around the same level as you show up on the minimap/more than 2 people at a spot Using games necklace to teleport to corporeal beast, and then running to the spot Banking after a certain amount of chinchompa's Run, eat, glory teleport if combat initiated I've been dying for a good black chinchompa hunter, again I can't wait to give this a try.
  7. Seems I forgot to set the initial "currentNodeSet". I uploaded this without testing, which seems to always be a problem. I'll make sure to test anything I release in the future To fix this, you're going to need to find a set that best fits your bot when it starts. You can do this in a few different ways. I recommend setting it in onStart, right before continuing to onLoop: void onStart() { manager.add(...); manager.add(...); manager.initCurrentSet(); } Within the Manager class, you would add public void initCurrentSet() { for(Node node : allNodes.values()) { if(node.canProcess()) { currentNodeSet = nodeSets.get(node); break; } } } I'll be fixing this up shortly after my current project, which will make it easier for people to apply it to their scripts. Sorry for the inconvienence (wrote these systems from my phone )
  8. Such scripts will never work properly on mirror as rs client runs on different jvm than bot itself.
  9. i must have a different .77 because its happening and never happen to the .75 they need bring back the non forced updating. not happy
  10. don't tell me what to do you're not my REAL dad.
  11. Member: NoahTheWisewolf Feedback on activity: lame Abusive or Non Abusive: lame What could NoahTheWisewolf improve on?: fuck you Does NoahTheWisewolf handle situations well?: lame Anything else?: fuck you, you have no power here anymore
  12. As always, please update your mirrorclient.jar mirrorclient.zip Release notes: Miscellaneous bugfixes Linux is now supported! (Both x32 and x64) MAC/LINUX users please note: Mirror mode was originally designed for windows, and is optimized the most for it. And while it's now supported on OS X & LINUX - the performance of it is best when used on windows.
  13. Not bad, try use a more thicker/bold font and remove that cracked part from the bottom of the 'U'. Keep it up fam.
  14. I verify, indeed sexy gifs
  15. True champ For the first one, we need to check if the array passed in (through the parameters) has at least 1 value. Change linkedNodes.length (in the original code, not the one you modified) to linkedNodeTypes.length.The second one, you should actually be initializing the currentNodeSet variable with the value obtained from nodeSet.get(node). Change that line to currentNodeSet = nodeSet.get(node); For the last one, replace put(nodeType, linkNodes(...)) with put(node, linkNodes(...)) I promise these kinds difficulties will not appear in future guides/snippits. I'm not at home right now, so I can't do much when it comes to running the code I release on here, and if I only released these things while I was on a computer, I'd never get to it (too many other things to focus on while on a computer). But I will make sure others have tested before releasing anything in the future. As for the other guy implementing it right, keep in mind that not everyone is at the same programming skill level. He probably saw the problems himself and fixed it up
  16. After taking another look at the code, I've made a fatal mistake. The nodeSet map is mapping class types to node: Map<Class<? extends Node>, Node[]> nodeSet; //should be named nodeSetMap But in initCurrentSet, I told you to do nodeSet.get(node), when node is an instance of the class, not the class type (since allNodes.values() returns a Set<Node> and not a Set<Class<? extends Node>>). Map<Class<? extends Node>, Node> allNodes; for(Node node : allNodes.values()) { if(node.canProcess()) { currentNodeSet = nodeSet.get(node); break; } } What I told you before (the code I just showed) should have actually generated a compiler error. On top of that, I found a few little mistakes I didn't tend to (such as validating that you actually specified nodes in @Linked), so try this out: http://pastebin.com/QHTEg53H It's still messy. The fixes I added were quick fixes (making the design look even messier), but I'm cleaning this up as we speak, since apparently a re-upload is much needed. Let me know if the new LinkerManager works for you! And thank you for finding these problems for me. As I've said before, I've never actually ran this. I released it shortly after the person who requested it told me he got it working (with a few minor tweaks). Never release without testing X_X
  17. damn you just went full chinese on me ..
  18. holy shitttttttttttttttttttttttttt 100 hours ;o you've just broken the all time record, updated thread, tysm man! :D for all of you who want to see his proggy more clearly:
  19. - Script name: AIO Woodcutter and Tutorial Island - Your member number: 174864 Thank you in advance! Will post a proggy once I start on either.
  20. Account creators are hard to make, mostly because jagex blocks your account after you make more than (12?) accounts on 1 ip. Also, after x amount of attempts, a captcha is introduced into the creation process. Captchas are very hard to get round without very advanced ocr. It is possible to get around them but it is much more efficient for a human to register. Apa
  21. 1 point
    bxd inspire me
  22. just a quick convert of my osbot 1 script removed special attacks due to conversion issues... but it's the same as the one on the mvc just for osbot 2.. Forum with information link: http://osbot.org/forum/topic/33805-scrubs-auto-fighter/ Download Link: http://scrubscripting.com/scripts/downloads/osbot2/fighter.jar
  23. You could also get it using the System.getProperty method. System.getProperty("user.home") + File.separator + "OSBot"
  24. 1 point
    Thank you, that seemed to have worked, I was confused because it said, you must be logged in to start this script... then it logged itself in...haha! Thanks again!
  25. org.osbot.Constants.HOME_DIR p.s. It is not part of official api so consider it as a 'deprecated' way of retrieving it.
  26. No, you can also use this to check if its only down for you http://downforeveryoneorjustme.com/
  27. I made a bug report post, notifying that they didn't fix it, don't worry guys it will be back to normal soon ;)
  28. Ye´re correct, the delivery of the Adobe illustrator file that I promised to proved has been delayed. Eventho the logo design you ordered has been completed, all it need is just to be transferred into Adobe Illustrator file so you can resize it. (Evento you said you´re fine with only the .psd file when we agreed with the order. I promised the AI file after the deliver.) I´m sorry for the delays the weekend caused and I haven´t been able to do pretty much any graphics. I can refund the money you paid for the logo design (That I already provided and you paid), tho I find it easier now that I have more time just to transfer it into the .Ai file. So the time I spent doing the logo wont go to waste? That would not be fair either. Anyway, Th3, we´ll do as you want. I understand you opening a dispute against me, but I haven´t had access to computer with Adobe illustrator. I can Also make the bigger version with photoshop so the quality wont reduce much when downscaling the logo? I´m not a scammer, nor never had troubles like this, so I´d like to get this solved quick and smoothly.
  29. I will add more safety checks to spells, but I can't do anything about misclicks Usually we have to post a bug report but I already posted one and he claimed it is fixed
  30. Yeah I did it right but some how after restarting the osrs client and osbot client.. it worked again
  31. The G could be a bit closer to the 4, looks disjointed.
  32. no worries :p
  33. when the first 'g4ng' appears, the 4 and rest of the letters are really far off but @ at the end, theyre like, fixed/normal? not bad tho kiu
  34. another great script - how long will this remain free? ps - clay isn't working in rimmington but its no biggie i did it on a level 3 hence i couldn't do in west varrock as muggars will own my ass
  35. That's even better. Dispute closed!
  36. Why are the edges so pixelated?
  37. I started reading this then I got bored, sorry....
  38. Disputed member:RSServiceGeeks Thread Link:None Explanation:So yeah, this guy asked me to bot his account for him. I told him that if I got his account banned, I would give him my account in return. Later on, his account got banned and as I promised, I gave him my account details. He told me that there was a registered email on it and that he would report me on Osbot. I hesitated for a moment and told him that I would give him my email account (which I didn't think had anything linked to it). Stupid me, I forgot that the email address was linked to some other accounts (Bitbucket in particular) so he recovered my Bitbucket account and forked the projects, removed my teams repo accesses and renamed it. And now he's trying to resale it asking other people like okabe and ketchup to run my project for him... I spent countless hours working on this project with my partner and this guy stole it all. And I'm almost certain that this is not his first time doing something like this... Evidence: Conversation between Okabe and RSServiceGeek : Skype user :
  39. 1 point
    Ever-since being banned from here Swizzy has went off to make his own very successful automation community for another game. So it seems like it was good for him that he was banned

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.