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.

Pug

Trade With Caution
  • Joined

  • Last visited

Everything posted by Pug

  1. Accounts Currently For Sale: ( Assume all stats are level one unless stated otherwise ) Level 3 Account X 3 Price: 50k OSRS GP Details: - Level 3 - tutorial island completed. - made on: 8th Oct 14 X1 - 21st Oct 14 X2 Skilled Account Price: 500k OSRS GP Details: - Level 3 - tutorial island completed. - Level 50 Woodcutting - made on: 18th October 2014 Each Account comes with the email it was made for. Each Account has the tutorial island finished. Each Account comes with a cool in game name. Each account has been hand made by Pug - no scripts used. Skype: live:pugscripting Terms or Service - By trading with me you agree to the following: - Prices are negotiable though the final say rests with me. - Unless otherwise stated here, terms of service rest solely with me and I am not responsible for anything unless stated here. - Levels can be gained with aid of my scripts or done by hand. - Note prices for levels done by hand will be more expensive. - Should levels be gained by aid of one of my scripts and a ban occurs, initial payment will be refunded in full. - Should levels be gained by aid of one of my scripts and a ban occurs, items/coins/real world cash lost is forfeited and not repayable. - Should levels be gained by hand and a ban occurs no repayment shall be given as it is out of my control; this includes:- - initial payments for asked service - membership spent on account - items of worth on account - coins / gp on account
  2. waiting for new leaks to drop tonight and yes il get the link for you guyzzz. my inbox got raped with pm's earlier, i guess you guys lke Jen alot huh?
  3. now got all of them in one .rar pm if want 500mb of hawtness :P
  4. done, pm'd you guys
  5. uploading them now gimme a min
  6. shes so hawtttt
  7. go on 4chan/b/ its all over there right now, people going nuts, i already downloaded them ;) pm if want
  8. thats some clever shit guys, interesting.
  9. hey pecher, thanks. Yep guna add it all eventually wrote all thats there in one day and since got snowed under with my rc script will add all that you see in my paints later on
  10. after reading all the comment i come to this conclusion. If someone comes at you with a knife and you have your gun drawn, you are going to think do i have time to pull out my tazer and possibly miss before he is on top of me making an attempt on my life. I also agree that a shot to the leg can be hard to make so i would say a lower body shot has the same effect as a leg shot and would have been of equal pain to take down Powell. I stick by my earlier comment though when i said 6 shots, twice to the head (one reported to the back of the head) is excessive force. It would also be interesting to know how many bullets from each officer entered the victim. Also Swizz calm it down a little dude.. some of your comments have been offensive. Here to discuss a issue not shout abuse at one another.
  11. i have to agree with faded. I find it hard to believe you need to shoot someone 6 times when they are not shooting back at you let alone even have a gun. nice to see so many people viewing this thread, lets hear your opinions guys/girls?????
  12. video emerged on youtube showing Powell being shot and killed on the street. ( i only just saw it last night on the fight depot FB page) I found it quite shocking and left me unsure after hearing the original story. I felt he deserved it at first because the official story was he came at police with a knife. Fair play you try to stab a cop your guna get shot. But after seeing the video he is at least 10-12 feet away and didnt have the knife in a overhand position, leading me to believe no lethal force could have been used instead of shooting someone from reasonable close range 6 times, twice in the head. Then to top it off they handcuff the corpse after he is clearly dead. What the fuck is that? thoughts anyway? no racism or hate here please, only serious thoughts. WARNING - MAY BE DISTURBING TO YOUNGER VIEWERS Link:
  13. Pug replied to Pug's topic in Money Making
    yep will have a look at that tonight
  14. just guna put my pound in the tin here. But alcohol actually causes more long term issues than weed, costs more and can kill you. I've read alot about weed and ive not seen a death by it yet. It has been around for centuries and has caused no long term damage in adults. People like to use kids to sell weed as a bad drug. This is because you put any strong substance into a child and it causes bad effects and irregular brain development, thats nothing new and certainly not only the result of weed. In my opinion there is a reason the US is slowly state by state going legal on weed. They know they cant totally destroy it and they know its 1/10 as dangerous as alcohol.
  15. thanks, have a go at it, let me know how you get on
  16. sucksss always sucks to lose your first beast account lol.
  17. its already been banned for near 4 years yet when i log in like you did above i see this:
  18. still waiting on my BEAST of a main with 300M and 24M rc exp to expire, probably wont though...
  19. thanks Hayden, i plan on adding more content to the first post over the coming hours/days will also add example scripts to each section so that people can see it all in the right place. haha jokingggg dont worry all good ^_^
  20. in the scripting section? lawlll you funny ;)
  21. Welcome to my first tutorial. I've seen quite alot of questions round the forums as of late regarding paints and little miss-haps members are having. I'd like to think paints for my script have always been pretty snazzy and informative. Now its time to make everyone's paint a bit more special. I'l be covering some methods that have since been included into the API but i like to calculate them myself as it keeps you're brain active and is generally good coding practice to do as much as you can yourself. All my tutorials are given in laymens terms to help those with no experience. Area's Covered In This Tutorial: Script Running Time Xp Gained Showing Levels Adding Gold Made Adding Gold Made Per Hour Adding a background Image Percent To Next Level Time Until Next Level Will add more later Like this post if it helped
  22. here, example usage of how to hide a paint: declare your hide and show images at the top of your script with your variables: private final Image showImage = getImage("http://s28.postimg.org/hcce8fx9l/show_fw.png"); private final Image hideImage = getImage("http://s29.postimg.org/8g0qpcipv/hide_fw.png"); you need a tiny method to grab images from the internet, so put this below the above: private Image getImage(String url) { try { return ImageIO.read(new URL(url)); } catch (IOException e) {} return null; } next you need to declare your point to click on so put this below the above with your other variables ^ : Point p; next you need your boolean for whether your paint is hidden or not and declare it, put this below the above: boolean hide = false; next you need two rectangles, one for where you click to hide the paint and the next for where you click to show it, declare these with your variables to: (check the api to find out which numbers are which) Rectangle close = new Rectangle(10, 457, 118, 20); Rectangle open = new Rectangle(10, 457, 118, 20); now in your onStart() method you need to put this: bot.addMouseListener(new MouseListener() {//register a new MouseListener @Override public void mouseClicked(MouseEvent e) { p = e.getPoint(); if (close.contains(p) && !hide) { hide = true; } else if (open.contains(p) && hide) { hide = false; } } @Override public void mousePressed(MouseEvent e) { } @Override public void mouseReleased(MouseEvent e) { } @Override public void mouseEntered(MouseEvent e) { } @Override public void mouseExited(MouseEvent e) { } }); next you need to sort out your onPaint method, so that you have two if statements like this: public void onPaint(Graphics2D g) { Graphics2D gr = g; if (!hide) { // put your paint in here e.g: g.drawString(ft(timeRan), 295, 349); } if (hide) { // here you put the image to show when your paint is hidden e.g: g.drawImage(this.showImage, 10, 457, null); } } if you have any more questions, pm me. a like for this post wouldnt go a miss it took a little while lol.
  23. in my own opinion as Laz has stated above. The most effective weapon Jagex has against bots is simply analysing an account and looking for a few key things. Logged in time, What the player has been doing for the last 12 hours. I'm sorry but if you have been botting one skill since the creation of your account with no breaks you are asking for a insta-ban. Randomization is the key to keeping your account. An example perhaps? say I'm runecrafting, i want 1-44 rc asap. A real player isnt going to spend roughly 13 hours making airs/fires in one go, it simply wouldn't happen. So maybe you need to think i know i am going to go and train my agility so i can run longer. Or i know im going to have a break and go and quest. Or simple things as daft as that might sound go and sit in the bank talking to people. Having no friends on your list and not saying a word for 24 hours wouldnt happen either. Just a touch of common sense can help. On all of the above i think its really good content, keep the thread up and going, Pug
  24. Pug replied to PwneRL33T's topic in Scripting Help
    declare a path: Position [] path1 = { new Position(x co-ord, y co-ord, z co-ord), new Position(x co-ord, y co-ord, z co-ord), new Position(x co-ord, y co-ord, z co-ord), }; Example walking method as posted by me some weeks ago: public void walkPath(Position[] path) throws InterruptedException { for (Position p : path) { if ((myPosition().distance(p) <= 16) && (myPosition().distance(p) >= 3)) { boolean success; do { success = walkTile(p); } while (!success); } } } public boolean walkTile(Position p) throws InterruptedException { if (myPosition().distance(p) > 13) { Position pos = new Position( (p.getX() + myPosition().getX()) / 2 + MethodProvider.random(-3, 3), (p.getY() + myPosition().getY()) / 2 + MethodProvider.random(-3, 3), myPosition() .getZ()); walkTile(pos); } for (int i = 0; i < 2; i++) { mouse.click(new MiniMapTileDestination(bot, p), false); } mouse.click(new MiniMapTileDestination(bot, p), false); int fail = 0; while ((myPosition().distance(p) > 2) && (fail < 10)) { MethodProvider.sleep(500L); if (!myPlayer().isMoving()) { fail++; } } return fail != 10; } example use: walkPath(path1); if ((settings.getRunEnergy() > 20 +gRandom(1,10)) && (!settings.isRunning())) { run(); } run method if you want it: private void run() throws InterruptedException { if(configs.isSet(173, 0)) { Rectangle localRectangle = new Rectangle(570, 127, 20, 20); mouse.click(new RectangleDestination(bot, localRectangle), false); sleep(800); } } you are most welcome. Please try to search the forum before asking questions in the future all the content above has been posted to help new member such as yourself before numerous times.
  25. Pug replied to Mikasa's topic in Farewells
    never spoke to you but, ive felt the same as of late. bye. never spoke to you but, ive felt the same as of late. bye.

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.