Quote:
Originally Posted by fowlplay4
You don't need an if statement, just use a timeout.
PHP Code:
function onCreated() {
onTimeout();
}
function onTimeout() {
this.chat = "Message1";
sleep(3);
this.chat = "Message2";
setTimer(3);
}
I'm pretty sure you've been told this before but use 2 equal signs instead of one in an in if statement. I.e. if (this.variable == 1) { // stuff
|
Oh, Duh. Wow, Can't believe I didn't think of that x.x Thanks=P
And yeah I have, But it works either way:P
Thanks again