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 Posts

  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. 50m start 3 hours later.... all in yolo for 450m bank loot
  21. Anyone want to mentor me in their way of goldfarming? If you can, PM me your Skype
  22. It could have been worst lol. You could have been simply registering and got given Super, and then ratted out by one of the members so it was either resign with pride or get demoted after how many months of voluntary work >.>
  23. From what I've seen, you guys are doing fine on the disputes themselves :P, it's just the banning that is cause for concern; since anyone found guilty of scamming needs an immediate IP ban (even if it's only temporary) to prevent more members falling victim to them.
  24. Try to be a little bit more specific >post vps stats >who the host is >how many days left
  25. haha we all have those moments XD don't sweat it man.
  26. It should totally be stackable, it would be funny to see Swizz with 10 PiPs.
  27. Understandable if it is a quest item, but buying lobs, sharks, natures, or any other popular item that are being sold on zybez within 1 minute there are 2-3 posts.
  28. bought 6 bonds off him. Best prices and trustworthy fella. A+
  29. What about quests? Edit - Nevermind that had to have been the dumbest thing I could have just asked.
  30. The group you are in has a lot of limits, this being one of them.
  31. So what is the point of OSD? And how do you feel about forum rank rework?
  32. Religion is brainwashing, every week you have to do shit because a book tells you to. We all have a mind to figure things out our self. Learn more about Earth, Biology, Astronomy, Physics, and Atoms. Then question everything your religion tells you.
  33. Nice thread, I agree. +1
  34. They just changed it to unlimited. The rank can stay. But the colored name should go.
  35. LOL

    1 point
    lucky nub ahaa
  36. That snippet works pretty well almost out of the box, native closestAttackableNPCForName is a bit buggy it returns not closest npc but first found in the area and npcs underattack. I ran your snippet on chickens and cows worked pretty flawlessly. I have added isInArea support and replaced isUnderAttack with canAttack also added getFacingId to be on safe side
  37. I'll just leave this here. http://osbot.org/forum/forum/122-
  38. Warned member to post here.
  39. I was going to teach you how to make $5 million just from the Nigerian lottery but fine, be like that
  40. Someone give ma a rendered image.
  41. Okay that sounds good, keep us updated. ;)
  42. I can tell you there was talk about making OSBot more than OSBot, but that was awhile ago. There were some big plans though.
  43. My activity has increased
  44. got a mil bro? just making a new account even like 200k would be fine.

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.