17.05.2016, 12:06
That's not how you define the path lol
it's something like this:
it's something like this:
PHP код:
//Top of your script
#define PATH "%s.ini" // change it if you want ..
//Somewhere else
stock UserPath(playerid)
{
new string[128],playername[MAX_PLAYER_NAME];
GetPlayerName(playerid,playername,sizeof(playername));
format(string,sizeof(string),PATH,playername);
return string;
}

