Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/02/15 in Posts

  1. Lol, you left the community to become a mod on another community, they declined you and you left them.
    5 points
  2. who gives 2shits about rs3
    4 points
  3. http://haiimbeast1.wix.com/mayweathervspacquiao You have to exit off the ads over the video
    2 points
  4. was just wondering if any1 knwos a link that will stream the fight for free.
    2 points
  5. I usually hit trade and put the items in, hit accept twice.
    2 points
  6. A* is the most common
    2 points
  7. getBot().getCanvas().addKeyListener(new KeyListener() { @Override public void keyTyped(KeyEvent e) { } @Override public void keyReleased(KeyEvent e) { } @Override public void keyPressed(KeyEvent e) { } });
    2 points
  8. I think people pay more for it. I wouldn't!
    2 points
  9. 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.
    2 points
  10. Same thing for me, script not working?
    2 points
  11. Kind of stupid because you can join whatever community you want and be active on all, but whatever. Wb
    2 points
  12. voted staff of air, since i can always rely on him for air runes
    2 points
  13. APA Auto Alcher FREE! _________________________________________________________ Features: Alchs Anything by name Efficient alching to maximise exp rate Allows a target to be specified - once this target is achieved, the script will stop. Available targets: Stop when λ magic exp gained. Stop when magic level λ reached. Stop when λ minutes passed. Informative paint with progress bar Quick and Easy GUI Supports both High & Low Alchemy Optional gaussian-random mouse/camera movements Works with all fire staves, Bryophyta's staff and Tome of Fire Dynamic signatures Things to consider before using: Botting should be a last resort. If you have a good autoclicker, use that! Use generous breaks - it's better to make slow progress over losing your account! Think about where you alch - I cannot say one location is better than another as there isn't (and never will be) any meaningful proof, but some places work better for some than others. Common alching locations include: Inside your POH Pest control bank Grand Exchange Screenshots: Track your progress: Visit http://ramyun.co.uk/alcher/YOUR_NAME_HERE.png Replace 'YOUR_NAME_HERE' with your OSBot username
    1 point
  14. Price: ONLY $8.99 LIFETIME PURCHASE (Click to Purchase) Only have RSGP? Buy an OSBot voucher HERE. COMMENT ON THE THREAD FOR A 1 TIME 24 HOUR TRIAL NOW SUPPORTS AERIAL FISHING! Feature Highlights Selectable Locations / Fish Selectable Drop Methods and Banks Script Speed Customization Other Features DEADMAN MODE SUPPORT: - Will run to closest bank if player is under attack Command-Line Interface (CLI) osFisher currently supports CLI! There is currently 1 parameter required, which is the name of your properties file Example: This will load config.properties from your OSBot/Data/osFisher folder, the properties file can be named whatever you like, in case you would like multiple setups for different bots Feel free to post here / pm me if you are having problems with this feature! Progress Reports Please submit any if you get the chance! PLEASE REPORT ANY BUGS USING THE TEMPLATE BELOW SO THEY CAN BE FIXED ASAP Minnow Support Start script on west side of the expansion platform (left if facing north)
    1 point
  15. 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); } }
    1 point
  16. As always, please update your mirrorclient.jar mirrorclient.zip Release notes: Updated for osrs #78 Fixed worlds api (world hopper should work now) Miscellaneous bugfixes
    1 point
  17. Botting for Sponsor The ultimate sub-goal What? Hi there! My name is VAG and I have currently a goal of 1,000 euros from botting. Decided to make this sub-goal for it - Goal to bot enough GP and sell it to buy Sponsor rank. This will be done with 1-3 accounts running on mirror-mode. Current accounts running 1/3. Why? I really do enjoy the community so I bought a VIP to support this awesome community - Why won't I just buy a sponsor then with my incomes? Well, answer is simple and easy to understand for those who doesn't have mom washing their clothes, doing the dishes or cleaning up the house.. I am a student. I live with approximately 1.100 euros / month, so there is pretty much no extra money for me - parties are an exception. 350 down the throat last night.. Current Progs Accounts Running: 1 out of 3 Accounts Banned: 0 out of 3 Gold made: 5.50M Income per hour: 136,000gp Gold sold: 5.00M Pictures Striving to update daily - Once I hit around 10m wealth will start running 3 accounts on 3 VPS
    1 point
  18. Hey since osrs now has F2P I reckon this will help some people Method Math I just ran it on Ghost control (basic macro) for a hour to test it and made a nice profit buy the items at low end flip prices to maximize profit some screenies of buying prices and stuff could easily be botted, and very easy to code... less than 5mins Extra tip flip some of these yokes If you liked this guide and would like to see more like it, Tap that like button ->
    1 point
  19. 1 point
  20. Yeah it's sick man, alot of people overseas don't get it because there are a lot of UK phrases used
    1 point
  21. I could go for another 5 hours, but I botted for 48 hours straight, its time for a break. Thank you for the trial
    1 point
  22. You said that, and then you said it's still for sale right after? That's really shady lol. Good luck selling tho
    1 point
  23. Gl man, I like how you put pics for the text.
    1 point
  24. Yes. You will end up at about 60 mining if you're going for 100 nugs. It will take a while but is easily semi-afkable when whatching a film or something. When afk-training you should get around 20-25k exp/h. Apaec
    1 point
  25. You'll probably reach about 60ish mining If I remember right
    1 point
  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
    1 point
  27. - Script name: Khal AIO Agility - Your member number: 106209 Really wanting to try one of your scripts before potentially buying multiple. I know I have a lower post count than you asked for, but I've been a member here for over a year, I just don't post much (:
    1 point
  28. - Script : Your RuneCrafting Script - Your member number (hover over your name to see it): 46842 Looking to purchase after trial. Hoping trial could start tomorrow afternoon Thanks!
    1 point
  29. Membership card. i think he has 90 days or 180 idk
    1 point
  30. 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.
    1 point
  31. That is my face when racism comes up in a gun control debate. Away from family for long periods of time, that feeling is horrible I've been an exchange student for the last 6 years.
    1 point
  32. Little Proggy while i was at the gym
    1 point
  33. Good pick. I vote for nobody because I don't know.
    1 point
  34. Tbh i just bought vip to get rid of the fkin ad lmao Mirror client is just the bonus
    1 point
  35. Ah super nice man!
    1 point
  36. it's srs lol I remember 2 years ago when they were both staff
    1 point
  37. Lmao, I hope I get there Duuh, sometime this weekend most likely (without the white edges ofc)
    1 point
  38. We have a facebook, and a twitter, I don't know the twitter log in information.
    1 point
×
×
  • Create New...