21.05.2018, 09:50
Hey Try this one
the warning means you've already have PlayerName
PHP код:
stock PlayerConnect(playerid)
{
new tmp3[50],plName[MAX_PLAYER_NAME],string[128];
GetPlayerName(playerid,plName,MAX_PLAYER_NAME) ;
GetPlayerIp(playerid,tmp3,50);
if(strlen(dini_Get("records.cfg", tmp3)) == 0)
dini_Set("records.cfg", tmp3, plName);
else
{
{
format(string,sizeof(string),"%s,%s", dini_Get("records.cfg",tmp3), plName);
dini_Set("records.cfg", tmp3, string);
}
}
new File: file = fopen("accounts.cfg", io_append);
format(string,sizeof(string),"%s\r\n",plName);
fwrite(file,string);
fclose(file);
return 1;
}