Posts: 2,286
Threads: 18
Joined: Jun 2010
Quote:
Originally Posted by n0namE
Код:
#define PATH "Korisnici/%s.ini"
stock UserPath(playerid)
{
new string[128],playername[MAX_PLAYER_NAME];
GetPlayerName(playerid,playername,sizeof(playername));
format(string,sizeof(string),PATH,playername);
return string;
}
|
It's because of the format I'm sure. Tried formatting without the define 'PATH' ?