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 03/13/14 in all areas

  1. Faith is something for the weak minded. It's something for people who feel like they can't accomplish things on their own but when they do, they credit it to "god." It's pretty degrading if you ask me.
  2. I view religion as basically an idea that people can hold onto to give their lives meaning. Everyone needs a purpose and to be given hope when times are tough. No one wants to admit their screw ups and instead would rather point at the sky and go "God has a plan for me, that was meant to happen" instead of facing the fact that they messed up. With that being said I don't believe in God at all and never will. I'd rather live my own life then live my life to impress some head honcho in the sky.
  3. Thank you for posting your side of the story, it appears his side was taken way out of context. Anyways, I can see this transaction was attempted to be done peacefully, as seen by @Booch's offer as a middleman to handle the trade. I cannot ban or place @Booch under TWC as the evidence isn't sufficient enough to do so. Considering he advised both of you to stop the trade, I see no intention of scamming by either party. Dispute closed.
  4. This looks like Python and PHP attempted to have a child and it came out retarded.
  5. I'll keep it simple. I don't believe in God or any higher power nor do I let anything dictate the way I chose to live life. I always say live life the way you see fit and let others do the same, if someone chooses to believe in w/e religion that's fine as long as they don't try to force their beliefs on me then we have a problem.
  6. I really think I believe in him now, even after I had thought I was an atheist. It's amazing what members of a botting community can do to change religious views (@Smart/@Maldesto)
  7. As long as its kept to 30 minute per post, I find it fine. I mean c'mon, this is a OSRS related site.
  8. 2 points
    v1.7.87 Updated: Prayer configs Added: (hopefully these remain stable) ObjectDefinition: getModifiedModelColors(), getOriginalModelColors() NPCDefinition: getHeadIcon(), getOriginalModelColors(), getModifiedModelColors() ItemDefinition: getUnnotedId(), getModelId(), getNotedId(), getOriginalModelColors(), getModifiedModelColors() Hopefully, hopefully I didn't miss anything.
  9. Format: Member: Jordan Feedback on activity: Active Abusive or Non Abusive?: Non Abusive What could Jordan improve on?: Not sure, seems fine to me Does Jordan handle situations well?: Yes Anything else?: Member: Mikasa Feedback on activity: Active Abusive or Non Abusive?:Non abusive What could Mikasa improve on?: Same as Jordan Does Mikasa handle situations well?: Yusss Anything else?: Member: Smart Feedback on activity: Active Abusive or Non Abusive?: Non abusive What could Smart improve on?: Nothing Does Smart handle situations well?: Yeeeees Anything else?: Member: Gilgad Feedback on activity: Active Abusive or Non Abusive?:Non Abusive What could Gilgad improve on?: Spend more time talking to me in chat Does Gilgad handle situations well?: Yes yes! Anything else?: Member: Raflesia Feedback on activity: Active Abusive or Non Abusive?:Non abusive What could Raflesia improve on?: Nothing Does Raflesia handle situations well?: Yesss Anything else?: Member: Arctic Feedback on activity: Active Abusive or Non Abusive?: non abusive What could Arctic improve on?: Not sure, seems like a nice guy, haven't spoken to him as of yet. Does Arctic handle situations well?: Not sure. Anything else?: Member: Eliot Feedback on activity: Active Abusive or Non Abusive?: Non abusive What could Eliot improve on?: Not sure, maybe be a bit more lenient with the kicking sometimes i.e prior warnings Does Eliot handle situations well?: Yes Anything else?: Member: Nick Feedback on activity: Active Abusive or Non Abusive?: Non abusive What could Nick improve on?: Not sure, maybe the same as Eliot, both good guys, don't know em too well yet though Does Nick handle situations well?: Yes Anything else?: Overall the staff team is looking good, you all seem to be doing a fine job and getting a long. Keep it up ^^ Although on the subject of disputes, maybe the trials/globals should let the supers + deal with them, otherwise if they don't have someone online to contact with access to the CP, that person can only receive a warning point ban, when scammers need IP bans to prevent further scamming and so on. But if the rules have changed since I've resigned, ignore me and keep doing what you're doing ^^
  10. I personally think all marketing should be banned from the chat at all times. There is a HUGE market section on the forums and we would love for the forums to be more active with users participating. No one comes in the chat looking for a service, most of the time it is users that come to troll and just shoot the shit, or leechers coming in to ask for support. No one wants to see a service thread.
  11. Whatever Just Basic is, I can assure you that you will never use it later in life. I went on their website, and it looks to me as a sorry excuse to make money. According to http://justbasic.com/learnmore.html, for $50 you get access to the Windows API and and/or external DLLs. Things like that should come for free in a programming language. If you look at any major programming language (Java, C, C++, C#, Python, PHP, Perl, Ruby, the list goes on and on), where you can write any code you want for free, the idea of having to pay extra for capabilities because they were limited on purpose purely to make money is ludicrous and reeks of money grubbing idiots. You should try to see if you can learn in a different language. I hear Python is a good place to start, though I myself started learning C# first, then adopted Java as my main language.
  12. I'd much rather see adverting be completely banned from the chat as it's useless spam and if people wanted services they'd go to the market forum. No from me.
  13. It's a different story if you're looking for quest items, they're hard as heck to find. Generally if it just comes in as normal chat and not advertisement I don't mind at all. But advertisement, nah, that's what zybez and Merch bots are for.
  14. What are feelings? In all honesty, I don't like messing with the forums too much, that's why we have Maldesto and Raflesia!
  15. ATBundle has an amazing one with it, I highly suggest you buy it!
  16. I agree, some scripters are in it just for the experience and not for the money (very slim amount).
  17. Sure I have five minutes. @ScriptManifest(name = "Demo 3", info = "Demoooo", version = 1.0, author = "DeadCommon") public class Demo3 extends Script { NPC[] attackable; @Override public int onLoop() throws InterruptedException { attackable = getAllAttackableNPC("Guard", "Goblin", "Cow", "Chicken"); return 550; } @Override public void onPaint(Graphics arg0) { if (attackable != null) { boolean closest = true; for (NPC next : attackable) if (next != null) { arg0.setColor(closest ? Color.GREEN : Color.RED); arg0.drawPolygon(next.getPosition().getPolygon(bot)); closest = false; } } } public NPC[] getAllAttackableNPC(String... arg0) { List<NPC> cache = client.getLocalNPCs(); if (cache == null || cache.isEmpty()) return null; // No NPCs found (whatsoever) final Player me = myPlayer(); for (Iterator<NPC> i = cache.iterator(); i.hasNext(); ) { NPC next = i.next(); if (next == null || !next.exists() || !contains(arg0, next.getName()) || next.getHealth() == 0 || (next.getFacing() != null && !next.isFacing(me))) i.remove(); } if (cache.isEmpty()) return null; // No valid NPCs filtered Collections.sort(cache, new Comparator<NPC>() { @Override public int compare(NPC o1, NPC o2) { return new Integer(o1.getPosition().distance(me.getPosition())) .compareTo(new Integer(o2.getPosition().distance( me.getPosition()))); } }); return cache.toArray(new NPC[cache.size()]); } public static boolean contains(String[] a, String b) { if (a == null || a.length == 0 || b == null || b.isEmpty()) return false; else for (String next : a) if (next != null && !next.isEmpty() && next.equals(b)) return true; return false; } }
  18. The Veteran rank should stay, it cannot go. It's partly the reason I'm still here.
  19. The reason why you made this topic is because you really want the color from the sdn rank.
  20. Ill try to keep this short and simple :p Hello, my name is Guki. I'm a college student pursuing a career in computer science. Been playing runescape for almost as long as I can remember, started back in 2004 and boy were those the days. I always enjoy intelligent discussions on politics, religion, and economics. I have around 4-5 years of experience with java and I plan to write some scripts through this client and hopefully post them for you all to enjoy as well. Thanks for reading my paragraph of useless bullshit everyone, see ya around the forums!
  21. This script is awesome, but I've been noticing one major flaw; the looting. It doesn't pick up the loot about 10-15% of the time. This is very annoying and it lowers the gp/hour by a significant amount. @Deffiliate, could you please look into this? Many people have been complaining about it but I haven't seen any improvements. And it shouldn't be the client's fault because looting works on all the other scripts I have. Thanks EDIT: I just got a great idea. After the wilderness update they released this thing called a looting bag. You can store things in it if you are in the wilderness. I haven't really used it much, but I think it can hold a whole inventory's worth of stuff in it. If you could store dhide and bones in it, the gp/hour would be increased by a tremendous amount. :D
  22. Thanks to everyone for the feedback, and on the subjects of trial mods being able to handle disputes - They can do them as long as they stay within their power and if the situation is beyond their ability they must alert one of us (Super Moderators/Administrators) as soon as possible so that we can assist them with the dispute. Everyone has to start somewhere and we're watching over them in every circumstance to make sure their judgement is not flawed in any way. This provides practice for them and also allows the maturity of experience in that area. Hopefully that clears things up, if you have anymore questions let me know.
  23. I know this is like 12 days late but: I'm not the only one to donate. @Mikasa donated, and is now Super. @Smart was admin over there, and is now Super, @Raflesia was admin over there, and is now Admin, @Master Chief was admin over there, and iirc was promoted when he came back before getting banned. I'm not trying to argue but I'm just letting you know that's not a 'fair' reason.
  24. Probably some script kiddie that has no idea what he's doing. Just ignore the twat.
  25. It's A Project (Isn't Released Yet) // If you need a tester, just drop me a PM if you want.
  26. I can do this! I am will be kinda cheap. We will discust a price on skype. Skype: OliOwnage
  27. ( 500k ea ) that covers all items + super energies also. Cyrus.osbot
  28. Because SDN scripter is far too easy to get. Decent flax picker or a simple script, and you get the rank. Anyone can get it. Veteran is earned overtime which is shown by your dedication to OSBot. Not many people stick around communities for too long so it shows commitment. Something that I feel should be recognized. Plus is shows a bit of experience around the place.
  29. I like a chat being a chat, not a place to advertise.
  30. it's a place to chat, and some people already try to sell stuff as it is and it gets annoying as fuck, if the rule was removed, even more people would try to sell things and it would become even more annoying
  31. Need a few bonds, please add me; raflesia.osbot
  32. If SDN scripters get a color on their name, I want a rainbow name. I've said this 7383837 times, work for OSD, & then you'll get a color. I'm tired of the constant excuse "i make osbot money", because osbot makes you money as well, so...
  33. Nezz, u know i love u, but i honestly think its fine the way it is. But i like gilgads idea of a symbol in chat box for staff
  34. I do not have access to add anything to my signature. Is this some sort of bug or is it just a restriction TWC members have? If it's a restriction, some members still have things in their signature.
  35. I don't need another person to tell me what is right and wrong. I am a strong enough human to be able to not rape 3 year olds on the street without a higher power to tell me that
  36. I disagree. Users should be allowed to post their threads in just the "Dispute" section, then after a staff member looks into it and starts providing proper instruction it should be sent to the pending section. Without this there would be no organization at all within the dispute section.
  37. I can only believe in facts, and that's what I believe.
  38. Many people are like that. Including friends of mine Will do. I'll let you know I received an A on the paper. However, my teacher said that the points weren't convincing. He said in 6 years of teaching only 1 student has proved it correctly. He told us the correct way, and I'll write up a summary of the idea once I find my paper.
  39. I can already smell the future flame / drama this thread is going to cause. Anyways, I personally believe that there is a higher power that created this world, but I'm not quite sure what it is yet. I'd rather believe in something than nothing at all. ^_^
  40. I've used similar in the past. I'd suggest to add a check for the NPC with the highest HP - even though there's an NPC next to with with 1 hp, that's not the best choice if there's one 2 blocks away @ full hp Also,the way you are iterating through the arraylist of local NPC's you will find a pattern it will attack by. Such as if you're surrounded by NPC's it will always attack the east one or something. Once you find an NPC that is closer than the previous, add it to a list. If the next NPC is the same distance away, add it to the list, repeat. Once you iterate through all of them, chose a random NPC from the list.
  41. I thought that their was a glitch on some of he scripts that had the npc you were training on considered as a Random.
  42. Yeah, but I have a ban button I can push IRL. I don't even need the computer.
  43. Knas has 24 hours to refund 30m.
  44. 1 point
    Maybe only making scripts monthly, that way if there's an issue, we can just take it off the market.
  45. Guest

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.