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. DOWNLOAD (since JARs are not allowed to be used in scripts, the .rar contains the source files, which you can include in your project) UPDATED: The two systems have been merged. Let me know if there are any issues. Two people came to me asking how to implement certain functionality: 1. To link certain nodes to other nodes. Since some nodes won't come after other nodes (Bank will only come after WalkToBank), there's no reason to loop through EVERY node in the script depending on the current node. How could one implement a system that only check to see which node shohld be next out of the possible nodes, not all the nodes. 2. To allow other nodes to execute while the current node is executing. When the current node is WalkToBank and your player has low hp, the script will not eat, since the current node is WalkToBank and not eat. You could add a priority system, but the problem is not "performing one node before the other"; it's performing one node while another node is processing. There exists an asynchronous node executor, which executes a node on a background thread. But this does not account for possible memory incosnistencies by implementing memory barriers. Not to mention, such a burden isn't actually needed; a single-threaded system could give the same functionality, without the need for atomicy and synchronization, as long as the script is running at a specific frame rate (a guide on that coming soon; pm me if you aren't sure what that means). I have packaged both together. I haven't tested it with an actual script (performed some lazy tests), so let me know if there are any problems with it. NodeLinkerManager The idea is to take a group of nodes, and "map" them to a specific node. For example, the WalkToBank would only be followed to the Bank node, and in a pk script, a WalkToWild node will only be followed by FightPlayer and LookForPlayer. We want to link nodes to their possible outcomes. Usually, a node based script looks like this: class MyScript extends Script { private List<Node> nodes; public void onStart() { nodes = new ArrayList<>(); nodes.add(new WalkToBank(this)); // add other nodes } public int onLoop() { for(Node node : nodes) if(node.canProcess()) node.process(); } } abstract class Node { private MethodProvider api; protected Node(MethodProvider provider) { this.api = api; } protected MethodProvider api() { return api; } public abstract void process(); public abstract boolean canProcess(); } final class WalkToBank extends Node { // ... } The problem with this is, depending on the amount of nodes (which increase as decomposition is applied), the for loop in the onLoop method could take longer than it needs. This is because it could be checking nodes that could not possibly come after the current node. Instead, we want to check only the nodes that could possibly come after the current node. For this, you must specify which nodes can come after which nodes. This is done through the @Linked annotation: import fts.node.Node; @Linked(nodes = { Bank.class }) final class WalkToBank extends Node { // ...same as usual } The other difference is how you add nodes. First, you need to declare the NodeLinkerManager in your script. You then add the type of the node you want. Any linked nodes that are specified through the @Linked annotation are instantiated, as well as the node you specified. To ensure no excess objects are created, NodeLinkerManager handles ALL instantiation; you simply specify the type of a node through a class literal: final class MyScript extends Script { private NodeLinkerManager manager; public void onStart() { manager = new NodeLinkerManager(this); manager.add(WalkToBank.class); } public int onLoop() { manager.process(); return 2; } } NodeFragmentManager There are some actions that should be performed while other actions are performing. For example, if you are fighting, you might wanna check if you should eat or pot. You could hard-code the logic into the Fight node, but what if there are actions that apply to all nodes? The node fragment system sees those actions as "node fragments". A NodeFragment is the exact same thing as a Node, other than the ability to specify a NodeFragment when creating a node. You would specify the NodeFragment through the @Fragmented annotation: @Fragmented(fragments = { Eat.class; }) final class WalkToBank extends Node { // ... } final class Eat extends NodeFragment { // ...same as a regular Node } When the current node is WalkToBank, Eat will also process. This will allow the bot to eat while it's walking to the bank (if needed).
  13. Seems there's a pretty fatal bug with a couple of vital API interaction methods in the client. I'll post a report to the devs in the appropriate section for now, since I unfortunately don't have time to go thru every interaction and add a workaround (not that it would take particularly long, but it's really late already) If you still have client version 2.3.75, you should still be able to run the script fine with that. Sorry for the inconvenience
  14. Hi, There are some damn ugly avatars so I decided to get some off the web and resize them to 150x150 and also 125x125. There's a folder called 125x125 which are 125x125 gif avatars and a folder 150x150. All credits go to the designers who made them, I didn't make any of them just here to put them into a small pack and release it here. Enjoy lads. Download - https://www.dropbox.com/s/a41lhieoa75qvhx/Avatar%20Pack.rar?dl=0 Virus Scan(Just incase someone wants it) - http://prntscr.com/7n1a60
  15. Hey hey hey what's up mother truckers! Tis I NoahTheWisewolf the craziest spam king/ex-staff the world has ever seen! It's my 2nd month as an ex-staff, and I gotta say... Pretty awesome stoof! I was a middle man for a trade of like 75m! Mm'd some more trades for 25m and other stuff... Bought 100m rs07gp all at once because I am so cray! It's been a pretty awesome month living that ex-staff life. Consider this the official/unofficial Ex-Staff feedback thread. I might post more Ex-Staff names if/when I feel like it... I am unpredictable like that *puts on sunglasses*... So deal with it . Member: NoahTheWisewolf Feedback on activity: Abusive or Non Abusive: What could NoahTheWisewolf improve on?: Does NoahTheWisewolf handle situations well?: Anything else?: In the mean time you can improvise and put others ex-staff names in place of mine to feedback them. Also honorable mention to my new brothers and sister @Varc,@Anne,@Divinity Welcome to the Ex-Staff Team!
  16. Hmm with dual core and 4gb, it should be fine, Dunno what the problem is, maybe its mirror? I guess wait till a more stable version is updated and check it out.
  17. Thanks, changed avatar!
  18. http://www21.zippyshare.com/v/vOBhJaBF/file.htmlThe partyhat and cash stack was something you wanted yourself. As rectangle and dimensions you gave me the dimensions of the space you put the logo on your site, as you showed in the conversation. Yes you wanted a scaleable image, but agreed with the design and the psd file. The delivery of .AI file delayed, but i dont understand why that would justify you to get full refund now after you have agreed with the design, recieved both .psd and .ai file... LOGO IN ADOBE ILLUSTRATOR FILE; http://www21.zippyshare.com/v/vOBhJaBF/file.html
  19. Thanks for your time answering, and as always, the incredible detailed posts. However, should I make a ArrayList to get all the current nodes? As you haven't defined AllNodes. EDIT: public void initCurrentSet() { for (Node node : NodeLinkerManager.allNodes.values()) { if (node.validate()) { NodeLinkerManager.currentNodeSet = NodeLinkerManager.nodeSet.get(node); break; } }EDIT2:I guess you ment the NodeLinkerManager, rather than the class Manager.
  20. Version 1.2.9 is now live
  21. 1 point
    is anyone having problems with it? whenever i go to start the bot up it just crashes. is there any specific settings i need for it? any help would be nice lol scratch that, my problem was the same as previous posters.
  22. After receiving a 24 hour trial I must say that this is by far the best script I have ever used. Not only is the script excellent, but I have noticed that @Khaleesi is always prompt in responding to users that needs his assistance and keeping the script entirely up to date. Due to his dedication to his customers the script is entirely flawless as I have seen through my trial duration, and I have no doubt that he will do his best to always keep it that way. Keep up the good work my friend, and I appreciate the trial once again.
  23. A picture speaks a thousand words, 10/10 script Czar
  24. Feedback has been deleted.
  25. Hey first and foremost, thanks for making a great script that works on mirror . Making 374k ph average at 50 rc doing nats, cant compain! Although I felt like adding some suggestions to the script which could improve it though i dont know how hard they would be to implement. When entering the abyss could you design the obstacle finder to always take the nearest, northern-most obstacle as this will save a lot of time in the long run and is more human-like. Also could food and energy pots be withdrawn as one when banking? again would save time and is more human-like. Possibly randomise food (sometimes overeat and undereat but maybe this is a step too far) Lastly anti-pking, if you get hit by a pker could it just auto teleport regardless of hp? All this would be amazing and would receice full "props" from me and my "homies" and of course not to mention referals Once again many thanks on the great script
  26. Yes,i just created the account 2 days ago and yes it was lvl 3 ,i was planning to make it a skiller,my display name was actually "Smart Duck" and i changed the outfits.Thanks for the tip i'll try to do what you said.God Bless.Thanks for the trial
  27. Member: NoahTheWisewolf Feedback on activity: average Abusive or Non Abusive: non What could NoahTheWisewolf improve on?: nothing he is perfect Does NoahTheWisewolf handle situations well?: yes Anything else?: 10/10 would bang
  28. 1 point
    Yep! That solved it! Thanks buddy!
  29. Want to make it free for vips / donors Yeah. Kind of frustrating haha
  30. 1 point
    Popped er one small favor cherry ehhh
  31. is there anyway to get back the older versions? forcing me to update to .77 from .75 misclicks alot of the scripts im running and causing it to not work eg. czars aio perfect mage I been alching for hours over weekend no problems updating to this version today its sure thats its this 'stable' version EDIT: heres the video I can make few more if needed http://gyazo.com/0481b8bd5505e6c19915dd4b2ae284bb
  32. 1 point
    1 hour quest wow u poo rthing.....
  33. 1 point
    of course I had faith I love khaleesi's scripts. 100% legit as always. Appreciate it !
  34. 1 point
    this is a story about how i fell in love with maldesto: i really like maldesto because he gave me a second chance on osbot, i was a cunt to him to once when i got shown some stuff - i did some bad things but he forgave me, i have seen since that he is a gr8 individual i really like him - my love doesn't die - although he doesn't like me back
  35. Community, These rules are to be followed at all times by all staff members, sponsors, VIPs, Script Developers, and all other community members. No one is above rule breaking. Breaking any rule can cause your account to be infracted or permanentely suspended of OSBot. Rules 1. Offensive Language/Harassment There is to be nothing posted, said, or linked on the forum or live chat that could be seen as offensive by other members of the community. This includes, but is not limited to: > Discrimination in any way, including sex, religion, race or ethnicity, nationality, sexual preference, or spiritual beliefs; > Comments intended to hurt another member; > Any dis-respect towards other members of this community; This rule also applies to media. Harassing other members of the community, including staff members, is unacceptable and will result in 2 warnings point if after a verbal warning you continue to provoke/bother said individual, this includes hate threads, disrespectful PM's on the forum and skype, constant spamming on the other members topics etc... 2. Excessive Spamming No posts to be made that is completely unrelated to the topic or does not benefit the direct cause of the topic. We are lenient and will allow joking and mild trolling, however if done excessively with absolute derogatory intent there will be punishment. Double posts are not allowed, and will be removed. Excessive double posting will result in an warning or infraction. 3. Advertising It is not allowed to post any URL to another community, commercial website, or bot. Doing so will result in a warning. Excessively spamming of an URL will result in an immediate suspension of your account. Exception: A commercial website may be advertised if the thread poster has the "Advertiser" rank purchased on the OSBot store; however this website may not be another bot or bot community. 4. Personal Information/Hate threads No personal information of other member's is allowed to be posted on the forum, even with their permission. They must post it themselves if they wish for it to be. This includes, but is not limited to: > Names; > Personal photos; > Instant Messaging; > Phone numbers; > Addresses; > E-mails; > Name relations from other communities or anywhere else; Nothing is to be created that is directed towards a certain member or staff-member of the community in a hatred way. This will not be tolerated and will result in a suspension, if not permanent ban. 5. Pornographic Content No media, content, or talk will be posted regarding pornographic content. This means that no nudity is to be shown anywhere on the forum and talking about certain sites will result in a warning. 6. Gravedigging Gravedigging, posting in an old thread, is not tolerated without proper reason. A post is considered as gravedigging when the last reply is atleast two weeks old. 7. Client Links OSBot's client link is not to be posted anywhere on this community, any other community, or otherwise made downloadable without the direct permission from OSBot. This is our property, and legal action can be taken if re-distributed. 8. Script Sales Selling and buying of scripts is only permitted through our official store. Donations for projects are allowed, however they cannot be required. It should be made clear that the donations are going towards you for development and do not benefit OSBot directly. Authentication systems, script loaders, and distribution systems need prior approval from any Admin and/or Developer. These types of miscellaneous software are reviewed on a case-by-case basis and may be audited/reassessed at any point in time. Selling a single copy of a private script to a single person is tolerated. Releasing a private script a customer paid for to the public is also not allowed. Selling multiple copies of a private script will result in a permanent ban when caught for the script writer and the customers (if the customers are aware). Any way to get around this rule will be considered as "selling a private script" (Ex. Receving a percentage payment based on the users profit obtained by the script). The staff will not assist in any disputes with regards to private script transactions. Private scripts - We at OSBot will no longer deal with disputes regarding private scripts, unless the script writer is a Scripter 1/2/3. If you order a private script from a random user with no scripter rank on our forums and it doesn't work or isn't getting the support it needs, at the end of the day that is your fault for picking someone who is not qualified. The staff will instantly close with no punishment on either side with no script writer rank involved. 9. Script Content If you use someone else's work, you must have permission from them and must give full credit to their Intellectual Property. This is not just an OSBot rule, but is also illegal. Claiming someone else's script work as your own is a federal offense. 10. Malicious Content No content that contains malware, trojans, or viruses is to be posted anywhere on the forum. This includes direct intent to DDoS another member of our community, any other community, or any other website. This will result in a temporary ban, or IP ban depending on the situation; further action may be taken, as this is also a federal offense. 11. Feedbacks False feedback for the Trader Feedback System is not allowed. Feedback is also meant to be unique. This means that a single user can not give the same user multiple feedback in an unjust way to abuse the system. An example of this is buying/selling back to the same person over and over or trading in small increments and counting them as separate feedback. This can result in a full feedback reset or a ban. It is allowed to receive feedback for a service, as long as the service was either paid or there was risk involved. An example for risk is doing a firecape service for someone, on an account that contains more than 5M 07 GP. As we are aimed particularly at the RuneScape market, you are only allowed to give or receive feedback for graphics if there is at least $3 worth of goods (based off of common transfer rates) transacted. Feedback for free product will not be allowed. For further clarification on this rule, read here http://osbot.org/forum/topic/47264-feedback-rule-change/ If you use a middleman you may give him feedback but the middleman himself is not allowed to give feedback. 12. Market It is not allowed to tear apart a market thread. If someone wants to sell an account for $50, then it is not needed to post things like 'too expensive, wouldn't even buy for $20'. It is rude and unwanted. If you're not interested, then simply don't reply. 13. Criticism Rule If a staff member has made a decision that you feel is in some way incorrect or abusive, please report it to @Maldesto via private message. Please do not make a thread about the staff member in question, as this can cause minor chaos in the community. 14. Your Forum Account Making numerous accounts to bypass our VIP system is not allowed. If you are found doing this you will be banned on all alternate accounts even if you have premium scripts. If you are caught doing it after receiving a ban on the alternate accounts you will receive an IP ban. You are also not allowed to share or sell your forum account. This is not accepted and will result in a permanent ban. The use of Proxies/VPNs on the forum is prohibited. If you are using a VPN/Proxy that is linked to a banned member, you will be banned. Therefore we advise you to only use your own, real, IP address. 15. Name Changing You are not allowed to abuse the ability to change your forum name. This includes but is not limited to offensive names, replicating another users name (ex: ja5on or Jays0n), or inappropriate names. Violation of this rule will result in you losing your ability to change your name and your username will be reverted back to your login name. 16. Language This is an English only forum, you are free to use whatever language you want in private chat or personal messenger. Warning Type Warning Point(s) Excessive Spamming 1 Gravedigging 1 False feedback 1 Offensive Language / Harassment 2 Advertisement 2 Offensive Media 2 Malicious Content 10 Scamming 10 Market Rules The general market rules can be found here. Dispute Rules Note: Failure to follow them will result an in infraction and/or ban. You may only post if you are: >Original poster of the topic. >The person under dispute. >Involved in the trade and/or can provide valuable evidence. >Have permission from a staff member. Infractions Note: The following infractions will automaticly be given by the system, when you reach a certain amount of warning points. Infraction Warning Points 1 Day suspension 5 3 Days suspension 7 Permanent ban 10 These rules can be changed at any time at Administrator discretion to punish you for any reason said Administrator sees fit. Thanks for reading, @Maldesto & the OSBot team.

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.