09.11.2013, 15:27
Уже наверное год не работал с файлами и тут затупок...
Файлик не создается. Помогите =(
PHP Code:
case 2:
{
new name[MAX_PLAYER_NAME];
new string[128];
GetPlayerName(playerid,name,MAX_PLAYER_NAME);
format(string,sizeof(string),"%s.ini",name);
ini_createFile(string);
RegisterPlayer(playerid,inputtext);
}
PHP Code:
public RegisterPlayer(playerid,password[])
{
new name[MAX_PLAYER_NAME];
new string[128];
GetPlayerName(playerid,name,MAX_PLAYER_NAME);
format(string,sizeof(string),"%s.ini",name);
new iniFile = ini_openFile (string);
ini_setString(iniFile,"password",password);
ini_closeFile(iniFile);
return true;
}