11.05.2010, 14:26
ae galera eu achei um codigo q salva as gangs mais como e q eu fasso pra carrega elas ?
alguem pode me ajudar ae ?
pawn Код:
//--------SAVEGANG----------------------------------------
new player[MAX_PLAYERS];
GetPlayerName(playerid,player,sizeof(player));
new File:GangFile;
format(string, sizeof(string), "%s", player);
GangFile = fopen(string, io_append);
new var[32];
format(var, 32, "Gang: %s, %d \r\n",gangNames[i],gangInfo[i][0]=1);
fwrite(GangFile, var);
fclose(GangFile);
//-------SAVEGANG------------------------------------------