16.10.2013, 22:40
// Rename accountInformation to your enum name
for(new accountInformation:i; i < accountInformation; i++)
{
PlayerInfo[playerid][i] = 0;
}
under OnPlayerConnect. This will loop through your enum and reset each variable to 0.
for(new accountInformation:i; i < accountInformation; i++)
{
PlayerInfo[playerid][i] = 0;
}
under OnPlayerConnect. This will loop through your enum and reset each variable to 0.