01.07.2016, 17:26
INI_WriteInt is only for integers. All the variables that are suppose to save as "None" and the player name are strings, so it needs to be INI_WriteString, you also have to include the string size after "None" and the player name.
pawn Код:
INI_WriteString(File,"NormalName",GetPlayerName(playerid, pname, sizeof(pname),MAX_PLAYER_NAME);
INI_WriteString(File,"NormalAbility","None",4);
//etc.