24.04.2011, 15:13
try
This will clear the entire array, you will need the strcpy() stock though:
PHP код:
for(new i=0; i<MAX_PLAYERS; i++) strcpy(Password[i], "");
PHP код:
stock strcpy(dest[], source[])
{
new len = strlen(source), i;
for (i = 0; i < len; i ++) dest[i] = source[i];
return 1;
}