Jump 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 05/02/15 in all areas

  1. for those of u who are lazy to click a link
  2. Lol, you left the community to become a mod on another community, they declined you and you left them.
  3. who gives 2shits about rs3
  4. 3 points
  5. For my first script for this community, I'll be releasing imBlastFurnace. From my script you will earn the most to near-most efficient XP/hr and GP/hr possible. It will be requested as a premium script for a one time payment of $14.99. Price change may vary based off of community approval. [Logo Coming Soon!] Minimum Requirements: 30 SmithingRecommended Requirements: 30 Crafting 30 Agility 30 Firemaking 30 Strength 50+ - 85 Smithing [For Mithril, Adamantite, and Runite bars] Features: Sleek and descriptive GUI Beautiful in-game painted GUI, optional to minimize, drag, or click and enable other statistics. Statistics to show XP made [smithing, strength, etc] as well as how much profit made based off of GE prices. Ability to complete all jobs if necessary [optional], and only does them if bars are not complete yet. Smart, efficient task handler framework to perform important tasks first before doing other jobs [if you selected jobs]. Support for paying foreman. Coal bag support. Optional use of stamina and energy potions. Optional use for returning after death [won't be added until a later version] Optional ability to stop entirely OR switch type of bar after reaching the required level. Optional anti-ban additives such as AFK intervals and logging out/logging back in after X hours for X minutes/hours. I will soon be posting progress screenshots as well as a progress video on the whole script in its first version as well. Release date: 5/8/15
  6. http://haiimbeast1.wix.com/mayweathervspacquiao You have to exit off the ads over the video
  7. 2 points
    was just wondering if any1 knwos a link that will stream the fight for free.
  8. I usually hit trade and put the items in, hit accept twice.
  9. 2 points
    A* is the most common
  10. getBot().getCanvas().addKeyListener(new KeyListener() { @Override public void keyTyped(KeyEvent e) { } @Override public void keyReleased(KeyEvent e) { } @Override public void keyPressed(KeyEvent e) { } });
  11. 2 points
    I think people pay more for it. I wouldn't!
  12. I'm going to go ahead and lock this because i can most certainly see some incoming posts that may break a rule or two.
  13. Same thing for me, script not working?
  14. Kind of stupid because you can join whatever community you want and be active on all, but whatever. Wb
  15. 2 points
  16. voted staff of air, since i can always rely on him for air runes
  17. 25 minute hacked together Pest Control Script for getting points. Don't hate on how bad it is, I know how bad it is so if you want a better one code it yourself or buy one. (You'll make a much better one if you add randomized pathing, style switching, pray toggling, etc which is why this really badly written one is public) This is what you can expect; - It to get enough damage done if you're a decent level 98% of the time - Not bugging out - So bot-like its a joke - A ban if you use suicide with this and don't manually do a few games every 40-50 runs... What you need to know; - It doesn't spend points - It's a horrible script (Go code your own it'll be better due to the fact this took me under 15 mins to write) That being said here you go; http://multiupload.biz/1ntoz15xlj0i/herpderpPestControl_MultiUpload.biz.jar.html Horrible code; import org.osbot.rs07.api.Interfaces; import org.osbot.rs07.api.map.Position; import org.osbot.rs07.api.model.Entity; import org.osbot.rs07.api.model.NPC; import org.osbot.rs07.api.model.RS2Object; import org.osbot.rs07.api.ui.Message; import org.osbot.rs07.api.ui.Message.MessageType; import org.osbot.rs07.script.MethodProvider; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import java.awt.*; import java.util.Random; @ScriptManifest( author = "54b3ew5vw", info = "PestControl test herp derp", name = "PestControl Afker B", version = 0, logo = "") public class main extends Script { // Npc names String[] pestControlMonsters = {"Brawler","Defiler","Ravager","Shifter","Spinner","Torcher"}; boolean areWeInBoat, didWeArrive, didWeFinish = false; int okset = 0; String status = "Nothing"; //int[] pestControlStarter = {1,2,3,4}; //int[] pestControlMiddle = {10339,1630}; //int[] pestControlBoat1 = {2260,2643,2263,2638}; //int[] pestControlBoat2 = {2637,2647,2641,2642}; //int[] pestControlBoat3 = {2632,2654,2635,2649}; @Override public void onStart() { log("============================="); log("= Starting pest control bot ="); log("============================="); getBot().addMessageListener(this); } private enum State { BOATING, WAITING, MOVING, FINDINGTARGET, KILLING, CAMERAMOVE, MICROWAIT; }; private State getState() { NPC findEnemy = npcs.closest(pestControlMonsters); RS2Object findCauldron = objects.closest("Cauldron"); RS2Object findPlank = objects.closest("Gangplank"); //RS2Object findPlank = objects.closest(9999).getX; if(areWeInBoat == true && findCauldron != null && findPlank != null){ status = "Waiting"; return State.WAITING; } if(findCauldron == null && findPlank == null) { areWeInBoat = false; okset = objects.closest("Lander boat").getY() - myPlayer().getY(); //log (objects.objects.closest("Lander boat").getY()); //log (myPlayer().getY()); if(objects.closest("Lander boat").getY() - myPlayer().getY() < 10){ status = "Moving"; return State.MOVING; } } if (areWeInBoat == false && myPlayer().getY() < 3000 && findPlank != null){ status = "Entering boat"; return State.BOATING; } if (findEnemy != null && !myPlayer().isAnimating() && !myPlayer().isMoving() && !myPlayer().isUnderAttack() && myPlayer().getInteracting() == null){ status = "Finding Target"; return State.FINDINGTARGET; } if (myPlayer().isAnimating() || myPlayer().isUnderAttack() || myPlayer().isMoving() || myPlayer().getInteracting() != null){ status = "Killing"; return State.KILLING; } status = "MicroWaiting"; return State.MICROWAIT; } //@Override //public int onLoop() throws InterruptedException { // NPC findEnemy = npcs.closest(pestControlMonsters); // if (findEnemy != null){ // if (!myPlayer().isAnimating() && !myPlayer().isMoving() && !myPlayer().isUnderAttack() && myPlayer().getInteracting() == null){ // findEnemy.interact("Attack"); // sleep(random(1000, 5000)); // } // } // return random(100, 1000); //} public void onMessage(Message message) { if (message.getType() == MessageType.GAME) { try { if (message.getMessage().contains("You board the lander") || message.getMessage().contains("can't reach that!")) { areWeInBoat = true; } else { // Do nothing } } catch (Exception e) { e.printStackTrace(); } } } @Override public int onLoop() throws InterruptedException { switch (getState()) { case WAITING: sleep(random(300, 750)); //log ("Waiting"); break; case MICROWAIT: sleep(random(10, 100)); break; case BOATING: objects.closest("Gangplank").interact("Cross"); sleep(random(750, 1250)); //log ("Entering boat"); break; case MOVING: int newX = myPlayer().getX() + random(0, 18) - 9; int newY = myPlayer().getY() - random(15, 25); //Position baseObject = objects.closest(9999).getPosition(); //Position towerLeft = new Position((baseObject.getX() - 14), (baseObject.getY() + 14), 0); //Position towerRight = new Position((baseObject.getX() + 11), (baseObject.getY() + 14), 0); //Position towerTopLeft = new Position((baseObject.getX() - 11), (baseObject.getY() + 29), 0); //Position towerTopRight = new Position((baseObject.getX() + 8), (baseObject.getY() + 29), 0); //Position[] newLocation = {new Position(newX, newY, 0)}; if (map.canReach(new Position(newX, newY, 0)) && myPlayer().isMoving() == false){ log("Location; " + newX +"," + newY + ",0"); localWalker.map.walk(newX, newY); log("attempt click"); sleep(random(1000, 1750)); } else { sleep(random(100, 1000)); } break; case FINDINGTARGET: NPC findEnemy = npcs.closest(pestControlMonsters); NPC findPortal = npcs.closest("Portal"); if (findPortal != null && findPortal.isAttackable()){ findEnemy.interact("Attack"); sleep(random(300, 2500)); break; } if (findEnemy != null && findEnemy.isAttackable()){ findEnemy.interact("Attack"); sleep(random(300, 2500)); } else { sleep(random(350, 1250)); } //log("Finding target"); break; case KILLING: sleep(random(500, 3000)); //log("Killing"); break; } return random(200, 800); } @Override public void onExit() { log("YoloSwagAFk"); } @Override public void onPaint(Graphics2D g) { g.drawString("Status: " + status, 200, 328); g.drawString("y difference " + okset, 200, 300); } }
  18. So loads of my clients have been asking me for about a week now when will I be getting windows servers, finally after I have been up for about 24 hours working on servers and setting up servers and fixing updates all that crud I have finally mastered the full windows server configurations. I have ran a few test on loads of my servers and have come to the following conclusion. 1GB 1vCPU Windows server will not run mirror mode 2GB 2vCPU Windows server will run 1-2 Mirror Clients at 100% cpu so wouldn't even purchase a 2vCPU 8GB 4vCPU Windows server will run 2 mirror clients flawless but your already looking at over 100$ monthly for it and it would possible run 3 not even worth the investment unless you are running on hourly billing in which you only pay for what you use so if you are seeing yourself bottom site up in the investment you can easily cut the server off. [updated 5/5/15] Test Below: 2GB/2vCPU Just showing the CPU of the mirror client with no bots running. Test Below: 2GB/2vCPU Might look like its running smooth but its actually stuck with loads of lag! [Method 1OSbot client 2 Rs07 Clients] Update v1- So I was testing out a 2GB 2vCPU Windows 2012, 2 mirror modes 1 used up about 60% CPU and the other pushed it to 100% the lag is outrages and a 2vCPU is not very efficient running 2 mirror modes. Tested by: Oliver on my windows 2GB 2vCPU server. Update v2- So I ran a test today on a 4GB 2vCPU ran 1 mirror client CPU was at 50-60% tried to run another pushed it to 100% the lag was very bad couldn't see any movement what so ever eh pretty much not going to run 2 mirrors on a 4GB 2vCPU Add on- 1 Mirror client ran smoothly with no lag on this the price for a 4GB 2vCPU is 30+, an investment into this would be good if as said before you are using an hourly billing system. Tested by: Myself and a customer. [updated 5/5/15] [2GB/2vCPU] Running 1 mirror client 90%-99% CPU Usage lag spikes here and there. [Method 1 OSbot Client 1 Rs07 Client] https://Rlgkid123-outlook.tinytake.com/sf/MTQ0NjE5XzkwODYyNg How to make mirror mode VPS's affordable and worth paying for. Guide Inside Spoiler
  19. hope to try it out for double nats
  20. <3

    1 point
    Went 0-100 real quick when i saw this
  21. got a $270 win if pacq knocks mayweather out ;)
  22. 1 point
    Will be applying shortly.
  23. Your profit increases 75k+ per hr with bag, probably more so I'd say so.
  24. Would recommend you giving 24 hours free trials first. You're new, I dont think any1 wants to money on a new scripter. And you will have to prove that your script is very efficient since we already have an excellent BlastFurnace script
  25. Strength levels-------------------Max Hit----------------------Weapon 96-99--------------------------25--------------------Abyssal tentacle 92-95--------------------------24--------------------Abyssal tentacle 87-91--------------------------23--------------------Abyssal tentacle 83-85--------------------------22--------------------Abyssal tentacle 79-82--------------------------21--------------------Abyssal tentacle 75-78--------------------------20--------------------Abyssal tentacle 70-74--------------------------19--------------------Abyssal tentacle 66-69--------------------------18--------------------Abyssal tentacle Strength levels------------------Max Hit----------------------Weapon 99------------------------------25----------------------Abyssal whip 95-98--------------------------24----------------------Abyssal whip 90-94--------------------------23----------------------Abyssal whip 86-89--------------------------22----------------------Abyssal whip 81-85--------------------------21----------------------Abyssal whip 77-80--------------------------20----------------------Abyssal whip 73-76--------------------------19----------------------Abyssal whip 68-72--------------------------18----------------------Abyssal whip Strength levels------------------Max Hit----------------------Weapon 97-99--------------------------20----------------------DDS Special Atk 91-96--------------------------19----------------------DDS Special Atk 85-90--------------------------18 ---------------------- DDS Special Atk 79-84--------------------------17----------------------DDS Special Atk 75-78--------------------------16 ----------------------DDS Special Atk 69-74--------------------------15----------------------DDS Special Atk 63-68--------------------------14 ----------------------DDS Special Atk 59-62--------------------------13 ----------------------DDS Special Atk Strength levels-------------------Max Hit----------------------Weapon 95-99---------------------------22----------------------Dragon Scimmy 90-94---------------------------21----------------------Dragon Scimmy 85-89---------------------------20----------------------Dragon Scimmy 81-84---------------------------19----------------------Dragon Scimmy 76-80---------------------------18----------------------Dragon Scimmy 71-75---------------------------17----------------------Dragon Scimmy 66-70---------------------------16----------------------Dragon Scimmy 61-65---------------------------15----------------------Dragon Scimmy Strength levels------------------Max Hit-------------------Weapon 94-99--------------------------11----------------------Kick 84-93--------------------------10----------------------Kick 74-83---------------------------9----------------------Kick 64-73---------------------------8 ----------------------Kick 54-63---------------------------7----------------------Kick 44-53---------------------------6 ----------------------Kick 34-43---------------------------5----------------------Kick 24-34---------------------------4 ----------------------Kick
  26. i screwed up, didn't use agility script! Didn't think I got it, could I just have a few hours? Thanks Khal! You're an amazing help to this site. - Script name: Agility - Your member number: 155755
  27. Yes I am, but its working today
  28. Both will be fixed in the next version
  29. 1 point
    Veteran accounts have login usernames such as "Epsilon" instead of "Epsilon@yahoo.com" I guess some people care about that kind of thing.
  30. okay for fohminer you have to select the ID of the rock (it will highlight in game) and idk about frost miner, im pretty sure you just set up gui and go
  31. im looking for something to bot right now lol not sure
  32. http://proxyelite.ru/en/buy-proxies/tariffs Used this site awhile ago. You can buy 1000+ unique ips with varying ip ranges and ip/password based authentication, all running on stable 100mbps+ connections for as cheap as 20$.
  33. Damn guys just say welcome back or move on. No need to rub it in the guys face..
  34. No nothing will happen to the account as long as you do not login on the bot client and bot on the account just because you login on the IP they will not ban your account but if you bot on it expect a ban.
  35. I think you mean intangible goods. Tangible in this sense usually means it physically exists.
  36. neither.. I would also ask if you would refrain from using such language as I find it quite offensive, especially when my twin brother has down syndrome and is mentally retarded.
  37. 1 point
    "could not load stream library (your os not supported yet)" im talking with both dev now so hopefully i find a fix
  38. User has been online so he had to acknowledge the warning, but ignored the dispute. I went ahead and banned him, I'm sorry for your loss.
  39. 1 point
    Wait wot u srs or trollin OP : Looking great , both of you ^_^
  40. 1 point
    Very cute, can't wait for V.4
  41. 1 point
    I will sponsor your next visit if you slap on video
  42. So after more research in order to run two mirror clients you need at least 4vCPU with 4GB ram or 2GB ram, really the ram does not matter. This is an 8GB windows server with 4vCPU running two Mirror Clients flawless Anything under this you will get severe lag and this server runs for about 120$ or so monthly.
  43. We have a facebook, and a twitter, I don't know the twitter log in information.

Account

Navigation

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.