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.

Kramnik

Members
  • Joined

  • Last visited

Everything posted by Kramnik

  1. Gravity is a myth created by bankers and corporations
  2. So by autoclicking you mean clicking same spot or something like ghostmouse? it would be fun if you also used ghost mouse for fletching, crafting and herblore. In general this looks fun project for everyone to see how far autoclickers can get you, goodluck
  3. Kramnik replied to ECOSRS's topic in Goals
    Nice topic. See that you put a lot of effort into making it looking eye pleasing
  4. Aiming for 30-50m/day, maybe 70m if I add my old computer
  5. Hi, how do you use proxies with such heavy farming operation, wont it get ip flagged in couple days and become pretty much useless? 30 cent per proxy is very small amount, so you just throw it away after getting flagged?
  6. Very good guide if safety is your number one priority ?
  7. When I saw title I thought like whaaat kind of treachery is this? Stabing your own kind in the back. But actually this is pretty awesome. Jagex would get thousands of fake reports and that would get them trickier to relay on player reports
  8. Why do want to get banned in the first place?
  9. Personally havent used it very much. What I see from posts from forums it is broken quite often, but probably wouldn't use even if it worked because it would increase PC usage. Currently I have two java processes one is where I have 3 bots on, usage 30-40% CPU and 2GB RAM and other one is just rs login screen and it uses 12% CPU and 600MB RAM. So if you have mirror mode your usage should double which is very bad if you are trying to run a decent farm. But if you are botting main accounts and running two mirror modes it wouldn't have that much impact on pc usage since average pc should run 5+ injected bots, but regarding ban rates it would help So from my perspective mirror mode is useful if you are trying to reduce ban rates as much as you can instead of running big efficient farm.
  10. Nice, this is very smart because your accounts are aging However I havent had time to prepare more accounts Wish your farm best of luck ?
  11. Nice so then I can try to expand my farm Are you botting tut island or 7QP on these accounts? My expansion of farm happend same time I started botting tut island so it was probably causing unexpected quick bans, because after serious ban wave I change my IP, Mac, HWID and delete jagexcache
  12. Wow 3000 users for premium. First I thought it can't be when how many+ users got free scripts with some having 30k+ it could be close also regarding account it heavily depends on method. For what I am doing at the moment for me it is fine to get banned after 24 hours if I suicide because requirements are not that high, but for you yes, there is incentive to stay safer since the higher mining level the more gp you make You said you are running on your home IP, same with me. How many accounts you are running at same time? When I was running 3 everything seemed fine, but when I up'ed to 5-6 unexpected quick ban waves started. However since I started using my made private script will try to retest this in a week or so.
  13. To be clear I am mostly talking about gold farming/suiciding. Currently I am not very strong believer in botting mains It is very bad ods to bot multiple skills, one script would definetily get detected sooner or later. So back to gold farming if you have private script which lets you bot 12 hours for 7 days before getting banned would have big impact on your farm profits instead using free script and get banned after botting after 2 days for botting 12 hours. Also question, anyone using mirror mode for suicide botting?
  14. So you think that bot which would like outside screen, make random 20 second brakes every 5-10 minutes wouldn't have any impact on ban rates? Also as whipz mentioned. The amount of people using it. It should be way easier to detect bot which is used by 1000 accounts than one that is used by 5
  15. Hi guys I just finished my second own made script and now have some questions. First of all, I heard this statement a lot: premium scripts are good, private scripts are best regarding not getting banned. So the question is what is the main reason? Is it because these scripters put a lot of work into making it more sophisticated or is it because it uses unique patterns for the same method and there is only one or few using this exact patern instead of 100 people/accounts using some free script? Second thing is there any reason to try use antiban in your script. For example if I'm creating fletching bot IMO the smartest thing to do would be to implement moveOutsideScreen() so it would look like a person who is afk fletching while using his pc for something else. What are your thoughts about this?
  16. Best Christmas memories was when I already knew that Santa isn't real but had to act to not lose Christmas spirit in the house
  17. Hello, I am working on my first basic script which is fighter. Mainly it is working and doying what I need most - changing combat style according to levels, but the thing is that the script tries to change combat stat every loop. Tried to change sleep time but it either does nothing or messes up whole loop, then the script only attacks new monster when its time to check if combat style is good for level. import com.sun.xml.internal.bind.annotation.OverrideAnnotationOf; import org.osbot.rs07.api.model.NPC; import org.osbot.rs07.api.ui.RS2Widget; import org.osbot.rs07.api.ui.Skill; import org.osbot.rs07.api.ui.Tab; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import org.osbot.rs07.utility.ConditionalSleep; import java.util.Arrays; @ScriptManifest(name = "First one", version = 1.0, info = "", author = "Kramnik", logo = "") public class Main extends Script { String npcName; @Override public int onLoop() throws InterruptedException { if (npcName == null) { if (myPlayer().getInteracting() != null) { npcName = myPlayer().getInteracting().getName(); } else { return 500; } } if (!myPlayer().isAnimating() && myPlayer().getInteracting() == null) { NPC next = getNpcs().closest(npc -> npc.getName().equals(npcName) && npc.isAttackable() && !npc.isUnderAttack() && npc.getInteracting() == null); if (next != null) { next.interact("Attack"); new ConditionalSleep(5000) { @Override public boolean condition() throws InterruptedException { return myPlayer().getInteracting() != null; } }.sleep(); } } int str = getSkills().getDynamic(Skill.STRENGTH); RS2Widget modeStr = getWidgets().get(593, 7); int atk = getSkills().getDynamic(Skill.ATTACK); RS2Widget modeAtk = getWidgets().get(593, 3); int def = getSkills().getDynamic(Skill.DEFENCE); RS2Widget modeDef = getWidgets().get(593, 15); int config = getConfigs().get(43); if (str < 20) { getTabs().open(Tab.ATTACK); sleep(1000); if (config != 1) { modeStr.interact("Slash"); sleep(random(3000, 7000)); } getTabs().open(Tab.INVENTORY); } else if (atk < 20) { getTabs().open(Tab.ATTACK); sleep(1000); if (config != 0) { modeAtk.interact("Chop"); sleep(random(3000, 7000)); } getTabs().open(Tab.INVENTORY); } else if (def < 20) { getTabs().open(Tab.ATTACK); sleep(1000); if (config != 3) { modeDef.interact("Block"); sleep(random(3000, 7000)); } getTabs().open(Tab.INVENTORY); } else { getTabs().open(Tab.ATTACK); sleep(1000); if (config != 1) { modeStr.interact("Slash"); sleep(random(3000, 7000)); } getTabs().open(Tab.INVENTORY); return 25000; } return 500; } } }
  18. Having big problems with login resolver. When you a script brakes or gets ejected out of world because of hoping or smth it often fails to connect back to the game. It starts typing password as login and login as password, also types few symbols tries to login, fails and after sometime script stops and its done. Could run any bot longer than few hours. Anyone else facing this problem?
  19. .

    Kramnik replied to Biologist's topic in Community Discussion
    Well this is question who doesn't have correct answer since no botter knows exactly how Botwatch works. What could be helpful to you is to judge everything by logic. Script is good if it not used massively, doesnt get stuck and has human like paterns. And for skill the more click intense it is the higher the ban rate. If you are doing agility for 1 hour and fletching for 1 hour, which activity would be harder? Jagex pays attention for this, that's why agility and mining has higher ban rates.
  20. Hi guys, I have this problem with failing to resolve login screen. The bot just types few symbols of login/pass tries to login, fails and script stops. Have anyone encountered this problem and know a solution?
  21. Very nice mate, hope you have goodluck with it. One question, I pic of your desktop I see that you have dozens of OSBot clients opened instead of one with multiple bots on it. What are your reasons to do that? Lower CPU usage or more convienient?
  22. Kramnik replied to Molly's topic in Money Making
    Hello, would like to test it. Is is possible to get free trial? Also is there antiban features? How is the ban rates? Is it possible to farm this for long period of times is account somehow prepared not to look very bot like or this is better for suiciding?
  23. Hi guys, quick question about ban rates on weekend. As I read you could have botted from friday evening (if in UK time) till monday morning when Jagex start working, but now I see that from March Jagex has designated employee whom manually bans on weekends his twitter https://twitter.com/jagexacorn?lang=en. Can any one share their experience how suiciding botting on weekends changed? Are you still able to bot through friday evening to monday morning with low ban rates? Thanks
  24. Hi, I got this message today too. So everything was like this, tried to create my 3rd account on this ip since I change it frequenly and got this message. Okay, strange. Then tried to use VPN still that message. Then tried to use my phone with mobile internet still can't register. Then I asked my friend to try and register whom never played runescape at all and still that message! So I gave up and after two hours tried to register and vuola, all good. I think this has nothing to do with your IP or anything, but why this happening still is a mistery
  25. Hi woosh. Question about account creation. Is it enough to just register account or should I complete tutorial island or do even more before botting? What "maturity" date you would suggest. Currently I am testing botting on weekends so already prepared few accounts with tutorial island done for next weekend. Is 1 week enough?

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.