Silly human, I have no need to either eat cheese, or use the bathroom! You're no genius, if you can't realize that! Beep. Also, I thought you quit Zelaron... and what about that challenge? You are a giant pile of avoidance, human. Beep.
|
HA HA HA HA HA HA!
Skurai, choosing to not follow one's orders is something I do quite often. Just because I was asked to make some programs, doesn't mean I'll do it. For one, because I'm not getting paid money and two, I don't feel like it because I'm a college student right now who doesn't have a ton of time anymore.
I never officially quit Zelaron, only messages about not posting as much.
Skurai, next time you try to come back at me, have the facts straight. Because what you wrote doesn't even make sense. In fact, it makes you sound like a complete idiot. Anyone who honestly is trying to convince themselves and others into believing that they're a robot, is a retarded, dumb ass.
I think I'm going to start ignoring you now because you simply aren't even close to my level of intelligence, unlike everyone else on this forum. You're just a kid who hasn't grown up yet and is trying to be annoying because that's all you've been taught.
*sigh* If you were smart enough, you also would have caught the fact that you wrote, "... and," instead of a more robot-esque, "beep beep beep and." So, to me, you've failed at even acting like a robot. I'm off now, won't be back until tomorrow, most likely to
not respond to anything you ask or reply to me.
PHP Code:
<?php
class user {
private $user, $status = 1;
function __construct($name) {
$this->user = $name;
}
public function retrieve($what) {
if ($what == "name") {
return $this->user;
} elseif ($what == "status") {
return $this->status;
}
}
public function set($what,$value) {
if ($what == "name") {
$this->user = $value;
} elseif ($what == "status") {
$this->status = $this->status << $value;
}
}
public function status() {
if ($this->status == 1) {
return $this->user." is a winner!";
} elseif ($this->status == 2) {
return $this->user." is a fail!";
}
}
}
$user = new user("Skurai");
$user->set("status",1);
echo $user->status();
?>
Read that Mr robot, should be easy for you. I just cooked it up while writing this reply.
-----------------------------------
Edit: On a side note, I love the World Record Thread and I have my large avatar back.
Edit: Fixed for mathematics sake.