Thank You.
I don't want to start new topic, so i have one more question here. You know, when we need to save some temporary data about players, most of us probably use something like this:
Code:
new Players[33];
public client_connect(id) {
if(...) Players[id] = 1;
}
But i can't get, what i should do, if i want to assign longer values to array like one above. I mean, i want to save numbers like 4 digits or longer. But this one saves only first digit.