Jump to content

NotoriousPP

Trade With Caution
  • Posts

    1217
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

Everything posted by NotoriousPP

  1. 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.
  2. Oh here Nezz one sec! I have something for you! Sorry I just had to.
  3. 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.
  4. 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).
  5. 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.
  6. 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.
  7. Once again, it's still not the best solution, like @Swizzbeat said right after me:
  8. Vote @Th3! We need some more staff that actually know how to program, to help issues a lot of the other can't!
  9. 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.
  10. 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.
  11. int nextLevelXP = getXPForLevel(level); if(currentXP >= nextLevelXP ) nextLevelXP = getXPForLevel(level); Then do that.
  12. 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; }
  13. I fail to see your logic in why you got banned, look at me. I dont remember the last time I played RS legit.
  14. Something looks off.... Oh wait, that's what it is... Much much better!
  15. That actually because if you have a OS2 script in your scripts folder it throws errors when trying to load OS1; if you would like to test, just add the script, run it in OS2, after your done, just delete the OS2 scripts from your scripts folder, and you can load OS1 again.
  16. Add me on skype! notoriouspp I'm free right now!
  17. Support! I miss talking to Pika in the chatroom!
  18. I do enough gfx, I thought not why show some of it off. I may not be the best, but then again this is also just a hobby of mine, I much rather spend my time programming, but art gives me a place to vent and cool off when I'm overwhelmed with scripting or just rather do something else. Just made this in PS a little while ago for my new scripting group. What do you guys think? I'm open for critique as well!
  19. Welcome, don't worry about all these kids being negative, they are still pissed over being banned. Just be like me, over here 1000 levels later still botting! If you ever need anything, feel free to hit me up!
  20. If you ever need help as well, feel free to hit me up on Skype, just my hours on there are somewhat sporadic. Skype: notoriouspp
  21. Hey guys, should I drink a Baja Blast or Dr.Pepper? Real talk.
×
×
  • Create New...