19.10.2014, 02:39
add this function above ur mode
EDIT:forgot to close the statement "[/pawn]"
pawn Код:
stock UserPath(playerid)
{
new string_path[ 128 ],player_name[ MAX_PLAYER_NAME ];
GetPlayerName( playerid, player_name, MAX_PLAYER_NAME );
format( string_path, sizeof ( string_path ), "%s.ini ", player_name);
//you can change it to your account directory ex:"Accounts\%s.ini"
return string_path;
}