Everything posted by NotoriousPP
-
Image for osrskit?
My exact reaction to this post! How did you know?
-
Image for osrskit?
Here you go... http://lmgtfy.com/?q=free+icons
-
Stoners
Wax I haven't actually smoked in over a year, all I do is dab.
-
What makes for good antiban?
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.
-
Anyone know why this might throw an NPE?
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 } }
-
[Flawless] [OSbot 2] Maldesto
Such . 10 out of 10!
-
Warning for 'botting' - Be careful!
Okay I'm going to keep botting. GF
-
Where to apply for Script Writer?
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.
-
Nerdy? Weak? Never popular at school? Then why not become an....
Someone mad?
-
OSBot 2 will be pushed back until Friday, June 20
Oh here Nezz one sec! I have something for you! Sorry I just had to.
-
OSBot 2 will be pushed back until Friday, June 20
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.
-
Stoners
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.
-
Stoners
I program. Helps me maintain my focus.
-
What type of music do you listen to OSBOT?
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).
-
Experience distance (OSB2)
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.
-
Experience distance (OSB2)
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.
-
Experience distance (OSB2)
Once again, it's still not the best solution, like @Swizzbeat said right after me:
-
69
- Trial Mod Vote
Vote @Th3! We need some more staff that actually know how to program, to help issues a lot of the other can't!- Experience distance (OSB2)
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.- Experience distance (OSB2)
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.- Experience distance (OSB2)
int nextLevelXP = getXPForLevel(level); if(currentXP >= nextLevelXP ) nextLevelXP = getXPForLevel(level); Then do that.- Experience distance (OSB2)
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; }- Client Detectable
I fail to see your logic in why you got banned, look at me. I dont remember the last time I played RS legit.- How tall are you?
Hahahahaha that perfectly suits me! - Trial Mod Vote