04.08.2011, 14:46
Estou fazendo um gangwar mais a entrada ta com umas linhas (3)
Imagem:
Imagem:
pawn Код:
if((classid >= 0) && (classid <= 2)) // Ou Seja Igual й Maior que 0. й Menor й Igual a 2. Ou Seja, 0,1 e 2.
{
gTeam[playerid] = Aztecas;
GameTextForPlayer(playerid,"~n~~n~~n~~b~Varrio Los Aztecas",4000,5);
// Resumindo : Se Escolher a Skin 0,1 e 2 Ele Serб Azteca.
}
if((classid >= 3) && (classid <= 5))
{
gTeam[playerid] = Grove;
GameTextForPlayer(playerid,"~n~~n~~n~~g~Grove",4000,5);
// Resumindo : Se Escolher a Skin 3,4 e 5 Ele Serб Grove.
}
if((classid >= 6) && (classid <= 8))
{
gTeam[playerid] = Policia;
GameTextForPlayer(playerid,"~n~~n~~n~~b~Policia",4000,5);
// Resumindo : Se Escolher a Skin 6,7 e 8 Ele Serб Policia.
}
return 1;
}