02.05.2011, 20:16
pawn Код:
enum Groups
{
Zombie,
Humano,
};
pawn Код:
new Informacoes[MAX_PLAYERS][Groups];
pawn Код:
if(strcmp("/serzombie", cmdtext, true) == 0)
{
Informaзхes[playerid][Zombie] = 1;
SendClientMessage(playerid, CorZ, "Vocк virou zombie e.e!");
return 1;
}
pawn Код:
if(strcmp("/serhumano", cmdtext, true) == 0)
{
Informaзхes[playerid][Humano] = 1;
SendClientMessage(playerid, CorH, "Vocк virou humano ^^!");
return 1;
}