Quote Originally Posted by Striker View Post
well, I understand now what "break;" does, I don't understand what not make them like a line like so:

function onCreated() {
for (this.num = 0; this.num < 5; this.num--) {
}
}

//#CLIENTSIDE
function onPlayerChats() {
if (player.chat == ":timer") {
player.chat = this.num;
}
}
You keep forgetting that the variables in serverside ARE NOT THE SAME on clientside x.x
And also, the onCreated() function is the first function that gets called...