24.07.2014, 05:55
Not sure if this is right-.. playerids do change, depending on the IP, it should be the player's name, not ID.
New:
Try it and lemme know how it goes.
pawn Код:
INI_ParseFile(WepPath(playerid), "LoadUser_%s", .bExtra = true, .extra = playerid);
pawn Код:
stock PlayerName(playerid)
{
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, MAX_PLAYER_NAME);
return name;
}
pawn Код:
INI_ParseFile(WepPath(playerid), "LoadUser_%s", .bExtra = true, .extra = PlayerName(playerid));