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.

NotoriousPP

Trade With Caution
  • Joined

  • Last visited

Everything posted by NotoriousPP

  1. Someone can't count.
  2. At least it's better than the "bug reports" we get from some of our users...
  3. NotoriousPP replied to Mikey's topic in Snippets
    Wait.... Stack traces are a bad thing?!
  4. Take foot. Insert into mouth.
  5. You my sir went full retard. Never go full retard.
  6. @Timekeeper just remember. Keep on, keeping on!
  7. Nope, just another American. :P
  8. I didn't know this has been observed before, but I did notice the connections between my sleep paralysis along with a few other things by myself, especially after I start becoming interested in spiritual matters. I'm not religious, yet I do have a very strong interest in spiritual theory's, like subjects about higher powers, what happens after death, etc. I can complete understand the connection between them, being as my personal belief is that our dreams is another reality, not just some fake world we create in our head. So I can understand being stuck between both realities, resulting in sleep paralysis. Actually this is completely natural. The ability of using your mind is not against nature. It's expanding your current knowledge of the unknown, which is something we should strive for as a human race.
  9. Some epic house shit.
  10. I'm not sure who is mad here. Because I could give two fucks about RuneScape, I'm just here for programming. I simply pointed out your use of imaginary numbers, and horrid vocabulary, that's all.
  11. That was literally one of the funniest dialogs I have ever read. That kid was trolling the fuck out of that bot.
  12. Actually 07 is getting more populated in my opinion. Where are the source of your numbers? Your ass? EDIT: It's spelled "Dying", not DIEING. Dieing means - "To cut, form, or stamp with or as if with a die."
  13. NotoriousPP replied to Swizzbeat's topic in Snippets
    This is what I use for my Polygon areas, it has some extra methods that prove to be useful at times. package tools; import org.osbot.script.rs2.map.Position; import org.osbot.script.rs2.model.Entity; import java.awt.*; /** * Created with IntelliJ IDEA. * User: NotoriousPP * Date: 2/6/14 * Time: 8:53 PM */ public class Area { private Polygon polyArea; public Area(Position... cords){ polyArea = new Polygon(); addPositions(cords); } public Area(int xL, int yL, int xH, int yH){ polyArea = new Polygon(); polyArea.addPoint(xL, yL); polyArea.addPoint(xH, yH); } public boolean contains(Entity e){ return polyArea.contains(e.getX(), e.getY()); } public boolean contains(Position p){ return polyArea.contains(p.getX(), p.getY()); } public Position getCenterTile(){ int lowX = 0, lowY = 0; int highX = 0, highY = 0; for(int i : polyArea.xpoints){ if(lowX == 0 || i < lowX){ lowX = i; } if(highX == 0 || i > highX){ highX = i; } } for(int i : polyArea.ypoints){ if(lowY == 0 || i < lowY){ lowY = i; } if(highY == 0 || i > highY){ highY = i; } } int x = ((highX + lowX)/2), y = ((highY + lowY)/2); return new Position(x,y,0); } public int getLowestX(){ int lowX = 0; for(int i : polyArea.xpoints){ if(lowX == 0 || i < lowX){ lowX = i; } } if(lowX != 0){ return lowX; } return -1; } public int getLowestY(){ int lowY = 0; for(int i : polyArea.ypoints){ if(lowY == 0 || i < lowY){ lowY = i; } } if(lowY != 0){ return lowY; } return -1; } public int getHighestX(){ int highX = 0; for(int i : polyArea.xpoints){ if(highX == 0 || i > highX){ highX = i; } } if(highX != 0){ return highX; } return -1; } public org.osbot.script.rs2.utility.Area getOSArea(){ return new org.osbot.script.rs2.utility.Area(getLowestX(), getLowestY(), getHighestX(), getHighestY()); } public int getHighestY(){ int highY = 0; for(int i : polyArea.ypoints){ if(highY == 0 || i > highY){ highY = i; } } if(highY != 0){ return highY; } return -1; } private void addPositions(Position... positions){ for (Position pos : positions){ polyArea.addPoint(pos.getX(), pos.getY()); } } }
  14. The guy in the middle creeps me the fuck out. That's just me though.
  15. Don't let RuneScape ruin your birthday. Be happy to be alive, because there are a good percent of people who were never able to reach the age, we have been lucky enough to achieve. Be happy to be alive, and that your actually able to lose accounts in RuneScape, because if you weren't here, then you wouldn't have anything to lose. Inner Happiness > Materialistic Happiness
  16. I'm more of a Trance/DnB fan, but at live events I'm a hardstyle fiend. I hardjump all around the stage, you can't rage to any other music like you can to hardstyle.
  17. Good thing I script! Or that would a bad thing! :p Gets me through college doe!
  18. It's my birthday today! If I'm not around a lot today, that's most likely the reason. But I turn 22 today! I'm getting old, it's weird. To bad I gotta wait till the 20th to really go celebrate. By the way, if you rave, and live in southern California, you should go to this: (There will be Hardstyle! ) But, yea! I'm just happy to be alive really, and being lucky enough to live this long!
  19. This is more of laughing of sorts. It sucks yea, but damn they stacked up and I was in a empty world, I couldn't imagine a highly populated world. Haha
  20. You be killin them bots! They sat there the entire time, looping pulling the lever.
  21. Are you still stuck in last year?
  22. I've been listening to this song on repeat for the last 4 days, so I guess you can say its my favorite at the moment.
  23. You have already been caught, and they just waited to implement it; it's called a delayed banned. It happens quite often.
  24. This is what I think of when I hear Game of Thrones...
  25. You do not have 100 post yet.

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.