11.05.2010, 18:33
You need to format the string, where the file is located.
Example only:
Код:
if(!fexist(file))
Код:
new file[256]; new name[24]; GetPlayerName(playerid, name, 24); format(string, 256, "my_gamemode/accounts/%s.ini", name); if(!fexists(string)) { //file doesn't exist blah blah } else { login }