19.10.2010, 19:07
well you need an array for every player that joins the race so
Код:
new Joined[MAX_PLAYERS]; // at the top of the script Joined[playerid] = 1; // under /race command if(strcmp(cmd, "/go", true) == 0) { for(new i=0; i<MAX_PLAYERS; i++) { if(Joined[i] == 1) { TogglePlayerControllable(i, true); } } return 1; }