11/10/2021 16:56
Verifique se está certo outras funções...
Coloque também o tamanho da string na enum, como exemplo acima.
Código PHP:
enum PlayerInfo
{
Nick[24],
Senha[24]
};
new pInfo[MAX_PLAYERS][PlayerInfo];
DOF2_CreateFile(Arquivo);
DOF2_SetString(Arquivo, "Nick", PlayerName(playerid));
DOF2_SetString(Arquivo, "Senha", inputtext);
DOF2_SaveFile();
PlayerName(playerid)
{
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
return name;
}
Coloque também o tamanho da string na enum, como exemplo acima.