09.07.2014, 07:36
Hi, I have a problem with this code
When I compile the script, It makes the .amx file like 4,1mb, but without the code the .amx file is 76kb, please help me, I really need to fix this.
pawn Код:
public OnPlayerConnect(playerid)
{
new playerName[MAX_PLAYER_NAME];
GetPlayerName(playerid, playerName, MAX_PLAYER_NAME);
new userfile[40];
format(userfile, sizeof(userfile), USER_FILE, playerName);
INI_ParseFile(userfile, "LoadDrugData_%s", .bExtra = true, .extra = playerid);
return 1;
}