26.02.2013, 19:35
I have made Administration now I need to make a new saving file...
So if I use almost the same saving only with new enmu like gInfo etc
But If I use
Then I got str errors and new are defined multiple times...
So if I use almost the same saving only with new enmu like gInfo etc
But If I use
Then I got str errors and new are defined multiple times...
pawn Код:
stock GPath(playerid)
{
new str[128],name[MAX_PLAYER_NAME];
GetPlayerName(playerid,name,sizeof(name));
format(str,sizeof(str),Path,name);
return str;
}
pawn Код:
stock Path(playerid)
{
new str[128],name[MAX_PLAYER_NAME];
GetPlayerName(playerid,name,sizeof(name));
format(str,sizeof(str),UserPath,name);
return str;
}