14.10.2009, 17:01
Alright, looking at your enum, I can already assume whats wrong. So, lets have a closer look.
You use a comma and another one.. until you reach the end.
E.g:
Well, I am sure you will figure your problem alone by now.
Код:
This symbol indicates that there is more variables within the enum: ,
E.g:
pawn Код:
enum pInfo
{
pID, // We want another variable, comma at the end
pKillerID, // We want another variable, comma at the end
pFaction, // We want another variable, comma at the end
pAdmin // We dont want another variable, no comma
};