16.12.2013, 18:28
I'm not sure is this your problem, but it would be easier if you would put
if this doesn't change anything, try to divide your code into small pieces and add SendClientMessage or print to send the message so you can see which parts actually work. I hope I helped you little bit.
EDIT: I think your problem is that you are using sizeof and you have no brackets after it, so everything in the code that is written after your sizeof will be checked as it would be inside the brackets.
Код:
for(new i = 0; i < 3; i++)
{
rand[i] = random(3);
// rest of the code
EDIT: I think your problem is that you are using sizeof and you have no brackets after it, so everything in the code that is written after your sizeof will be checked as it would be inside the brackets.

