

obasan
Members-
Posts
100 -
Joined
-
Last visited
-
Feedback
0%
Everything posted by obasan
-
Still better than spreading bs
-
If you care about it, don't bot. If you don't care, bot till you become bald like bob the bot And don't listen to @dmmslaver if he posts in this thread
-
I'm not even gonna bother. You are a legit troll. When you move out of your mom's basement, then we can talk.
-
@Imateamcape just roasted the shit out of @dmmslaver and I can't like all of @Imateamcape's posts. I also wanna like @Alek's posts as well. Please give me more likes so I can give it to these warriors!
-
the accounts will last long, only if the user is smart.
-
ur full of shit. botting in 2017 is simple: 1. dont bot on an account you care about because bans are inevitable
-
no u didnt. stfu.
-
Pwned in one line. Now stfu dmmslaver
-
LMFAOOOOOOOOOO so dbuffed messaged mald's wife on facebook asking about mald's mental health???? im crying lmao this is jokes
-
Alright smartass I'll take you up on your offer. Here is my IP: 104.254.92.90 Will I get banned?
-
Lmao you're full of shit. In fact, everything that comes out of your mouth is a crock of shit. The truth is: 1) You are a faggot 2) You are an autistic faggot 3) You are a massive autistic faggot There is no way that you are botting accounts to 99s and 200m exp. This is impossible. There is no way you are farming billions of gp every month. If you were, you wouldn't be on this site and acting like a cunt. Just look at @jackshow. He farms millions of gp and he's barely online. We don't fucking know anything about their anti-cheat system. Everything you consider as "information" is hearsay or inferences. You don't have a shred of data to back up any of your bs claims. "Stop blowing smoke", and go blow some cocks like the faggot you are. @Mods... Sorry if this is offensive but someone needs to tell this idiot to stfu. This entire thread is bs and meritless. I'm a little tired of hearing idiots preach their revolutionary anti-ban system. The truth is simple and I've stated it above.
-
This entire thread is pointless because: We don't know shit about their anti-cheat system, and it certainly doesn't help when every other idiot spams "v ned moar anti-ban in da skriptz". Im not trying to insult anyone here but this is the truth. We don't know shit, and because we don't know what we are up against, we can't do shit. Even private scripts will eventually lead to a ban. It might not be instant - but a ban is inevitable (on a fresh account straight off tut island). Don't bot on an account you care about.
-
I don't get it. Why not just remove the shitty broken scripts? OR Refund the people who bought a broken script I like the current system as is. The devs do the client and the scripters do the scripts. It's simple and it has been relatively successful since forever.
-
lol'd. i might just do that ;)
-
I legit don't understand wtf is the point of them. This is the example code: class Loader extends Thread { public void run() { System.out.println(“Hello”); } } class Program { public static void main(String[] args) { Loader load = new Loader(); //load.setPriority(10); load.start(); } } So what's the point of using Threads? Can somebody please explain the usefulness of this? Are threads good because you can optimize the program and spilt the work between two processors? Or maybe they're good because you can change priority and make certain calculations more important than others? Edit: wtf is the runnable interface? I know its another way of creating threads but whats the point? Please & Thank You
-
bookmarked this beast for later
-
didn't understand shit LMAO. jk i get about 70% of it... nonetheless, i'll continue learning and one day i'll restore botting to its former glory!
-
naw niga java passes by value, not reference. u can add a billion to num, but its still gonna output 5
-
Done with the basics and now I'm on to the big boy stuff (OOP) Can someone eli5 encapsulation, inheritance, polymorphism, and abstraction... Or provide some good material that will explain it in great detail to a complete noob & beginner
-
i will indeed. im learning java from scratch with no prior programming experience. this shit is hard lol.
-
public means that the class or object can be seen by others static has something to do with instantiating or something. fuk lol i forgot the add the horn() so its: public static void horn() { System.out.println("BEEP"); } either way, what does use memory? im guessing its all about calculations and variables you create... i.e. dont use a double when u can get away with an int i.e. find the most effective calculation method
-
By using getters and setters
-
What takes more memory? void horn() { System.out.println("BEEP"); } OOORRRR public static void() { System.out.println("BEEP");} ------ Should you avoid using something like public static void when you can just get away with void??? Thanks!
-
Both articles were an eye opener for me. I had no idea that Java passes by VALUE, NOT REFERENCE. Thanks to everyone who helped!