27.07.2012, 06:55
pawn Код:
public SaveAccount(playername[])
{
new string3[32];
//GetPlayerName(MAX_PLAYERS, playername, MAX_PLAYER_NAME);
format(string3, sizeof(string3), "users/%s.ini", playername);
new File: hFile = fopen(string3, io_write);
if (hFile)
{
new var[156];
format(var, 32, "BT=%d\n",BT[MAX_PLAYERS]);fwrite(hFile, var);
fclose(hFile);
}
return 1;
}
Quote:
error 032: array index out of bounds (variable "BT") |