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.

NotoriousPP

Trade With Caution
  • Joined

  • Last visited

Everything posted by NotoriousPP

  1. My exact reaction to this post! How did you know?
  2. Here you go... http://lmgtfy.com/?q=free+icons
  3. NotoriousPP replied to TheReconCheck's topic in Archive
    Wax I haven't actually smoked in over a year, all I do is dab.
  4. I agree with @Swizzbeat, I've seen countless pictures, and even had the chance to fuck with bots who using some type of message response, for example using CleverBot. You can obviously tell it's a bot by the way they respond. I even saw on bot who said a random word every 20 minutes or so, and that was a horrid Idea, because every time I asked what the fuck, it never responded. I feel you have more of a chance getting banned trying to talk back, than if you just ignored them, because honestly, it's not hard to outsmart a bot, and it could cause some issues down the road.
  5. public void sleepFor(int min, int max) throws InterruptedException,NullPointerException { sA.sleep(MethodProvider.random(min, max)); } Not sure why you have this throwing a NullPointerException? Also sleep is a static method, so just call it like MethodProvider.sleep(int); Just do this instead of having it throw a InterruptedExeption; not sure the exact situation you need this for, but this should work for you: public void sleepFor(int min, int max) { try { MethodProvider.sleep(MethodProvider.random(min, max)); } catch (InterruptedException e) { //Catch method } }
  6. Such . 10 out of 10!
  7. Okay I'm going to keep botting. GF
  8. You make a thread for your script request here: http://osbot.org/forum/forum/181-sdn-upload-requests/ Once you have your script on the SDN you will get the rank! After than you can apply to be a OSD, or just do really well and get it rewarded to you. Then you go for scholar when you really know your shit. That's the OSBot ranking system in a nutshell, hope it helps.
  9. Oh here Nezz one sec! I have something for you! Sorry I just had to.
  10. The whole point it isn't the same thing, though users wouldn't understand what I'm saying, if they did they would be writing them.
  11. NotoriousPP replied to TheReconCheck's topic in Archive
    I can see where you coming from especially with your friends changing; though personally, if you friends and family start to see changes in you while when using it, you either need to stop like you were implying, or learn to control your usage. I've been smoking instead of taking prescripts for years now, and honestly ask a few of my friends, they always have told me I haven't changed since HS, yet they don't know I smoke either. I will not let being high become a problem for me, honestly I start to see a potential negative side to my actions or how I feel, I just take a break and cut back. I don't think a drug should ever change who you are, just enhance how you live, just never let it become a problem. I know not everyone has I mindset like I do, but I really don't ever see me quitting because it's honestly how I get most of my work done, and most of the time it's better quality than If I did the same job sober, I know it's not that way for everyone, but it is for me.
  12. NotoriousPP replied to TheReconCheck's topic in Archive
    I program. Helps me maintain my focus.
  13. I don't enjoy dubstep much but I do really enjoy electronic music but more along the lines of DnB, Hardstyle, Minimal Tech, and Trance. Though DnB and Trance are the most dominant in my playlists. Here's what I usually listen to as I script, my favorite DnB channel on youtube (Liquicity).
  14. Well considering were playing RuneScape, and I can run my method in a onLoop for a 8 hour run without it crashing or seeing a noticeable difference, just kinda of shows how unneeded using a static arrays is.
  15. I just don't understand why were arguing over a few bytes of difference here.... Because OP has it set in his head that that is the best way, it must be the best way.
  16. Once again, it's still not the best solution, like @Swizzbeat said right after me:
  17. 69

    NotoriousPP replied to thepecher's topic in Runescape
  18. Vote @Th3! We need some more staff that actually know how to program, to help issues a lot of the other can't!
  19. Well using it correctly, and I mean by not calling every time onLoop or onPaint, it will literally amount to a minuscule difference in usage. So I don't see the point in looking like a idiot who recorded all the level XP, and stored them in a int[], when you can use less code, and achieve the same job, but dynamically, and not by hard coding which is a common bad practice. But don't listen to me, I don't know anything.
  20. That was pseudo-code, so I really don't think I need to add a ternary to that. Honestly Im just saying this: private final static int[] XP = { 0, 83, 174, 276, 388, 512, 650, 801, 969, 1154, 1358, 1584, 1833, 2107, 2411, 2746, 3115, 3523, 3973, 4470, 5018, 5624, 6291, 7028, 7842, 8740, 9730, 10824, 12031, 13363, 14833, 16456, 18247, 20224, 22406, 24815, 27473, 30408, 33648, 37224, 41171, 45529, 50339, 55649, 61512, 67983, 75127, 83014, 91721, 101333, 111945, 123660, 136594, 150872, 166636, 184040, 203254, 224466, 247886, 273742, 302288, 333804, 368599, 407015, 449428, 496254, 547953, 605032, 668051, 737627, 814445, 899257, 992895, 1096278, 1210421, 1336443, 1475581, 1629200, 1798808, 1986068, 2192818, 2421087, 2673114, 2951373, 3258594, 3597792, 3972294, 4385776, 4842295, 5346332, 5902831, 6517253, 7195629, 7944614, 8771558, 9684577, 10692629, 11805606, 13034431 }; Is fugly as fuck, and no wants to see that. If you know how to decently program you can figure the rest out using my method, I don't see a need to argue.
  21. int nextLevelXP = getXPForLevel(level); if(currentXP >= nextLevelXP ) nextLevelXP = getXPForLevel(level); Then do that.
  22. Oh god I feel bad to who ever used this.... If your hard coding something, your probably doing it wrong. //XP for level public int getXPForLevel(int level) { int points = 0; int output = 0; for (int lvl = 1; lvl <= level; lvl++) { points += Math.floor((double) lvl + 300.0 * Math.pow(2.0, (double) lvl / 7.0)); if (lvl >= level) return output; output = (int) Math.floor(points / 4); } return 0; }
  23. I fail to see your logic in why you got banned, look at me. I dont remember the last time I played RS legit.
  24. Hahahahaha that perfectly suits me!

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.