11.08.2010, 15:47
Ohhh that little but evil error 
Just easy like that:
I think that is the error. Maybe I guess wrong.

Just easy like that:
PHP код:
//Your script:
enum pTeams
{
TEAM_POLICE,
TEAM_SWAT,
TEAM_ARMY,
TEAM_AMCSI,
TEAM_COLUMBIANO,
TEAM_KINA,
TEAM_TERRO, // The little error.. Don't use "," for the last Team.
};
//Should be this:
enum pTeams
{
TEAM_POLICE,
TEAM_SWAT,
TEAM_ARMY,
TEAM_AMCSI,
TEAM_COLUMBIANO,
TEAM_KINA,
TEAM_TERRO // Tada :D
};
I think that is the error. Maybe I guess wrong.