SA-MP Forums Archive
[Ajuda] Gangues tdm - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Gangues tdm (/showthread.php?tid=415810)



Gangues tdm - vitorvlv - 14.02.2013

Entгo galera,fui criar gangues para tdm seguindo este tutorial:
https://sampforum.blast.hk/showthread.php?tid=260226
Sу que й o seguinte,todos eles ficam com a skin do cj,e tambйm quando aperto no botгo de spawn nгo spawna .-.

pawn Код:
#define Policia 1
#define Groove 2
pawn Код:
new gTeam[MAX_PLAYERS];
pawn Код:
public OnPlayerSpawn(playerid)
{
if(gTeam[playerid] == Policia) // Se Ele For Aztecas Ele Setarб Pro Local Abaixo :
{
   SetPlayerPos(playerid, 1579.1025,-1636.5018,13.5535); // Setarб Ele Para Estб Posiзгo
   SetPlayerColor(playerid, COLOR_POLICIA); // Setarб a Cor Dele Para AZUL Que й a Cor definida no Topo !
   SetPlayerInterior(playerid,0);
}
if(gTeam[playerid] == Groove) // Se Ele For Grove Ele Setarб Pro Local Abaixo :
{

   SetPlayerPos(playerid, 2511.9834,-1665.1296,13.5757);
   SetPlayerColor(playerid, COLOR_GROOVE); // Setarб a Cor dele Para VERDE Que й a Cor definida no Topo.
   SetPlayerInterior(playerid,0);
}
}
pawn Код:
public OnPlayerRequestClass(playerid, classid)
{

    SetPlayerInterior(playerid,0);
    SetPlayerPos(playerid,-2231.0867,-1739.3457,481.4653);
    SetPlayerFacingAngle(playerid, 7);
    SetPlayerCameraPos(playerid,-2235.7444,-1734.2687,480.8161);
    SetPlayerCameraLookAt(playerid,-2231.0867,-1739.3457,481.4653);
    ApplyAnimation(playerid,"PARK", "Tai_Chi_Loop", 4.0, 1, 0, 0, 0, 0);



if((classid >= 0) && (classid <= 2))  // Ou Seja Igual й Maior que 0. й Menor й Igual a 2. Ou Seja, 0,1 e 2.
{
    gTeam[playerid] = Policia; // Setarб ele Para GANG Aztecas.
    GameTextForPlayer(playerid,"~n~~n~~n~~b~Policia",4000,5); // Irб Aparecer Aztecas Por 4 Segundos.

// Resumindo : Se Escolher a Skin 0,1 e 2 Ele Serб Azteca.
}
if((classid >= 3) && (classid <= 5)) // Ou Seja Igual й Maior que 3. й Menor й Igual a 5. Ou Seja, 3,4 e 5.
{
    gTeam[playerid] = Groove; // Setarб Ele Para a GANG Grove.
    GameTextForPlayer(playerid,"~n~~n~~n~~g~Grove",4000,5); // Irб Aparecer Grove Por 4 Segundos.

// Resumindo : Se Escolher a Skin 3,4 e 5 Ele Serб Grove.
}



}
pawn Код:
//Policiais
    AddPlayerClass(280,1579.1025,-1636.5018,13.5535,90.5415,22,500,27,300,31,600);
    AddPlayerClass(285,1579.1025,-1636.5018,13.5535,90.5415,22,500,27,300,31,600);
    AddPlayerClass(286,1579.1025,-1636.5018,13.5535,90.5415,22,500,27,300,31,600);
    //GROOVE
    AddPlayerClass(105,2511.9834,-1665.1296,13.5757,98.7709,23,500,25,300,30,600);
    AddPlayerClass(106,2511.9834,-1665.1296,13.5757,98.7709,23,500,25,300,30,600);
    AddPlayerClass(107,2511.9834,-1665.1296,13.5757,98.7709,23,500,25,300,30,600);




Re: Gangues tdm - davi54723 - 14.02.2013

Verifique se nгo й nenhuma filter script que ta fazendo isso.


Re: Gangues tdm - vitorvlv - 14.02.2013

Eu nгo uso nenhum filterscript


Re: Gangues tdm - mau.tito - 14.02.2013

Faltou uma parte
Bote o tanto de skin voce quer !
pawn Код:
AddPlayerClass(ID Skin, 0.0, 0.0, 0.0, , 0, 0, 0, 0, 0, 0);

#edit vi que contem, credo to cego.
botou no ongamemodeinit


Re: Gangues tdm - vitorvlv - 14.02.2013

Quote:
Originally Posted by mau.tito
Посмотреть сообщение
Faltou uma parte
Bote o tanto de skin voce quer !
pawn Код:
AddPlayerClass(ID Skin, 0.0, 0.0, 0.0, , 0, 0, 0, 0, 0, 0);

#edit vi que contem, credo to cego.
botou no ongamemodeinit
Aham


Re: Gangues tdm - vitorvlv - 14.02.2013

UP !