Guest User

Ajuda SAMP Foruns '-'

a guest
Oct 28th, 2011
341
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 244.21 KB | None | 0 0
  1. public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
  2. {
  3.     TogglePlayerControllable(playerid, 1);
  4.     new string[128];
  5.     new playername[MAX_PLAYER_NAME];
  6.     GetPlayerName(playerid,playername,sizeof(playername));
  7.     if(dialogid == 1)
  8.     {
  9.         if(response == 0)
  10.         {
  11.             SendClientMessage(playerid, TEAM_VAGOS_COLOR, "Ok, Caso queira fazer login posteriormente use /logar [senha]!");
  12.             return 1;
  13.         }
  14.         if(response >= 1)
  15.         {
  16.             if(strlen(inputtext) == 0)
  17.             {
  18.                 //SetPlayerCameraPos(playerid,1463.9277,-1043.5249,31.3181);
  19.                 //SetPlayerCameraLookAt(playerid,1461.7306,-1014.2181,26.6566);
  20.                 //SetPlayerPos(playerid,1424.6486,-1020.7975,23.8281);
  21.                 new loginstring[256];
  22.                 new loginname[64];
  23.                 GetPlayerName(playerid,loginname,sizeof(loginname));
  24.                 SendClientMessage(playerid, 0x00F0F0AA, "Seu nick está registrado, é só Logar");
  25.                 SendClientMessage(playerid, 0x00F0F0AA, "Caso erre a senha 5 vezes, terá o ip banido");
  26.                 format(loginstring,sizeof(loginstring),"{33CCFF}\n\n{33FF00}{f7f7f7}%s{33FF00} Bem Vindo(a)\n\n{33FF00}Sua conta está Registrada! \n\n{33FF00}Por favor logue na sua conta!!\n\n{33CCFF}",loginname);
  27.                 ShowPlayerDialog(playerid, 1, DIALOG_STYLE_INPUT,"{FFFF00}Brasil Games Living || The Return",loginstring,"Logar","Sair");
  28.                 return 1;
  29.             }
  30.             format(gstring,sizeof(gstring),"/logar %s",inputtext);
  31.             OnPlayerCommandText(playerid,gstring);
  32.             return 1;
  33.         }
  34.         return 1;
  35.     }
  36.     if(dialogid == 10101)
  37.     {
  38.         if(response)
  39.         {
  40.             new Float:X, Float:Y, Float:Z, Float:angle;
  41.             if(strlen(inputtext) < 1 || strlen(inputtext) > 8) return SendClientMessage(playerid, 0xAFAFAFAA, "Texto Invalido.");
  42.             else
  43.             {
  44.                 format(string, sizeof(string), "Você mudou o texto de sua placa para '%s'.", inputtext);
  45.                 SendClientMessage(playerid, 0x33CCFFAA, string);
  46.                 GetPlayerPos(playerid, X, Y, Z);
  47.                 GetPlayerFacingAngle(playerid, angle);
  48.                 SetVehicleNumberPlate(GetPlayerVehicleID(playerid), inputtext);
  49.                 SetVehicleToRespawn(GetPlayerVehicleID(playerid));
  50.                 GetPlayerPos(playerid, X, Y, Z);
  51.                 SetVehiclePos(GetPlayerVehicleID(playerid), X, Y, Z);
  52.                 SetVehicleZAngle(GetPlayerVehicleID(playerid), angle);
  53.                 PutPlayerInVehicle(playerid, GetPlayerVehicleID(playerid), 0);
  54.                 SetVehiclePos(GetPlayerVehicleID(playerid), X, Y, Z+2);
  55.             }
  56.         }
  57.         return 1;
  58.     }
  59.     if(dialogid == 10102)
  60.     {
  61.         if(response)
  62.         {
  63.             if(listitem == 0)
  64.             {
  65.                 OnPlayerCommandText(playerid,"/batercartao");
  66.                 TogglePlayerControllable(playerid, 1);
  67.             }
  68.             if(listitem == 1)
  69.             {
  70.                 OnPlayerCommandText(playerid,"/equipar");
  71.                 TogglePlayerControllable(playerid, 1);
  72.             }
  73.             if(listitem == 2)
  74.             {
  75.                 OnPlayerCommandText(playerid,"/batalha");
  76.                 TogglePlayerControllable(playerid, 1);
  77.             }
  78.             if(listitem == 3)
  79.             {
  80.                 OnPlayerCommandText(playerid,"/rbatalha");
  81.                 TogglePlayerControllable(playerid, 1);
  82.             }
  83.             if(listitem == 4)
  84.             {
  85.                 OnPlayerCommandText(playerid,"/procurados");
  86.                 TogglePlayerControllable(playerid, 1);
  87.             }
  88.             if(listitem == 5)
  89.             {
  90.                 SetPlayerPos(playerid,788.7529,1693.6383,8.1822);
  91.                 SetPlayerInterior(playerid,0);
  92.                 TogglePlayerControllable(playerid, 1);
  93.             }
  94.         }
  95.         return 1;
  96.     }
  97.     if(dialogid == DIALOGID2)
  98.     {
  99.         if(response)
  100.         {
  101.             if(listitem == 0)
  102.             {
  103.                 SetPlayerFightingStyle (playerid, FIGHT_STYLE_ELBOW);
  104.                 PlayerInfo[playerid][pLuta] = 1;
  105.                 fBizzInfo[1][fbTill] += 1000;
  106.             }
  107.             if(listitem == 1)
  108.             {
  109.                 SetPlayerFightingStyle (playerid, FIGHT_STYLE_BOXING);
  110.                 PlayerInfo[playerid][pLuta] = 2;
  111.                 fBizzInfo[1][fbTill] += 1000;
  112.             }
  113.             if(listitem == 2)
  114.             {
  115.                 SetPlayerFightingStyle (playerid, FIGHT_STYLE_GRABKICK);
  116.                 PlayerInfo[playerid][pLuta] = 3;
  117.                 fBizzInfo[1][fbTill] += 1000;
  118.             }
  119.             if(listitem == 3)
  120.             {
  121.                 SetPlayerFightingStyle (playerid, FIGHT_STYLE_KNEEHEAD);
  122.                 PlayerInfo[playerid][pLuta] = 4;
  123.                 fBizzInfo[1][fbTill] += 1000;
  124.             }
  125.             if(listitem == 4)
  126.             {
  127.                 SetPlayerFightingStyle (playerid, FIGHT_STYLE_KUNGFU);
  128.                 PlayerInfo[playerid][pLuta] = 5;
  129.                 fBizzInfo[1][fbTill] += 1000;
  130.             }
  131.             if(listitem == 5)
  132.             {
  133.                 SetPlayerFightingStyle (playerid, FIGHT_STYLE_NORMAL);
  134.                 PlayerInfo[playerid][pLuta] = 6;
  135.                 fBizzInfo[1][fbTill] += 1000;
  136.             }
  137.         }
  138.         return 1;
  139.     }
  140.     if(dialogid == DIALOGID)
  141.     {
  142.         if(response)
  143.         {
  144.             if(listitem == 0) //Pintura
  145.             {
  146.                 ShowPlayerDialog(playerid, DIALOGID+1, DIALOG_STYLE_LIST, "Selecione a Pintura", "Pintura 1\nPintura 2\nPintura 3\nVoltar", "Selecionar", "Sair");
  147.             }
  148.             if(listitem == 1) //Cores
  149.             {
  150.                 ShowPlayerDialog(playerid, DIALOGID+2, DIALOG_STYLE_LIST, "Selecione a Cor", "Preto\nBranco\nVermelho\nAzul\nVerde\nAmarelo\nRosa\nMarrom\nVoltar", "Selecionar", "Sair");
  151.             }
  152.             if(listitem == 2) //Escapamentos
  153.             {
  154.                 ShowPlayerDialog(playerid, DIALOGID+3, DIALOG_STYLE_LIST, "Selecione o Escapamento", "Roda arco Alien Escapamento\nRoda arco Fluxo-X Escapamento\nLocos Cromagem baixa Escapamento\nLocos baixa Slamin Escapamento\nVoltar", "Selecionar", "Sair");
  155.             }
  156.             if(listitem == 3) //Para-Choque Dianteiro
  157.             {
  158.                 ShowPlayerDialog(playerid, DIALOGID+4, DIALOG_STYLE_LIST, "Selecione o Para-Choque Dianteiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  159.             }
  160.             if(listitem == 4) //Para-Choque Traseiro
  161.             {
  162.                 ShowPlayerDialog(playerid, DIALOGID+5, DIALOG_STYLE_LIST, "Selecione o Para-Choque Traseiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  163.             }
  164.             if(listitem == 5) //Teto Solar
  165.             {
  166.                 ShowPlayerDialog(playerid, DIALOGID+6, DIALOG_STYLE_LIST, "Selecione o Teto Solar", "Roda arco Alien Teto Solar\nRoda arco Fluxo-X Teto Solar\nLocos Baixa Hardtop Teto Solar\nLocos Baixa Softtop Teto Solar\nVoltar", "Selecionar", "Sair");
  167.             }
  168.             if(listitem == 6) //Aérofólio
  169.             {
  170.                 ShowPlayerDialog(playerid, DIALOGID+7, DIALOG_STYLE_LIST, "Selecione o Aérofólio", "Alien Aérofólio\nFluxo-X Aérofólio\nVoltar", "Selecionar", "Sair");
  171.             }
  172.             if(listitem == 7) //Saia
  173.             {
  174.                 ShowPlayerDialog(playerid, DIALOGID+8, DIALOG_STYLE_LIST, "Selecione a Saia", "Roda arco Alien Saia\nRoda arco Fluxo-X Saia\nLocos Cromagem baixa Tira\nLocos Cromagem baixa Chamas\nLocos Cromagem baixa arcos\nLocos Cromagem baixa Trim\nLocos baixa Roda de cobre\nVoltar", "Selecionar", "Sair");
  175.             }
  176.             if(listitem == 8) //Bullbars
  177.             {
  178.                 ShowPlayerDialog(playerid, DIALOGID+9, DIALOG_STYLE_LIST, "Selecione a Bullbar", "Locos Cromagem baixa Grade\nLocos Cromagem baixa Bars\nLocos Cromagem baixa Luzes\nLocos Cromagem baixa Bullbar\nVoltar", "Selecionar", "Sair");
  179.             }
  180.             if(listitem == 9) //Rodas
  181.             {
  182.                 ShowPlayerDialog(playerid, DIALOGID+10, DIALOG_STYLE_LIST, "Selecione o Tipo da Roda", "Offroad\nMega\nWires\nTwist\nGrove\nImport\nAtomic\nAhab\nVirtual\nAccess\nProxima Página\nVoltar", "Selecionar", "Sair");
  183.             }
  184.             if(listitem == 10) //Volume do rádio
  185.             {
  186.                 ShowPlayerDialog(playerid, DIALOGID+11, DIALOG_STYLE_LIST, "Selecione o Volume do Rádio", "Alto\nSuper Alto\nUltra Alto\nKing Alto\nVoltar", "Selecionar", "Sair");
  187.             }
  188.             if(listitem == 11) //Tunar menu do carro
  189.             {
  190.                 ShowPlayerDialog(playerid, DIALOGID+12, DIALOG_STYLE_LIST, "Tunar carro", "Suspenção\nNitro x10\nArrumar o Carro\nVoltar", "Selecionar", "Sair");
  191.             }
  192.             if(listitem == 12) //Rodas 2
  193.             {
  194.                 ShowPlayerDialog(playerid, DIALOGID+13, DIALOG_STYLE_LIST, "Selecione o tipo da Roda", "Trance\nShadow\nRimshine\nClassic\nCutter\nSwitch\nDollar\nVoltar", "Selecionar", "Sair");
  195.             }
  196.        }
  197.     }
  198.     if(dialogid == DIALOGID+1) //Pintura
  199.     {
  200.         if(response)
  201.         {
  202.             if(listitem == 0)
  203.             {
  204.                 if(pmodelid[playerid] == 562 ||
  205.                 pmodelid[playerid] == 565 ||
  206.                 pmodelid[playerid] == 559 ||
  207.                 pmodelid[playerid] == 561 ||
  208.                 pmodelid[playerid] == 560 ||
  209.                 pmodelid[playerid] == 575 ||
  210.                 pmodelid[playerid] == 534 ||
  211.                 pmodelid[playerid] == 567 ||
  212.                 pmodelid[playerid] == 536 ||
  213.                 pmodelid[playerid] == 535 ||
  214.                 pmodelid[playerid] == 576 ||
  215.                 pmodelid[playerid] == 558)
  216.                 {
  217.                     new car = GetPlayerVehicleID(playerid);
  218.                     ChangeVehiclePaintjob(car,0);
  219.                     PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  220.                     SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Pintura número 1 para o carro.");
  221.                     ShowPlayerDialog(playerid, DIALOGID+1, DIALOG_STYLE_LIST, "Selecione a Pintura", "Pintura 1\nPintura 2\nPintura 3\nVoltar", "Selecionar", "Sair");
  222.  
  223.                 }
  224.                 else
  225.                 {
  226.                    SendClientMessage(playerid,COLOR_RED,"[ERRO]: Pintura é somente para Roda arco e tipos Loco Cromagem baixa de carros!");
  227.                    ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  228.                 }
  229.             }
  230.             if(listitem == 1)
  231.             {
  232.                 if(pmodelid[playerid] == 562 ||
  233.                 pmodelid[playerid] == 565 ||
  234.                 pmodelid[playerid] == 559 ||
  235.                 pmodelid[playerid] == 561 ||
  236.                 pmodelid[playerid] == 560 ||
  237.                 pmodelid[playerid] == 575 ||
  238.                 pmodelid[playerid] == 534 ||
  239.                 pmodelid[playerid] == 567 ||
  240.                 pmodelid[playerid] == 536 ||
  241.                 pmodelid[playerid] == 535 ||
  242.                 pmodelid[playerid] == 576 ||
  243.                 pmodelid[playerid] == 558)
  244.                 {
  245.                     new car = GetPlayerVehicleID(playerid);
  246.                     ChangeVehiclePaintjob(car,1);
  247.                     PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  248.                     SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Pintura número 2 para o carro.");
  249.                     ShowPlayerDialog(playerid, DIALOGID+1, DIALOG_STYLE_LIST, "Selecione a Pintura", "Pintura 1\nPintura 2\nPintura 3\nVoltar", "Selecionar", "Sair");
  250.  
  251.                 }
  252.                 else
  253.                 {
  254.                    SendClientMessage(playerid,COLOR_RED,"[ERRO]: Pintura é somente para Roda arco e tipos Loco Cromagem baixa de carros!");
  255.                    ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  256.                 }
  257.             }
  258.             if(listitem == 2)
  259.             {
  260.                 if(pmodelid[playerid] == 562 ||
  261.                 pmodelid[playerid] == 565 ||
  262.                 pmodelid[playerid] == 559 ||
  263.                 pmodelid[playerid] == 561 ||
  264.                 pmodelid[playerid] == 560 ||
  265.                 pmodelid[playerid] == 575 ||
  266.                 pmodelid[playerid] == 534 ||
  267.                 pmodelid[playerid] == 567 ||
  268.                 pmodelid[playerid] == 536 ||
  269.                 pmodelid[playerid] == 535 ||
  270.                 pmodelid[playerid] == 576 ||
  271.                 pmodelid[playerid] == 558)
  272.                 {
  273.                    new car = GetPlayerVehicleID(playerid);
  274.                    ChangeVehiclePaintjob(car,2);
  275.                    PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  276.                    SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Pintura número 3 para o carro..");
  277.                    ShowPlayerDialog(playerid, DIALOGID+1, DIALOG_STYLE_LIST, "Selecione a Pintura", "Pintura 1\nPintura 2\nPintura 3\nVoltar", "Selecionar", "Sair");
  278.                 }
  279.                 else
  280.                 {
  281.                    SendClientMessage(playerid,COLOR_RED,"[ERRO]: Pintura é somente para Roda arco e tipos Loco Cromagem baixa de carros!");
  282.                    ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  283.                 }
  284.             }
  285.             if(listitem == 3)
  286.             {
  287.                 ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  288.             }
  289.        }
  290.     }
  291.  
  292.     if(dialogid == DIALOGID+2) //Cores
  293.     {
  294.         if(response)
  295.         {
  296.             if(listitem == 0)
  297.             {
  298.                     new car = GetPlayerVehicleID(playerid);
  299.                     ChangeVehicleColor(car,0,0);//Preto
  300.                     PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  301.                     SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você Pintou seu carro de Preto.");
  302.                     ShowPlayerDialog(playerid, DIALOGID+2, DIALOG_STYLE_LIST, "Selecione a Cor", "Preto\nBranco\nVermelho\nAzul\nVerde\nAmarelo\nRosa\nMarrom\nVoltar", "Selecionar", "Sair");
  303.  
  304.             }
  305.             if(listitem == 1)
  306.             {
  307.                     new car = GetPlayerVehicleID(playerid);
  308.                     ChangeVehicleColor(car,1,1);//Branco
  309.                     PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  310.                     SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você Pintou seu carro de Branco.");
  311.                     ShowPlayerDialog(playerid, DIALOGID+2, DIALOG_STYLE_LIST, "Selecione a Cor", "Preto\nBranco\nVermelho\nAzul\nVerde\nAmarelo\nRosa\nMarrom\nVoltar", "Selecionar", "Sair");
  312.  
  313.             }
  314.             if(listitem == 2)
  315.             {
  316.                     new car = GetPlayerVehicleID(playerid);
  317.                     ChangeVehicleColor(car,3,3);//Vermelho
  318.                     PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  319.                     SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você Pintou seu carro de Vermelho.");
  320.                     ShowPlayerDialog(playerid, DIALOGID+2, DIALOG_STYLE_LIST, "Selecione a Cor", "Preto\nBranco\nVermelho\nAzul\nVerde\nAmarelo\nRosa\nMarrom\nVoltar", "Selecionar", "Sair");
  321.  
  322.             }
  323.             if(listitem == 3)
  324.             {
  325.                     new car = GetPlayerVehicleID(playerid);
  326.                     ChangeVehicleColor(car,79,79); //Azul
  327.                     PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  328.                     SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você Pintou seu carro de Azul.");
  329.                     ShowPlayerDialog(playerid, DIALOGID+2, DIALOG_STYLE_LIST, "Selecione a Cor", "Preto\nBranco\nVermelho\nAzul\nVerde\nAmarelo\nRosa\nMarrom\nVoltar", "Selecionar", "Sair");
  330.  
  331.             }
  332.             if(listitem == 4)
  333.             {
  334.                     new car = GetPlayerVehicleID(playerid);
  335.                     ChangeVehicleColor(car,86,86);//Verde
  336.                     PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  337.                     SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você Pintou seu carro de Verde.");
  338.                     ShowPlayerDialog(playerid, DIALOGID+2, DIALOG_STYLE_LIST, "Selecione a Cor", "Preto\nBranco\nVermelho\nAzul\nVerde\nAmarelo\nRosa\nMarrom\nVoltar", "Selecionar", "Sair");
  339.  
  340.             }
  341.             if(listitem == 5)
  342.             {
  343.                     new car = GetPlayerVehicleID(playerid);
  344.                     ChangeVehicleColor(car,6,6);//Amarelo
  345.                     PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  346.                     SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você Pintou seu carro de Amarelo.");
  347.                     ShowPlayerDialog(playerid, DIALOGID+2, DIALOG_STYLE_LIST, "Selecione a Cor", "Preto\nBranco\nVermelho\nAzul\nVerde\nAmarelo\nRosa\nMarrom\nVoltar", "Selecionar", "Sair");
  348.  
  349.             }
  350.             if(listitem == 6)
  351.            {
  352.                     new car = GetPlayerVehicleID(playerid);
  353.                     ChangeVehicleColor(car,126,126);//Rosa
  354.                     PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  355.                     SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você Pintou seu carro de Rosa.");
  356.                     ShowPlayerDialog(playerid, DIALOGID+2, DIALOG_STYLE_LIST, "Selecione a Cor", "Preto\nBranco\nVermelho\nAzul\nVerde\nAmarelo\nRosa\nMarrom\nVoltar", "Selecionar", "Sair");
  357.             }
  358.             if(listitem == 7)
  359.             {
  360.                     new car = GetPlayerVehicleID(playerid);
  361.                     ChangeVehicleColor(car,66,66);//Marrom
  362.                     PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  363.                     SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você Pintou seu carro de Marrom.");
  364.                     ShowPlayerDialog(playerid, DIALOGID+2, DIALOG_STYLE_LIST, "Selecione a Cor", "Preto\nBranco\nVermelho\nAzul\nVerde\nAmarelo\nRosa\nMarrom\nVoltar", "Selecionar", "Sair");
  365.             }
  366.             if(listitem == 8)
  367.             {
  368.                     ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  369.             }
  370.         }
  371.     }
  372.     if(dialogid == DIALOGID+3) //Escapamentos
  373.     {
  374.         if(response)
  375.         {
  376.             if(listitem == 0)//Roda arco Carro Alien Escapamentos
  377.             {
  378.                 if(pmodelid[playerid] == 562 ||
  379.                 pmodelid[playerid] == 565 ||
  380.                 pmodelid[playerid] == 559 ||
  381.                 pmodelid[playerid] == 561 ||
  382.                 pmodelid[playerid] == 560)
  383.                 {
  384.                     new car = GetPlayerVehicleID(playerid);
  385.                     if(pmodelid[playerid] == 562)
  386.                     {
  387.                         AddVehicleComponent(car,1034);
  388.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  389.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Alien componente de escape em Elegy.");
  390.                         ShowPlayerDialog(playerid, DIALOGID+3, DIALOG_STYLE_LIST, "Selecione o Escapamento", "Roda arco Alien Escapamento\nRoda arco Fluxo-X Escapamento\nLocos Cromagem baixa Escapamento\nLocos baixa Slamin Escapamento\nVoltar", "Selecionar", "Sair");
  391.                     }
  392.                     else if(pmodelid[playerid] == 565)
  393.                     {
  394.                         AddVehicleComponent(car,1046);
  395.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  396.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Alien componente de escape em Flash.");
  397.                         ShowPlayerDialog(playerid, DIALOGID+3, DIALOG_STYLE_LIST, "Selecione o Escapamento", "Roda arco Alien Escapamento\nRoda arco Fluxo-X Escapamento\nLocos Cromagem baixa Escapamento\nLocos baixa Slamin Escapamento\nVoltar", "Selecionar", "Sair");
  398.                     }
  399.                     else if(pmodelid[playerid] == 559)
  400.                     {
  401.                         AddVehicleComponent(car,1065);
  402.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  403.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Alien componente de escape em Jetser.");
  404.                         ShowPlayerDialog(playerid, DIALOGID+3, DIALOG_STYLE_LIST, "Selecione o Escapamento", "Roda arco Alien Escapamento\nRoda arco Fluxo-X Escapamento\nLocos Cromagem baixa Escapamento\nLocos baixa Slamin Escapamento\nVoltar", "Selecionar", "Sair");
  405.                     }
  406.                     else if(pmodelid[playerid] == 561)
  407.                     {
  408.                         AddVehicleComponent(car,1064);
  409.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  410.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Alien componente de escape em Stratum.");
  411.                         ShowPlayerDialog(playerid, DIALOGID+3, DIALOG_STYLE_LIST, "Selecione o Escapamento", "Roda arco Alien Escapamento\nRoda arco Fluxo-X Escapamento\nLocos Cromagem baixa Escapamento\nLocos baixa Slamin Escapamento\nVoltar", "Selecionar", "Sair");
  412.                     }
  413.                     else if(pmodelid[playerid] == 560)
  414.                     {
  415.                         AddVehicleComponent(car,1028);
  416.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  417.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Alien componente de escape em Sultan.");
  418.                         ShowPlayerDialog(playerid, DIALOGID+3, DIALOG_STYLE_LIST, "Selecione o Escapamento", "Roda arco Alien Escapamento\nRoda arco Fluxo-X Escapamento\nLocos Cromagem baixa Escapamento\nLocos baixa Slamin Escapamento\nVoltar", "Selecionar", "Sair");
  419.                     }
  420.                     else if(pmodelid[playerid] == 558)
  421.                     {
  422.                         AddVehicleComponent(car,1089);
  423.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  424.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Alien componente de escape em Uranus.");
  425.                         ShowPlayerDialog(playerid, DIALOGID+3, DIALOG_STYLE_LIST, "Selecione o Escapamento", "Roda arco Alien Escapamento\nRoda arco Fluxo-X Escapamento\nLocos Cromagem baixa Escapamento\nLocos baixa Slamin Escapamento\nVoltar", "Selecionar", "Sair");
  426.                     }
  427.                     }
  428.                     else
  429.                     {
  430.                     SendClientMessage(playerid,COLOR_RED,"[ERRO]: Você só pode adicionar esse componente para Rodas arco tipos de carro!");
  431.                     ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  432.                 }
  433.        }
  434.             if(listitem == 1)//Rodas arco Carros Fluxo-X Escapamentos
  435.             {
  436.                 if(pmodelid[playerid] == 562 ||
  437.                 pmodelid[playerid] == 565 ||
  438.                 pmodelid[playerid] == 559 ||
  439.                 pmodelid[playerid] == 561 ||
  440.                 pmodelid[playerid] == 560)
  441.                 {
  442.                     new car = GetPlayerVehicleID(playerid);
  443.                     if(pmodelid[playerid] == 562)
  444.                     {
  445.                         AddVehicleComponent(car,1037);
  446.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  447.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Fluxo-X componente de escape em Elegy.");
  448.                         ShowPlayerDialog(playerid, DIALOGID+3, DIALOG_STYLE_LIST, "Selecione o Escapamento", "Roda arco Alien Escapamento\nRoda arco Fluxo-X Escapamento\nLocos Cromagem baixa Escapamento\nLocos baixa Slamin Escapamento\nVoltar", "Selecionar", "Sair");
  449.                     }
  450.                     else if(pmodelid[playerid] == 565)
  451.                     {
  452.                         AddVehicleComponent(car,1045);
  453.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  454.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Fluxo-X componente de escape em Flash.");
  455.                         ShowPlayerDialog(playerid, DIALOGID+3, DIALOG_STYLE_LIST, "Selecione o Escapamento", "Roda arco Alien Escapamento\nRoda arco Fluxo-X Escapamento\nLocos Cromagem baixa Escapamento\nLocos baixa Slamin Escapamento\nVoltar", "Selecionar", "Sair");
  456.                     }
  457.                     else if(pmodelid[playerid] == 559)
  458.                     {
  459.                         AddVehicleComponent(car,1066);
  460.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  461.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Fluxo-X componente de escape em Jester.");
  462.                         ShowPlayerDialog(playerid, DIALOGID+3, DIALOG_STYLE_LIST, "Selecione o Escapamento", "Roda arco Alien Escapamento\nRoda arco Fluxo-X Escapamento\nLocos Cromagem baixa Escapamento\nLocos baixa Slamin Escapamento\nVoltar", "Selecionar", "Sair");
  463.                     }
  464.                     else if(pmodelid[playerid] == 561)
  465.                     {
  466.                         AddVehicleComponent(car,1059);
  467.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  468.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Fluxo-X componente de escape em Stratum.");
  469.                         ShowPlayerDialog(playerid, DIALOGID+3, DIALOG_STYLE_LIST, "Selecione o Escapamento", "Roda arco Alien Escapamento\nRoda arco Fluxo-X Escapamento\nLocos Cromagem baixa Escapamento\nLocos baixa Slamin Escapamento\nVoltar", "Selecionar", "Sair");
  470.                     }
  471.                     else if(pmodelid[playerid] == 560)
  472.                     {
  473.                         AddVehicleComponent(car,1029);
  474.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  475.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Fluxo-X componente de escape em Sultan.");
  476.                         ShowPlayerDialog(playerid, DIALOGID+3, DIALOG_STYLE_LIST, "Selecione o Escapamento", "Roda arco Alien Escapamento\nRoda arco Fluxo-X Escapamento\nLocos Cromagem baixa Escapamento\nLocos baixa Slamin Escapamento\nVoltar", "Selecionar", "Sair");
  477.                     }
  478.                     else if(pmodelid[playerid] == 558)
  479.                     {
  480.                         AddVehicleComponent(car,1092);
  481.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  482.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Fluxo-X componente de escape em Uranus.");
  483.                         ShowPlayerDialog(playerid, DIALOGID+3, DIALOG_STYLE_LIST, "Selecione o Escapamento", "Roda arco Alien Escapamento\nRoda arco Fluxo-X Escapamento\nLocos Cromagem baixa Escapamento\nLocos baixa Slamin Escapamento\nVoltar", "Selecionar", "Sair");
  484.                     }
  485.                     }
  486.                     else
  487.                     {
  488.                     SendClientMessage(playerid,COLOR_RED,"[ERRO]: Você só pode adicionar esse componente para Rodas arco tipos de carro!");
  489.                     ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  490.                     }
  491.             }
  492.             if(listitem == 2)//Locos Cromagem baixa Carros Escapamento Cromado
  493.             {
  494.                 if(pmodelid[playerid] == 575 ||
  495.                 pmodelid[playerid] == 534 ||
  496.                 pmodelid[playerid] == 567 ||
  497.                 pmodelid[playerid] == 536 ||
  498.                 pmodelid[playerid] == 576 ||
  499.                 pmodelid[playerid] == 535)
  500.  
  501.                 {
  502.                     new car = GetPlayerVehicleID(playerid);
  503.                     if(pmodelid[playerid] == 575)
  504.                     {
  505.                         AddVehicleComponent(car,1044);
  506.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  507.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos Cromagem baixa componente de escape em Brodway.");
  508.                         ShowPlayerDialog(playerid, DIALOGID+3, DIALOG_STYLE_LIST, "Selecione o Escapamento", "Roda arco Alien Escapamento\nRoda arco Fluxo-X Escapamento\nLocos Cromagem baixa Escapamento\nLocos baixa Slamin Escapamento\nVoltar", "Selecionar", "Sair");
  509.                     }
  510.                     else if(pmodelid[playerid] == 534)
  511.                     {
  512.                         AddVehicleComponent(car,1126);
  513.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  514.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos Cromagem baixa componente de escape em Remington.");
  515.                         ShowPlayerDialog(playerid, DIALOGID+3, DIALOG_STYLE_LIST, "Selecione o Escapamento", "Roda arco Alien Escapamento\nRoda arco Fluxo-X Escapamento\nLocos Cromagem baixa Escapamento\nLocos baixa Slamin Escapamento\nVoltar", "Selecionar", "Sair");
  516.                     }
  517.                     else if(pmodelid[playerid] == 567)
  518.                     {
  519.                         AddVehicleComponent(car,1129);
  520.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  521.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos Cromagem baixa componente de escape em Savanna.");
  522.                         ShowPlayerDialog(playerid, DIALOGID+3, DIALOG_STYLE_LIST, "Selecione o Escapamento", "Roda arco Alien Escapamento\nRoda arco Fluxo-X Escapamento\nLocos Cromagem baixa Escapamento\nLocos baixa Slamin Escapamento\nVoltar", "Selecionar", "Sair");
  523.                     }
  524.                     else if(pmodelid[playerid] == 536)
  525.                     {
  526.                         AddVehicleComponent(car,1104);
  527.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  528.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos Cromagem baixa componente de escape em Blade.");
  529.                         ShowPlayerDialog(playerid, DIALOGID+3, DIALOG_STYLE_LIST, "Selecione o Escapamento", "Roda arco Alien Escapamento\nRoda arco Fluxo-X Escapamento\nLocos Cromagem baixa Escapamento\nLocos baixa Slamin Escapamento\nVoltar", "Selecionar", "Sair");
  530.                     }
  531.                     else if(pmodelid[playerid] == 535)
  532.                     {
  533.                         AddVehicleComponent(car,1113);
  534.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  535.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos Cromagem baixa componente de escape em Slamvan.");
  536.                         ShowPlayerDialog(playerid, DIALOGID+3, DIALOG_STYLE_LIST, "Selecione o Escapamento", "Roda arco Alien Escapamento\nRoda arco Fluxo-X Escapamento\nLocos Cromagem baixa Escapamento\nLocos baixa Slamin Escapamento\nVoltar", "Selecionar", "Sair");
  537.                     }
  538.                     else if(pmodelid[playerid] == 576)
  539.                     {
  540.                         AddVehicleComponent(car,1136);
  541.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  542.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos Cromagem baixa componente de escape em Tornado.");
  543.                         ShowPlayerDialog(playerid, DIALOGID+3, DIALOG_STYLE_LIST, "Selecione o Escapamento", "Roda arco Alien Escapamento\nRoda arco Fluxo-X Escapamento\nLocos Cromagem baixa Escapamento\nLocos baixa Slamin Escapamento\nVoltar", "Selecionar", "Sair");
  544.                     }
  545.                     }
  546.                     else
  547.                     {
  548.                     SendClientMessage(playerid,COLOR_RED,"[ERRO]: Você só pode adicionar esse componente para tipos Locos baixa Carro!");
  549.                     ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  550.                     }
  551.             }
  552.             if(listitem == 3)//Locos Cromagem baixa Carros Slamin Escapamento
  553.             {
  554.                 if(pmodelid[playerid] == 575 ||
  555.                 pmodelid[playerid] == 534 ||
  556.                 pmodelid[playerid] == 567 ||
  557.                 pmodelid[playerid] == 536 ||
  558.                 pmodelid[playerid] == 576 ||
  559.                 pmodelid[playerid] == 535)
  560.                 {
  561.                     new car = GetPlayerVehicleID(playerid);
  562.                     if(pmodelid[playerid] == 575)
  563.                     {
  564.                         AddVehicleComponent(car,1043);
  565.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  566.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO] Você adicionou Locos Slamin baixa componente de escape em Brodway.");
  567.                         ShowPlayerDialog(playerid, DIALOGID+3, DIALOG_STYLE_LIST, "Selecione o Escapamento", "Roda arco Alien Escapamento\nRoda arco Fluxo-X Escapamento\nLocos Cromagem baixa Escapamento\nLocos baixa Slamin Escapamento\nVoltar", "Selecionar", "Sair");
  568.                     }
  569.                     else if(pmodelid[playerid] == 534)
  570.                     {
  571.                         AddVehicleComponent(car,1127);
  572.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  573.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO] Você adicionou Locos Slamin baixa componente de escape em Remingon.");
  574.                         ShowPlayerDialog(playerid, DIALOGID+3, DIALOG_STYLE_LIST, "Selecione o Escapamento", "Roda arco Alien Escapamento\nRoda arco Fluxo-X Escapamento\nLocos Cromagem baixa Escapamento\nLocos baixa Slamin Escapamento\nVoltar", "Selecionar", "Sair");
  575.                     }
  576.                     else if(pmodelid[playerid] == 567)
  577.                     {
  578.                         AddVehicleComponent(car,1132);
  579.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  580.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO] Você adicionou Locos Slamin baixa componente de escape em Savanna.");
  581.                         ShowPlayerDialog(playerid, DIALOGID+3, DIALOG_STYLE_LIST, "Selecione o Escapamento", "Roda arco Alien Escapamento\nRoda arco Fluxo-X Escapamento\nLocos Cromagem baixa Escapamento\nLocos baixa Slamin Escapamento\nVoltar", "Selecionar", "Sair");
  582.                     }
  583.                     else if(pmodelid[playerid] == 536)
  584.                     {
  585.                         AddVehicleComponent(car,1105);
  586.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  587.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO] Você adicionou Locos Slamin baixa componente de escape em Blade.");
  588.                         ShowPlayerDialog(playerid, DIALOGID+3, DIALOG_STYLE_LIST, "Selecione o Escapamento", "Roda arco Alien Escapamento\nRoda arco Fluxo-X Escapamento\nLocos Cromagem baixa Escapamento\nLocos baixa Slamin Escapamento\nVoltar", "Selecionar", "Sair");
  589.                     }
  590.  
  591.                     else if(pmodelid[playerid] == 535)
  592.                     {
  593.                         AddVehicleComponent(car,1114);
  594.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  595.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO] Você adicionou Locos Slamin baixa componente de escape em Slamvan.");
  596.                         ShowPlayerDialog(playerid, DIALOGID+3, DIALOG_STYLE_LIST, "Selecione o Escapamento", "Roda arco Alien Escapamento\nRoda arco Fluxo-X Escapamento\nLocos Cromagem baixa Escapamento\nLocos baixa Slamin Escapamento\nVoltar", "Selecionar", "Sair");
  597.                     }
  598.  
  599.                     else if(pmodelid[playerid] == 576)
  600.                     {
  601.                         AddVehicleComponent(car,1135);
  602.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  603.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO] Você adicionou Locos Slamin baixa componente de escape em Tornado.");
  604.                         ShowPlayerDialog(playerid, DIALOGID+3, DIALOG_STYLE_LIST, "Selecione o Escapamento", "Roda arco Alien Escapamento\nRoda arco Fluxo-X Escapamento\nLocos Cromagem baixa Escapamento\nLocos baixa Slamin Escapamento\nVoltar", "Selecionar", "Sair");
  605.                     }
  606.                     }
  607.                     else
  608.                     {
  609.                     SendClientMessage(playerid,COLOR_RED,"[ERRO]: Você só pode adicionar esse componente para tipos Locos baixo do carro!");
  610.                     ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Selecione o Escapamento", "Roda arco Alien Escapamento\nRoda arco Fluxo-X Escapamento\nLocos Cromagem baixa Escapamento\nLocos baixa Slamin Escapamento\nVoltar", "Selecionar", "Sair");
  611.                     }
  612.             }
  613.             if(listitem == 4)//Voltar
  614.             {
  615.                  ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  616.             }
  617.         }
  618.     }
  619.     if(dialogid == DIALOGID+4)//Pára-Choque Dianteiro
  620.     {
  621.         if(response)
  622.         {
  623.             if(listitem == 0)//Roda arco Carros Alien Pára-Choque Dianteiro
  624.             {
  625.                    if(pmodelid[playerid] == 562 ||
  626.                    pmodelid[playerid] == 565 ||
  627.                    pmodelid[playerid] == 559 ||
  628.                    pmodelid[playerid] == 561 ||
  629.                    pmodelid[playerid] == 560)
  630.                    {
  631.                     new car = GetPlayerVehicleID(playerid);
  632.                     if(pmodelid[playerid] == 562)
  633.                     {
  634.                         AddVehicleComponent(car,1171);
  635.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  636.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Alien componente pára-choque dianteiro em Elegy.");
  637.                         ShowPlayerDialog(playerid, DIALOGID+4, DIALOG_STYLE_LIST, "Selecione o Para-Choque Dianteiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  638.                     }
  639.                     else if(pmodelid[playerid] == 565)
  640.                     {
  641.                         AddVehicleComponent(car,1153);
  642.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  643.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Alien componente pára-choque dianteiro em Flash.");
  644.                         ShowPlayerDialog(playerid, DIALOGID+4, DIALOG_STYLE_LIST, "Selecione o Para-Choque Dianteiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  645.                     }
  646.                     else if(pmodelid[playerid] == 559)
  647.                     {
  648.                         AddVehicleComponent(car,1160);
  649.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  650.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Alien componente pára-choque dianteiro em Jester.");
  651.                         ShowPlayerDialog(playerid, DIALOGID+4, DIALOG_STYLE_LIST, "Selecione o Para-Choque Dianteiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  652.                     }
  653.                     else if(pmodelid[playerid] == 561)
  654.                     {
  655.                         AddVehicleComponent(car,1155);
  656.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  657.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Alien componente pára-choque dianteiro em Stratum.");
  658.                         ShowPlayerDialog(playerid, DIALOGID+4, DIALOG_STYLE_LIST, "Selecione o Para-Choque Dianteiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  659.                     }
  660.                     else if(pmodelid[playerid] == 560)
  661.                     {
  662.                         AddVehicleComponent(car,1169);
  663.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  664.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Alien componente pára-choque dianteiro em Sultan.");
  665.                         ShowPlayerDialog(playerid, DIALOGID+4, DIALOG_STYLE_LIST, "Selecione o Para-Choque Dianteiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  666.                     }
  667.                     else if(pmodelid[playerid] == 558)
  668.                     {
  669.                         AddVehicleComponent(car,1166);
  670.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  671.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Alien componente pára-choque dianteiro em Uraus.");
  672.                         ShowPlayerDialog(playerid, DIALOGID+4, DIALOG_STYLE_LIST, "Selecione o Para-Choque Dianteiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  673.                     }
  674.                     }
  675.                     else
  676.                     {
  677.                     SendClientMessage(playerid,COLOR_RED,"[ERROR]: Você só pode adicionar esse componente para Roda arco tipos de carro!");
  678.                     ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  679.                     }
  680.             }
  681.             if(listitem == 1)//Roda arco Carro Fluxo-X Pára-Choque Dianteiro
  682.             {
  683.                    if(pmodelid[playerid] == 562 ||
  684.                    pmodelid[playerid] == 565 ||
  685.                    pmodelid[playerid] == 559 ||
  686.                    pmodelid[playerid] == 561 ||
  687.                    pmodelid[playerid] == 560)
  688.                    {
  689.  
  690.                     new car = GetPlayerVehicleID(playerid);
  691.                     if(pmodelid[playerid] == 562)
  692.                     {
  693.                         AddVehicleComponent(car,1172);
  694.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  695.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Fluxo-X componente pára-choque dianteiro em Elegy.");
  696.                         ShowPlayerDialog(playerid, DIALOGID+4, DIALOG_STYLE_LIST, "Selecione o Para-Choque Dianteiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  697.                     }
  698.                     else if(pmodelid[playerid] == 565)
  699.                     {
  700.                         AddVehicleComponent(car,1152);
  701.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  702.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Fluxo-X componente pára-choque dianteiro Flash.");
  703.                         ShowPlayerDialog(playerid, DIALOGID+4, DIALOG_STYLE_LIST, "Selecione o Para-Choque Dianteiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  704.                     }
  705.                     else if(pmodelid[playerid] == 559)
  706.                     {
  707.                         AddVehicleComponent(car,1173);
  708.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  709.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Fluxo-X componente pára-choque dianteiro Jester.");
  710.                         ShowPlayerDialog(playerid, DIALOGID+4, DIALOG_STYLE_LIST, "Selecione o Para-Choque Dianteiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  711.                     }
  712.                     else if(pmodelid[playerid] == 561)
  713.                     {
  714.                         AddVehicleComponent(car,1157);
  715.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  716.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Fluxo-X componente pára-choque dianteiro Stratum.");
  717.                         ShowPlayerDialog(playerid, DIALOGID+4, DIALOG_STYLE_LIST, "Selecione o Para-Choque Dianteiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  718.                     }
  719.                     else if(pmodelid[playerid] == 560)
  720.                     {
  721.                         AddVehicleComponent(car,1170);
  722.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  723.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Fluxo-X componente pára-choque dianteiro Sultan.");
  724.                         ShowPlayerDialog(playerid, DIALOGID+4, DIALOG_STYLE_LIST, "Selecione o Para-Choque Dianteiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  725.                     }
  726.                     else if(pmodelid[playerid] == 558)
  727.                     {
  728.                         AddVehicleComponent(car,1165);
  729.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  730.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Fluxo-X componente pára-choque dianteiro Uranus.");
  731.                         ShowPlayerDialog(playerid, DIALOGID+4, DIALOG_STYLE_LIST, "Selecione o Para-Choque Dianteiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  732.                     }
  733.                     }
  734.                     else
  735.                     {
  736.                     SendClientMessage(playerid,COLOR_RED,"[ERRO]: Você só pode adicionar esse componente para Roda arco tipos de carro!");
  737.                     ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  738.                     }
  739.             }
  740.             if(listitem == 2)//Locos Cromagem baixa Carro Cromado Pára-Choque Dianteiro
  741.             {
  742.                 if(pmodelid[playerid] == 575 ||
  743.                 pmodelid[playerid] == 534 ||
  744.                 pmodelid[playerid] == 567 ||
  745.                 pmodelid[playerid] == 536 ||
  746.                 pmodelid[playerid] == 576 ||
  747.                 pmodelid[playerid] == 535)
  748.                 {
  749.                     new car = GetPlayerVehicleID(playerid);
  750.                     if(pmodelid[playerid] == 575)
  751.                     {
  752.                         AddVehicleComponent(car,1174);
  753.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  754.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos Cromagem baixa componente pára-choque dianteiro em Brodway.");
  755.                         ShowPlayerDialog(playerid, DIALOGID+4, DIALOG_STYLE_LIST, "Selecione o Para-Choque Dianteiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  756.                     }
  757.                     else if(pmodelid[playerid] == 534)
  758.                     {
  759.                         AddVehicleComponent(car,1179);
  760.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  761.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos Cromagem baixa componente pára-choque dianteiro em Remington.");
  762.                         ShowPlayerDialog(playerid, DIALOGID+4, DIALOG_STYLE_LIST, "Selecione o Para-Choque Dianteiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  763.                     }
  764.                     else if(pmodelid[playerid] == 567)
  765.                     {
  766.                         AddVehicleComponent(car,1189);
  767.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  768.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos Cromagem baixa componente pára-choque dianteiro em Savanna.");
  769.                         ShowPlayerDialog(playerid, DIALOGID+4, DIALOG_STYLE_LIST, "Selecione o Para-Choque Dianteiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  770.                     }
  771.                     else if(pmodelid[playerid] == 536)
  772.                     {
  773.                         AddVehicleComponent(car,1182);
  774.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  775.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos Cromagem baixa componente pára-choque dianteiro em Blade.");
  776.                         ShowPlayerDialog(playerid, DIALOGID+4, DIALOG_STYLE_LIST, "Selecione o Para-Choque Dianteiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  777.                     }
  778.                     else if(pmodelid[playerid] == 535)
  779.                     {
  780.                         AddVehicleComponent(car,1115);
  781.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  782.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos Cromagem baixa componente pára-choque dianteiro em Slamvan.");
  783.                         ShowPlayerDialog(playerid, DIALOGID+4, DIALOG_STYLE_LIST, "Selecione o Para-Choque Dianteiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  784.                     }
  785.                     else if(pmodelid[playerid] == 576)
  786.                     {
  787.                         AddVehicleComponent(car,1191);
  788.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  789.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos Cromagem baixa componente pára-choque dianteiro em Tornado.");
  790.                         ShowPlayerDialog(playerid, DIALOGID+4, DIALOG_STYLE_LIST, "Selecione o Para-Choque Dianteiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  791.                     }
  792.                     }
  793.                     else
  794.                     {
  795.                     SendClientMessage(playerid,COLOR_RED,"[ERRO]: Você só pode adicionar esse componente para tipos Locos baixo do carro!");
  796.                     ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  797.                     }
  798.             }
  799.             if(listitem == 3)//Locos Cromagem baixa Salmin Pára-Choque
  800.             {
  801.                 if(pmodelid[playerid] == 575 ||
  802.                 pmodelid[playerid] == 534 ||
  803.                 pmodelid[playerid] == 567 ||
  804.                 pmodelid[playerid] == 536 ||
  805.                 pmodelid[playerid] == 576 ||
  806.                 pmodelid[playerid] == 576)
  807.                 {
  808.                     new car = GetPlayerVehicleID(playerid);
  809.                     if(pmodelid[playerid] == 575)
  810.                     {
  811.                         AddVehicleComponent(car,1175);
  812.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  813.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos baixo Slamin componente pára-choque dianteiro em Brodway.");
  814.                         ShowPlayerDialog(playerid, DIALOGID+4, DIALOG_STYLE_LIST, "Selecione o Para-Choque Dianteiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  815.                     }
  816.                     else if(pmodelid[playerid] == 534)
  817.                     {
  818.                         AddVehicleComponent(car,1185);
  819.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  820.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos baixo Slamin componente pára-choque dianteiro em Remington.");
  821.                         ShowPlayerDialog(playerid, DIALOGID+4, DIALOG_STYLE_LIST, "Selecione o Para-Choque Dianteiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  822.                     }
  823.                     else if(pmodelid[playerid] == 567)
  824.                     {
  825.                         AddVehicleComponent(car,1188);
  826.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  827.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos baixo Slamin componente pára-choque dianteiro em Savanna.");
  828.                         ShowPlayerDialog(playerid, DIALOGID+4, DIALOG_STYLE_LIST, "Selecione o Para-Choque Dianteiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  829.                     }
  830.                     else if(pmodelid[playerid] == 536)
  831.                     {
  832.                         AddVehicleComponent(car,1181);
  833.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  834.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos baixo Slamin componente pára-choque dianteiro em Blade.");
  835.                         ShowPlayerDialog(playerid, DIALOGID+4, DIALOG_STYLE_LIST, "Selecione o Para-Choque Dianteiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  836.                     }
  837.                     else if(pmodelid[playerid] == 535)
  838.                     {
  839.                         AddVehicleComponent(car,1116);
  840.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  841.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos baixo Slamin componente pára-choque dianteiro em Slamvan.");
  842.                         ShowPlayerDialog(playerid, DIALOGID+4, DIALOG_STYLE_LIST, "Selecione o Para-Choque Dianteiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  843.                     }
  844.                     else if(pmodelid[playerid] == 576)
  845.                     {
  846.                         AddVehicleComponent(car,1190);
  847.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  848.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos baixo Slamin componente pára-choque dianteiro em Tornado.");
  849.                         ShowPlayerDialog(playerid, DIALOGID+4, DIALOG_STYLE_LIST, "Selecione o Para-Choque Dianteiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  850.                     }
  851.                     }
  852.                     else
  853.                     {
  854.                     SendClientMessage(playerid,COLOR_RED,"[ERRO]: Você só pode adicionar esse componente para tipos Locos baixo do carro!");
  855.                     ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  856.                     }
  857.             }
  858.             if(listitem == 4)//Voltar
  859.             {
  860.                  ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  861.             }
  862.         }
  863.     }
  864.     if(dialogid == DIALOGID+5)//Pára-Choque Traseiro
  865.     {
  866.         if(response)
  867.         {
  868.             if(listitem == 0)//Roda Arco Carros Alien Pára-Choque Traseiro
  869.             {
  870.                 if(pmodelid[playerid] == 562 ||
  871.                 pmodelid[playerid] == 565 ||
  872.                 pmodelid[playerid] == 559 ||
  873.                 pmodelid[playerid] == 561 ||
  874.                 pmodelid[playerid] == 560)
  875.                 {
  876.                     new car = GetPlayerVehicleID(playerid);
  877.                     if(pmodelid[playerid] == 562)
  878.                     {
  879.                         AddVehicleComponent(car,1149);
  880.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  881.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Alien componente pára-choques traseiro em Elegy.");
  882.                         ShowPlayerDialog(playerid, DIALOGID+5, DIALOG_STYLE_LIST, "Selecione o Para-Choque Traseiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  883.                     }
  884.                     else if(pmodelid[playerid] == 565)
  885.                     {
  886.                         AddVehicleComponent(car,1150);
  887.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  888.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Alien componente pára-choques traseiro em Flash.");
  889.                         ShowPlayerDialog(playerid, DIALOGID+5, DIALOG_STYLE_LIST, "Selecione o Para-Choque Traseiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  890.                     }
  891.                     else if(pmodelid[playerid] == 559)
  892.                     {
  893.                         AddVehicleComponent(car,1159);
  894.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  895.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Alien componente pára-choques traseiro em Jester.");
  896.                         ShowPlayerDialog(playerid, DIALOGID+5, DIALOG_STYLE_LIST, "Selecione o Para-Choque Traseiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  897.                     }
  898.                     else if(pmodelid[playerid] == 561)
  899.                     {
  900.                         AddVehicleComponent(car,1154);
  901.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  902.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Alien componente pára-choques traseiro em Stratum.");
  903.                         ShowPlayerDialog(playerid, DIALOGID+5, DIALOG_STYLE_LIST, "Selecione o Para-Choque Traseiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  904.                     }
  905.                     else if(pmodelid[playerid] == 560)
  906.                     {
  907.                         AddVehicleComponent(car,1141);
  908.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  909.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Alien componente pára-choques traseiro em Sultan.");
  910.                         ShowPlayerDialog(playerid, DIALOGID+5, DIALOG_STYLE_LIST, "Selecione o Para-Choque Traseiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  911.                     }
  912.                     else if(pmodelid[playerid] == 558)
  913.                     {
  914.                         AddVehicleComponent(car,1168);
  915.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  916.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Alien componente pára-choques traseiro em Uranus.");
  917.                         ShowPlayerDialog(playerid, DIALOGID+5, DIALOG_STYLE_LIST, "Selecione o Para-Choque Traseiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  918.                     }
  919.                     }
  920.                     else
  921.                     {
  922.                     SendClientMessage(playerid,COLOR_RED,"[ERRO]: Você só pode adicionar esse componente para Roda arco tipos de carro!");
  923.                     ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  924.                     }
  925.             }
  926.             if(listitem == 1)//Roda arco Carros Fluxo-X Pára-Choque Traseiro
  927.             {
  928.                 if(pmodelid[playerid] == 562 ||
  929.                 pmodelid[playerid] == 565 ||
  930.                 pmodelid[playerid] == 559 ||
  931.                 pmodelid[playerid] == 561 ||
  932.                 pmodelid[playerid] == 560)
  933.                 {
  934.  
  935.                     new car = GetPlayerVehicleID(playerid);
  936.                     if(pmodelid[playerid] == 562)
  937.                     {
  938.                         AddVehicleComponent(car,1148);
  939.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  940.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Fluxo-X componente pára-choques traseiro em Elegy.");
  941.                         ShowPlayerDialog(playerid, DIALOGID+5, DIALOG_STYLE_LIST, "Selecione o Para-Choque Traseiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  942.                     }
  943.                     else if(pmodelid[playerid] == 565)
  944.                     {
  945.                         AddVehicleComponent(car,1151);
  946.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  947.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Fluxo-X componente pára-choques traseiro em Flash.");
  948.                         ShowPlayerDialog(playerid, DIALOGID+5, DIALOG_STYLE_LIST, "Selecione o Para-Choque Traseiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  949.                     }
  950.                     else if(pmodelid[playerid] == 559)
  951.                     {
  952.                         AddVehicleComponent(car,1161);
  953.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  954.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Fluxo-X componente pára-choques traseiro em Jester.");
  955.                         ShowPlayerDialog(playerid, DIALOGID+5, DIALOG_STYLE_LIST, "Selecione o Para-Choque Traseiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  956.                     }
  957.                     else if(pmodelid[playerid] == 561)
  958.                     {
  959.                         AddVehicleComponent(car,1156);
  960.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  961.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Fluxo-X componente pára-choques traseiro em Stratum.");
  962.                         ShowPlayerDialog(playerid, DIALOGID+5, DIALOG_STYLE_LIST, "Selecione o Para-Choque Traseiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  963.                     }
  964.                     else if(pmodelid[playerid] == 560)
  965.                     {
  966.                         AddVehicleComponent(car,1140);
  967.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  968.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Fluxo-X componente pára-choques traseiro em Sultan.");
  969.                         ShowPlayerDialog(playerid, DIALOGID+5, DIALOG_STYLE_LIST, "Selecione o Para-Choque Traseiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  970.                     }
  971.                     else if(pmodelid[playerid] == 558)
  972.                     {
  973.                         AddVehicleComponent(car,1167);
  974.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  975.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Fluxo-X componente pára-choques traseiro em Uranus.");
  976.                         ShowPlayerDialog(playerid, DIALOGID+5, DIALOG_STYLE_LIST, "Selecione o Para-Choque Traseiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  977.                     }
  978.                     }
  979.                     else
  980.                     {
  981.                     SendClientMessage(playerid,COLOR_RED,"[ERRO]: Você só pode adicionar esse componente para Wheel Arch Angels tipos de carro!");
  982.                     ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  983.                     }
  984.             }
  985.             if(listitem == 2)//Locos Cromagem baixa Carro Cromado Pára-Choque Traseiro
  986.             {
  987.                 if(pmodelid[playerid] == 575 ||
  988.                 pmodelid[playerid] == 534 ||
  989.                 pmodelid[playerid] == 567 ||
  990.                 pmodelid[playerid] == 536 ||
  991.                 pmodelid[playerid] == 576 ||
  992.                 pmodelid[playerid] == 535)
  993.                 {
  994.                     new car = GetPlayerVehicleID(playerid);
  995.                     if(pmodelid[playerid] == 575)
  996.                     {
  997.                         AddVehicleComponent(car,1176);
  998.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  999.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos Cromagem baixa componente pára-choques traseiro em Brodway.");
  1000.                         ShowPlayerDialog(playerid, DIALOGID+5, DIALOG_STYLE_LIST, "Selecione o Para-Choque Traseiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  1001.                     }
  1002.                     else if(pmodelid[playerid] == 534)
  1003.                     {
  1004.                         AddVehicleComponent(car,1180);
  1005.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1006.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos Cromagem baixa componente pára-choques traseiro em Remington.");
  1007.                         ShowPlayerDialog(playerid, DIALOGID+5, DIALOG_STYLE_LIST, "Selecione o Para-Choque Traseiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  1008.                     }
  1009.                     else if(pmodelid[playerid] == 567)
  1010.                     {
  1011.                         AddVehicleComponent(car,1187);
  1012.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1013.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos Cromagem baixa componente pára-choques traseiro em Savanna.");
  1014.                         ShowPlayerDialog(playerid, DIALOGID+5, DIALOG_STYLE_LIST, "Selecione o Para-Choque Traseiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  1015.                     }
  1016.                     else if(pmodelid[playerid] == 536)
  1017.                     {
  1018.                         AddVehicleComponent(car,1184);
  1019.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1020.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos Cromagem baixa componente pára-choques traseiro em Blade.");
  1021.                         ShowPlayerDialog(playerid, DIALOGID+5, DIALOG_STYLE_LIST, "Selecione o Para-Choque Traseiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  1022.                     }
  1023.                     else if(pmodelid[playerid] == 535)
  1024.                     {
  1025.                         AddVehicleComponent(car,1109);
  1026.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1027.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos Cromagem baixa componente pára-choques traseiro em Slamvan.");
  1028.                         ShowPlayerDialog(playerid, DIALOGID+5, DIALOG_STYLE_LIST, "Selecione o Para-Choque Traseiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  1029.                     }
  1030.                     else if(pmodelid[playerid] == 576)
  1031.                     {
  1032.                         AddVehicleComponent(car,1192);
  1033.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1034.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos Cromagem baixa componente pára-choques traseiro em Tornado.");
  1035.                         ShowPlayerDialog(playerid, DIALOGID+5, DIALOG_STYLE_LIST, "Selecione o Para-Choque Traseiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  1036.                     }
  1037.                     }
  1038.                     else
  1039.                     {
  1040.                     SendClientMessage(playerid,COLOR_RED,"[ERRO]: Você só pode adicionar esse componente para tipos Locos baixo do carro!");
  1041.                     ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  1042.                     }
  1043.             }
  1044.             if(listitem == 3)//Locos Cromagem baixa Carro Salmin Pára-Choque
  1045.             {
  1046.                 if(pmodelid[playerid] == 575 ||
  1047.                 pmodelid[playerid] == 534 ||
  1048.                 pmodelid[playerid] == 567 ||
  1049.                 pmodelid[playerid] == 536 ||
  1050.                 pmodelid[playerid] == 576 ||
  1051.                 pmodelid[playerid] == 535)
  1052.                 {
  1053.                     new car = GetPlayerVehicleID(playerid);
  1054.                     if(pmodelid[playerid] == 575)
  1055.                     {
  1056.                         AddVehicleComponent(car,1177);
  1057.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1058.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos baixo Slamin componente pára-choques traseiro em Brodway.");
  1059.                         ShowPlayerDialog(playerid, DIALOGID+5, DIALOG_STYLE_LIST, "Selecione o Para-Choque Traseiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  1060.                     }
  1061.                     else if(pmodelid[playerid] == 534)
  1062.                     {
  1063.                         AddVehicleComponent(car,1178);
  1064.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1065.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos baixo Slamin componente pára-choques traseiro em Remington.");
  1066.                         ShowPlayerDialog(playerid, DIALOGID+5, DIALOG_STYLE_LIST, "Selecione o Para-Choque Traseiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  1067.                     }
  1068.                     else if(pmodelid[playerid] == 567)
  1069.                     {
  1070.                         AddVehicleComponent(car,1186);
  1071.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1072.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos baixo Slamin componente pára-choques traseiro em Savanna.");
  1073.                         ShowPlayerDialog(playerid, DIALOGID+5, DIALOG_STYLE_LIST, "Selecione o Para-Choque Traseiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  1074.                     }
  1075.                     else if(pmodelid[playerid] == 536)
  1076.                     {
  1077.                         AddVehicleComponent(car,1183);
  1078.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1079.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos baixo Slamin componente pára-choques traseiro em Blade.");
  1080.                         ShowPlayerDialog(playerid, DIALOGID+5, DIALOG_STYLE_LIST, "Selecione o Para-Choque Traseiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  1081.                     }
  1082.  
  1083.                     else if(pmodelid[playerid] == 535)
  1084.                     {
  1085.                         AddVehicleComponent(car,1110);
  1086.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1087.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos baixo Slamin componente pára-choques traseiro em Slamvan.");
  1088.                         ShowPlayerDialog(playerid, DIALOGID+5, DIALOG_STYLE_LIST, "Selecione o Para-Choque Traseiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  1089.                     }
  1090.  
  1091.                     else if(pmodelid[playerid] == 576)
  1092.                     {
  1093.                         AddVehicleComponent(car,1193);
  1094.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1095.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos baixo Slamin componente pára-choques traseiro em Tornado.");
  1096.                         ShowPlayerDialog(playerid, DIALOGID+5, DIALOG_STYLE_LIST, "Selecione o Para-Choque Traseiro", "Roda arco Alien Para-Choque\nRoda arco Fluxo-X Para-choque\nLocos Cromagem baixa Para-Choque\nLocos baixa Slamin Para-choque\nVoltar", "Selecionar", "Sair");
  1097.                     }
  1098.                     }
  1099.                     else
  1100.                     {
  1101.                     SendClientMessage(playerid,COLOR_RED,"[ERRO]: Você só pode adicionar esse componente para tipos Locos baixo do carro!");
  1102.                     ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  1103.                     }
  1104.             }
  1105.             if(listitem == 4)//Voltar
  1106.             {
  1107.                  ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  1108.             }
  1109.         }
  1110.     }
  1111.     if(dialogid == DIALOGID+6)//Teto Solar
  1112.     {
  1113.         if(response)
  1114.         {
  1115.             if(listitem == 0)//Roda arco Carro Alien Teto Solar
  1116.             {
  1117.                 if(pmodelid[playerid] == 562 ||
  1118.                 pmodelid[playerid] == 565 ||
  1119.                 pmodelid[playerid] == 559 ||
  1120.                 pmodelid[playerid] == 561 ||
  1121.                 pmodelid[playerid] == 560)
  1122.                 {
  1123.  
  1124.                     new car = GetPlayerVehicleID(playerid);
  1125.                     if(pmodelid[playerid] == 562)
  1126.                     {
  1127.                         AddVehicleComponent(car,1035);
  1128.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1129.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco teto Alien componente no Elegy.");
  1130.                         ShowPlayerDialog(playerid, DIALOGID+6, DIALOG_STYLE_LIST, "Selecione o Teto Solar", "Roda arco Alien Teto Solar\nRoda arco Fluxo-X Teto Solar\nLocos Baixa Hardtop Teto Solar\nLocos Baixa Softtop Teto Solar\nVoltar", "Selecionar", "Sair");
  1131.                     }
  1132.                     else if(pmodelid[playerid] == 565)
  1133.                     {
  1134.                         AddVehicleComponent(car,1054);
  1135.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1136.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco teto Alien componente no Flash.");
  1137.                         ShowPlayerDialog(playerid, DIALOGID+6, DIALOG_STYLE_LIST, "Selecione o Teto Solar", "Roda arco Alien Teto Solar\nRoda arco Fluxo-X Teto Solar\nLocos Baixa Hardtop Teto Solar\nLocos Baixa Softtop Teto Solar\nVoltar", "Selecionar", "Sair");
  1138.                     }
  1139.                     else if(pmodelid[playerid] == 559)
  1140.                     {
  1141.                         AddVehicleComponent(car,1067);
  1142.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1143.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco teto Alien componente no Jester.");
  1144.                         ShowPlayerDialog(playerid, DIALOGID+6, DIALOG_STYLE_LIST, "Selecione o Teto Solar", "Roda arco Alien Teto Solar\nRoda arco Fluxo-X Teto Solar\nLocos Baixa Hardtop Teto Solar\nLocos Baixa Softtop Teto Solar\nVoltar", "Selecionar", "Sair");
  1145.                     }
  1146.                     else if(pmodelid[playerid] == 561)
  1147.                     {
  1148.                         AddVehicleComponent(car,1055);
  1149.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1150.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco teto Alien componente no Stratum.");
  1151.                         ShowPlayerDialog(playerid, DIALOGID+6, DIALOG_STYLE_LIST, "Selecione o Teto Solar", "Roda arco Alien Teto Solar\nRoda arco Fluxo-X Teto Solar\nLocos Baixa Hardtop Teto Solar\nLocos Baixa Softtop Teto Solar\nVoltar", "Selecionar", "Sair");
  1152.                     }
  1153.                     else if(pmodelid[playerid] == 560)
  1154.                     {
  1155.                         AddVehicleComponent(car,1032);
  1156.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1157.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco teto Alien componente no Sultan.");
  1158.                         ShowPlayerDialog(playerid, DIALOGID+6, DIALOG_STYLE_LIST, "Selecione o Teto Solar", "Roda arco Alien Teto Solar\nRoda arco Fluxo-X Teto Solar\nLocos Baixa Hardtop Teto Solar\nLocos Baixa Softtop Teto Solar\nVoltar", "Selecionar", "Sair");
  1159.                     }
  1160.                     else if(pmodelid[playerid] == 558)
  1161.                     {
  1162.                         AddVehicleComponent(car,1088);
  1163.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1164.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco teto Alien componente no Uranus.");
  1165.                         ShowPlayerDialog(playerid, DIALOGID+6, DIALOG_STYLE_LIST, "Selecione o Teto Solar", "Roda arco Alien Teto Solar\nRoda arco Fluxo-X Teto Solar\nLocos Baixa Hardtop Teto Solar\nLocos Baixa Softtop Teto Solar\nVoltar", "Selecionar", "Sair");
  1166.                     }
  1167.                     }
  1168.                     else
  1169.                     {
  1170.                     SendClientMessage(playerid,COLOR_RED,"[ERRO]: Você só pode adicionar esse componente para Roda arco tipos de carro!");
  1171.                     ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  1172.                     }
  1173.             }
  1174.             if(listitem == 1)//Roda arco Carro Fluxo-X Teto Solar
  1175.             {
  1176.                 if(pmodelid[playerid] == 562 ||
  1177.                 pmodelid[playerid] == 565 ||
  1178.                 pmodelid[playerid] == 559 ||
  1179.                 pmodelid[playerid] == 561 ||
  1180.                 pmodelid[playerid] == 560)
  1181.                 {
  1182.  
  1183.  
  1184.                     new car = GetPlayerVehicleID(playerid);
  1185.                     if(pmodelid[playerid] == 562)
  1186.                     {
  1187.                         AddVehicleComponent(car,1035);
  1188.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1189.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco telhado Fluxo-X de ventilação componente no Elegy.");
  1190.                         ShowPlayerDialog(playerid, DIALOGID+6, DIALOG_STYLE_LIST, "Selecione o Teto Solar", "Roda arco Alien Teto Solar\nRoda arco Fluxo-X Teto Solar\nLocos Baixa Hardtop Teto Solar\nLocos Baixa Softtop Teto Solar\nVoltar", "Selecionar", "Sair");
  1191.                     }
  1192.                     else if(pmodelid[playerid] == 565)
  1193.                     {
  1194.                         AddVehicleComponent(car,1053);
  1195.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1196.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco telhado Fluxo-X de ventilação componente no Flash.");
  1197.                         ShowPlayerDialog(playerid, DIALOGID+6, DIALOG_STYLE_LIST, "Selecione o Teto Solar", "Roda arco Alien Teto Solar\nRoda arco Fluxo-X Teto Solar\nLocos Baixa Hardtop Teto Solar\nLocos Baixa Softtop Teto Solar\nVoltar", "Selecionar", "Sair");
  1198.                     }
  1199.                     else if(pmodelid[playerid] == 559)
  1200.                     {
  1201.                         AddVehicleComponent(car,1068);
  1202.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1203.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco telhado Fluxo-X de ventilação componente no Jester.");
  1204.                         ShowPlayerDialog(playerid, DIALOGID+6, DIALOG_STYLE_LIST, "Selecione o Teto Solar", "Roda arco Alien Teto Solar\nRoda arco Fluxo-X Teto Solar\nLocos Baixa Hardtop Teto Solar\nLocos Baixa Softtop Teto Solar\nVoltar", "Selecionar", "Sair");
  1205.                     }
  1206.                     else if(pmodelid[playerid] == 561)
  1207.                     {
  1208.                         AddVehicleComponent(car,1061);
  1209.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1210.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco telhado Fluxo-X de ventilação componente no Stratum.");
  1211.                         ShowPlayerDialog(playerid, DIALOGID+6, DIALOG_STYLE_LIST, "Selecione o Teto Solar", "Roda arco Alien Teto Solar\nRoda arco Fluxo-X Teto Solar\nLocos Baixa Hardtop Teto Solar\nLocos Baixa Softtop Teto Solar\nVoltar", "Selecionar", "Sair");
  1212.                     }
  1213.                     else if(pmodelid[playerid] == 560)
  1214.                     {
  1215.                         AddVehicleComponent(car,1033);
  1216.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1217.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco telhado Fluxo-X de ventilação componente no Sultan.");
  1218.                         ShowPlayerDialog(playerid, DIALOGID+6, DIALOG_STYLE_LIST, "Selecione o Teto Solar", "Roda arco Alien Teto Solar\nRoda arco Fluxo-X Teto Solar\nLocos Baixa Hardtop Teto Solar\nLocos Baixa Softtop Teto Solar\nVoltar", "Selecionar", "Sair");
  1219.                     }
  1220.                     else if(pmodelid[playerid] == 558)
  1221.                     {
  1222.                         AddVehicleComponent(car,1091);
  1223.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1224.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco telhado Fluxo-X de ventilação componente no Uranus.");
  1225.                         ShowPlayerDialog(playerid, DIALOGID+6, DIALOG_STYLE_LIST, "Selecione o Teto Solar", "Roda arco Alien Teto Solar\nRoda arco Fluxo-X Teto Solar\nLocos Baixa Hardtop Teto Solar\nLocos Baixa Softtop Teto Solar\nVoltar", "Selecionar", "Sair");
  1226.                     }
  1227.                 }
  1228.                 else
  1229.                 {
  1230.                     SendClientMessage(playerid,COLOR_RED,"[ERRO]: Você só pode adicionar esse componente para Roda arco tipos de carro!");
  1231.                     ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  1232.                 }
  1233.             }
  1234.             if(listitem == 2)//Locos Cromagem baixa Carro Hardtop Teto solar
  1235.             {
  1236.                 if(pmodelid[playerid] == 567 ||
  1237.                 pmodelid[playerid] == 536)
  1238.                 {
  1239.                     new car = GetPlayerVehicleID(playerid);
  1240.                     if(pmodelid[playerid] == 567)
  1241.                     {
  1242.                         AddVehicleComponent(car,1130);
  1243.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1244.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos baixo Hardtop componente no telhado em Brodway.");
  1245.                         ShowPlayerDialog(playerid, DIALOGID+6, DIALOG_STYLE_LIST, "Selecione o Teto Solar", "Roda arco Alien Teto Solar\nRoda arco Fluxo-X Teto Solar\nLocos Baixa Hardtop Teto Solar\nLocos Baixa Softtop Teto Solar\nVoltar", "Selecionar", "Sair");
  1246.                     }
  1247.                     else if(pmodelid[playerid] == 536)
  1248.                     {
  1249.                         AddVehicleComponent(car,1128);
  1250.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1251.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos baixo Hardtop componente no telhado em Blade.");
  1252.                         ShowPlayerDialog(playerid, DIALOGID+6, DIALOG_STYLE_LIST, "Selecione o Teto Solar", "Roda arco Alien Teto Solar\nRoda arco Fluxo-X Teto Solar\nLocos Baixa Hardtop Teto Solar\nLocos Baixa Softtop Teto Solar\nVoltar", "Selecionar", "Sair");
  1253.                     }
  1254.                 }
  1255.                 else
  1256.                 {
  1257.                     SendClientMessage(playerid,COLOR_RED,"[ERRO]: Você só pode adicionar esse componente para os tipos de carro Savanna Locos baixo e Blade!");
  1258.                     ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  1259.                 }
  1260.             }
  1261.             if(listitem == 3)//Locos Cromagem baixa Carro Softtop Teto Solar
  1262.             {
  1263.                  if(pmodelid[playerid] == 567 ||
  1264.                 pmodelid[playerid] == 536)
  1265.                 {
  1266.                     new car = GetPlayerVehicleID(playerid);
  1267.                     if(pmodelid[playerid] == 567)
  1268.                     {
  1269.                         AddVehicleComponent(car,1131);
  1270.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1271.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos baixo softtop componente no telhado em Brodway.");
  1272.                         ShowPlayerDialog(playerid, DIALOGID+6, DIALOG_STYLE_LIST, "Selecione o Teto Solar", "Roda arco Alien Teto Solar\nRoda arco Fluxo-X Teto Solar\nLocos Baixa Hardtop Teto Solar\nLocos Baixa Softtop Teto Solar\nVoltar", "Selecionar", "Sair");
  1273.                     }
  1274.                     else if(pmodelid[playerid] == 536)
  1275.                     {
  1276.                         AddVehicleComponent(car,1103);
  1277.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1278.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos baixo softtop componente no telhado em Blade.");
  1279.                         ShowPlayerDialog(playerid, DIALOGID+6, DIALOG_STYLE_LIST, "Selecione o Teto Solar", "Roda arco Alien Teto Solar\nRoda arco Fluxo-X Teto Solar\nLocos Baixa Hardtop Teto Solar\nLocos Baixa Softtop Teto Solar\nVoltar", "Selecionar", "Sair");
  1280.                     }
  1281.                     }
  1282.                     else
  1283.                     {
  1284.                     SendClientMessage(playerid,COLOR_RED,"[ERRO]: Você só pode adicionar esse componente para os tipos de carro Savanna Locos baixo e Blade!");
  1285.                     ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  1286.                     }
  1287.             }
  1288.             if(listitem == 4)//Voltar
  1289.             {
  1290.                  ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  1291.             }
  1292.          }
  1293.     }
  1294.     if(dialogid == DIALOGID+7)//Aérofolio
  1295.     {
  1296.         if(response)
  1297.         {
  1298.             if(listitem == 0)//Roda arco Carro Alien Aérofolio
  1299.             {
  1300.                 if(pmodelid[playerid] == 562 ||
  1301.                 pmodelid[playerid] == 565 ||
  1302.                 pmodelid[playerid] == 559 ||
  1303.                 pmodelid[playerid] == 561 ||
  1304.                 pmodelid[playerid] == 560)
  1305.                 {
  1306.  
  1307.                     new car = GetPlayerVehicleID(playerid);
  1308.                     if(pmodelid[playerid] == 562)
  1309.                     {
  1310.                         AddVehicleComponent(car,1147);
  1311.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1312.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Alien componente Aérofolio sobre Elegy.");
  1313.                         ShowPlayerDialog(playerid, DIALOGID+7, DIALOG_STYLE_LIST, "Selecione o Aérofólio", "Alien Aérofólio\nFluxo-X Aérofólio\nVoltar", "Selecionar", "Sair");
  1314.                     }
  1315.                     else if(pmodelid[playerid] == 565)
  1316.                     {
  1317.                         AddVehicleComponent(car,1049);
  1318.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1319.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Alien componente Aérofolio sobre Elegy.");
  1320.                         ShowPlayerDialog(playerid, DIALOGID+7, DIALOG_STYLE_LIST, "Selecione o Aérofólio", "Alien Aérofólio\nFluxo-X Aérofólio\nVoltar", "Selecionar", "Sair");
  1321.                     }
  1322.                     else if(pmodelid[playerid] == 559)
  1323.                     {
  1324.                         AddVehicleComponent(car,1162);
  1325.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1326.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Alien componente Aérofolio sobre Elegy.");
  1327.                         ShowPlayerDialog(playerid, DIALOGID+7, DIALOG_STYLE_LIST, "Selecione o Aérofólio", "Alien Aérofólio\nFluxo-X Aérofólio\nVoltar", "Selecionar", "Sair");
  1328.                     }
  1329.                     else if(pmodelid[playerid] == 561)
  1330.                     {
  1331.                         AddVehicleComponent(car,1158);
  1332.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1333.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Alien componente Aérofolio sobre Elegy.");
  1334.                         ShowPlayerDialog(playerid, DIALOGID+7, DIALOG_STYLE_LIST, "Selecione o Aérofólio", "Alien Aérofólio\nFluxo-X Aérofólio\nVoltar", "Selecionar", "Sair");
  1335.                     }
  1336.                     else if(pmodelid[playerid] == 560)
  1337.                     {
  1338.                         AddVehicleComponent(car,1138);
  1339.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1340.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Alien componente Aérofolio sobre Elegy.");
  1341.                         ShowPlayerDialog(playerid, DIALOGID+7, DIALOG_STYLE_LIST, "Selecione o Aérofólio", "Alien Aérofólio\nFluxo-X Aérofólio\nVoltar", "Selecionar", "Sair");
  1342.                     }
  1343.                     else if(pmodelid[playerid] == 558)
  1344.                     {
  1345.                         AddVehicleComponent(car,1164);
  1346.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1347.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Alien componente Aérofolio sobre Elegy.");
  1348.                         ShowPlayerDialog(playerid, DIALOGID+7, DIALOG_STYLE_LIST, "Selecione o Aérofólio", "Alien Aérofólio\nFluxo-X Aérofólio\nVoltar", "Selecionar", "Sair");
  1349.                     }
  1350.                     }
  1351.                     else
  1352.                     {
  1353.                     SendClientMessage(playerid,COLOR_RED,"[ERRO]: Você só pode adicionar esse componente para Roda arco tipos de carro!");
  1354.                     ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  1355.                     }
  1356.             }
  1357.             if(listitem == 1)//Roda arco Carro Fluxo-X Aérofólio
  1358.             {
  1359.                 if(pmodelid[playerid] == 562 ||
  1360.                 pmodelid[playerid] == 565 ||
  1361.                 pmodelid[playerid] == 559 ||
  1362.                 pmodelid[playerid] == 561 ||
  1363.                 pmodelid[playerid] == 560)
  1364.                 {
  1365.                     new car = GetPlayerVehicleID(playerid);
  1366.                     if(pmodelid[playerid] == 562)
  1367.                     {
  1368.                         AddVehicleComponent(car,1146);
  1369.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1370.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Fluxo-X componente Aérofólio sobre Elegy.");
  1371.                         ShowPlayerDialog(playerid, DIALOGID+7, DIALOG_STYLE_LIST, "Selecione o Aérofólio", "Alien Aérofólio\nFluxo-X Aérofólio\nVoltar", "Selecionar", "Sair");
  1372.                     }
  1373.                     else if(pmodelid[playerid] == 565)
  1374.                     {
  1375.                         AddVehicleComponent(car,1150);
  1376.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1377.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Fluxo-X componente Aérofólio sobre Flash.");
  1378.                         ShowPlayerDialog(playerid, DIALOGID+7, DIALOG_STYLE_LIST, "Selecione o Aérofólio", "Alien Aérofólio\nFluxo-X Aérofólio\nVoltar", "Selecionar", "Sair");
  1379.                     }
  1380.                     else if(pmodelid[playerid] == 559)
  1381.                     {
  1382.                         AddVehicleComponent(car,1158);
  1383.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1384.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Fluxo-X componente Aérofólio sobre Jester.");
  1385.                         ShowPlayerDialog(playerid, DIALOGID+7, DIALOG_STYLE_LIST, "Selecione o Aérofólio", "Alien Aérofólio\nFluxo-X Aérofólio\nVoltar", "Selecionar", "Sair");
  1386.                     }
  1387.                     else if(pmodelid[playerid] == 561)
  1388.                     {
  1389.                         AddVehicleComponent(car,1060);
  1390.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1391.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Fluxo-X componente Aérofólio sobre Stratum.");
  1392.                         ShowPlayerDialog(playerid, DIALOGID+7, DIALOG_STYLE_LIST, "Selecione o Aérofólio", "Alien Aérofólio\nFluxo-X Aérofólio\nVoltar", "Selecionar", "Sair");
  1393.                     }
  1394.                     else if(pmodelid[playerid] == 560)
  1395.                     {
  1396.                         AddVehicleComponent(car,1139);
  1397.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1398.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Fluxo-X componente Aérofólio sobre Sultan.");
  1399.                         ShowPlayerDialog(playerid, DIALOGID+7, DIALOG_STYLE_LIST, "Selecione o Aérofólio", "Alien Aérofólio\nFluxo-X Aérofólio\nVoltar", "Selecionar", "Sair");
  1400.                     }
  1401.                     else if(pmodelid[playerid] == 558)
  1402.                     {
  1403.                         AddVehicleComponent(car,1163);
  1404.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1405.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Fluxo-X componente Aérofólio sobre Uranus.");
  1406.                         ShowPlayerDialog(playerid, DIALOGID+7, DIALOG_STYLE_LIST, "Selecione o Aérofólio", "Alien Aérofólio\nFluxo-X Aérofólio\nVoltar", "Selecionar", "Sair");
  1407.                     }
  1408.                     }
  1409.                     else
  1410.                     {
  1411.                     SendClientMessage(playerid,COLOR_RED,"[ERRO]: Você só pode adicionar esse componente para tipos Arco Fluxo-X carro!");
  1412.                     ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  1413.                     }
  1414.             }
  1415.             if(listitem == 2)//BACK
  1416.             {
  1417.                  ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  1418.             }
  1419.          }
  1420.     }
  1421.     if(dialogid == DIALOGID+8)//Saia Lateral
  1422.     {
  1423.         if(response)
  1424.         {
  1425.             if(listitem == 0)//Roda arco Carros Alien Saia Lateral
  1426.             {
  1427.                 if(pmodelid[playerid] == 562 ||
  1428.                 pmodelid[playerid] == 565 ||
  1429.                 pmodelid[playerid] == 559 ||
  1430.                 pmodelid[playerid] == 561 ||
  1431.                 pmodelid[playerid] == 560)
  1432.                 {
  1433.  
  1434.                     new car = GetPlayerVehicleID(playerid);
  1435.                     if(pmodelid[playerid] == 562)
  1436.                     {
  1437.                         AddVehicleComponent(car,1036);
  1438.                         AddVehicleComponent(car,1040);
  1439.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1440.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Alien componente Saias em Elegy.");
  1441.                         ShowPlayerDialog(playerid, DIALOGID+8, DIALOG_STYLE_LIST, "Selecione a Saia", "Roda arco Alien Saia\nRoda arco Fluxo-X Saia\nLocos Cromagem baixa Tira\nLocos Cromagem baixa Chamas\nLocos Cromagem baixa arcos\nLocos Cromagem baixa Trim\nLocos baixa Roda de cobre\nVoltar", "Selecionar", "Sair");
  1442.                     }
  1443.                     else if(pmodelid[playerid] == 565)
  1444.                     {
  1445.                         AddVehicleComponent(car,1047);
  1446.                         AddVehicleComponent(car,1051);
  1447.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1448.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Alien componente Saias Vent em Flash.");
  1449.                         ShowPlayerDialog(playerid, DIALOGID+8, DIALOG_STYLE_LIST, "Selecione a Saia", "Roda arco Alien Saia\nRoda arco Fluxo-X Saia\nLocos Cromagem baixa Tira\nLocos Cromagem baixa Chamas\nLocos Cromagem baixa arcos\nLocos Cromagem baixa Trim\nLocos baixa Roda de cobre\nVoltar", "Selecionar", "Sair");
  1450.                     }
  1451.                     else if(pmodelid[playerid] == 559)
  1452.                     {
  1453.                         AddVehicleComponent(car,1069);
  1454.                         AddVehicleComponent(car,1071);
  1455.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1456.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Alien componente Saias em Jester.");
  1457.                         ShowPlayerDialog(playerid, DIALOGID+8, DIALOG_STYLE_LIST, "Selecione a Saia", "Roda arco Alien Saia\nRoda arco Fluxo-X Saia\nLocos Cromagem baixa Tira\nLocos Cromagem baixa Chamas\nLocos Cromagem baixa arcos\nLocos Cromagem baixa Trim\nLocos baixa Roda de cobre\nVoltar", "Selecionar", "Sair");
  1458.                     }
  1459.                     else if(pmodelid[playerid] == 561)
  1460.                     {
  1461.                         AddVehicleComponent(car,1056);
  1462.                         AddVehicleComponent(car,1062);
  1463.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1464.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Alien componente Saias em Stratum.");
  1465.                         ShowPlayerDialog(playerid, DIALOGID+8, DIALOG_STYLE_LIST, "Selecione a Saia", "Roda arco Alien Saia\nRoda arco Fluxo-X Saia\nLocos Cromagem baixa Tira\nLocos Cromagem baixa Chamas\nLocos Cromagem baixa arcos\nLocos Cromagem baixa Trim\nLocos baixa Roda de cobre\nVoltar", "Selecionar", "Sair");
  1466.                     }
  1467.                     else if(pmodelid[playerid] == 560)
  1468.                     {
  1469.                         AddVehicleComponent(car,1026);
  1470.                         AddVehicleComponent(car,1027);
  1471.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1472.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco saias laterais Alien componente pára-choques em Sultan.");
  1473.                         ShowPlayerDialog(playerid, DIALOGID+8, DIALOG_STYLE_LIST, "Selecione a Saia", "Roda arco Alien Saia\nRoda arco Fluxo-X Saia\nLocos Cromagem baixa Tira\nLocos Cromagem baixa Chamas\nLocos Cromagem baixa arcos\nLocos Cromagem baixa Trim\nLocos baixa Roda de cobre\nVoltar", "Selecionar", "Sair");
  1474.                     }
  1475.                     else if(pmodelid[playerid] == 558)
  1476.                     {
  1477.                         AddVehicleComponent(car,1090);
  1478.                         AddVehicleComponent(car,1094);
  1479.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1480.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Alien componente Saias em Uranus.");
  1481.                         ShowPlayerDialog(playerid, DIALOGID+8, DIALOG_STYLE_LIST, "Selecione a Saia", "Roda arco Alien Saia\nRoda arco Fluxo-X Saia\nLocos Cromagem baixa Tira\nLocos Cromagem baixa Chamas\nLocos Cromagem baixa arcos\nLocos Cromagem baixa Trim\nLocos baixa Roda de cobre\nVoltar", "Selecionar", "Sair");
  1482.                     }
  1483.                     }
  1484.                     else
  1485.                     {
  1486.                     SendClientMessage(playerid,COLOR_RED,"[ERRO]: Você só pode adicionar esse componente para Roda arco tipos de carro!");
  1487.                     ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  1488.                     }
  1489.             }
  1490.             if(listitem == 1)//Roda arco Carro Fluxo-X Saias Laterais
  1491.             {
  1492.                 if(pmodelid[playerid] == 562 ||
  1493.                 pmodelid[playerid] == 565 ||
  1494.                 pmodelid[playerid] == 559 ||
  1495.                 pmodelid[playerid] == 561 ||
  1496.                 pmodelid[playerid] == 560)
  1497.                 {
  1498.                     new car = GetPlayerVehicleID(playerid);
  1499.                     if(pmodelid[playerid] == 562)
  1500.                     {
  1501.                         AddVehicleComponent(car,1039);
  1502.                         AddVehicleComponent(car,1041);
  1503.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1504.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Roda arco Fluxo-X componente saias laterais em Elegy.");
  1505.                         ShowPlayerDialog(playerid, DIALOGID+8, DIALOG_STYLE_LIST, "Selecione a Saia", "Roda arco Alien Saia\nRoda arco Fluxo-X Saia\nLocos Cromagem baixa Tira\nLocos Cromagem baixa Chamas\nLocos Cromagem baixa arcos\nLocos Cromagem baixa Trim\nLocos baixa Roda de cobre\nVoltar", "Selecionar", "Sair");
  1506.                     }
  1507.                     else if(pmodelid[playerid] == 565)
  1508.                     {
  1509.                         AddVehicleComponent(car,1048);
  1510.                         AddVehicleComponent(car,1052);
  1511.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1512.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Wheel Arch X-Flow componente saias laterais em Flash.");
  1513.                         ShowPlayerDialog(playerid, DIALOGID+8, DIALOG_STYLE_LIST, "Selecione a Saia", "Roda arco Alien Saia\nRoda arco Fluxo-X Saia\nLocos Cromagem baixa Tira\nLocos Cromagem baixa Chamas\nLocos Cromagem baixa arcos\nLocos Cromagem baixa Trim\nLocos baixa Roda de cobre\nVoltar", "Selecionar", "Sair");
  1514.                     }
  1515.                     else if(pmodelid[playerid] == 559)
  1516.                     {
  1517.                         AddVehicleComponent(car,1070);
  1518.                         AddVehicleComponent(car,1072);
  1519.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1520.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Wheel Arch X-Flow componente saias laterais em Jester.");
  1521.                         ShowPlayerDialog(playerid, DIALOGID+8, DIALOG_STYLE_LIST, "Selecione a Saia", "Roda arco Alien Saia\nRoda arco Fluxo-X Saia\nLocos Cromagem baixa Tira\nLocos Cromagem baixa Chamas\nLocos Cromagem baixa arcos\nLocos Cromagem baixa Trim\nLocos baixa Roda de cobre\nVoltar", "Selecionar", "Sair");
  1522.                     }
  1523.                     else if(pmodelid[playerid] == 561)
  1524.                     {
  1525.                         AddVehicleComponent(car,1057);
  1526.                         AddVehicleComponent(car,1063);
  1527.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1528.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Wheel Arch X-Flow componente saias laterais em Stratum.");
  1529.                         ShowPlayerDialog(playerid, DIALOGID+8, DIALOG_STYLE_LIST, "Selecione a Saia", "Roda arco Alien Saia\nRoda arco Fluxo-X Saia\nLocos Cromagem baixa Tira\nLocos Cromagem baixa Chamas\nLocos Cromagem baixa arcos\nLocos Cromagem baixa Trim\nLocos baixa Roda de cobre\nVoltar", "Selecionar", "Sair");
  1530.                     }
  1531.                     else if(pmodelid[playerid] == 560)
  1532.                     {
  1533.                         AddVehicleComponent(car,1031);
  1534.                         AddVehicleComponent(car,1030);
  1535.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1536.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Wheel Arch X-Flow componente saias laterais em Sultan.");
  1537.                         ShowPlayerDialog(playerid, DIALOGID+8, DIALOG_STYLE_LIST, "Selecione a Saia", "Roda arco Alien Saia\nRoda arco Fluxo-X Saia\nLocos Cromagem baixa Tira\nLocos Cromagem baixa Chamas\nLocos Cromagem baixa arcos\nLocos Cromagem baixa Trim\nLocos baixa Roda de cobre\nVoltar", "Selecionar", "Sair");
  1538.                     }
  1539.                     else if(pmodelid[playerid] == 558)
  1540.                     {
  1541.                         AddVehicleComponent(car,1093);
  1542.                         AddVehicleComponent(car,1095);
  1543.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1544.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Wheel Arch X-Flow componente saias laterais em Uranus.");
  1545.                         ShowPlayerDialog(playerid, DIALOGID+8, DIALOG_STYLE_LIST, "Selecione a Saia", "Roda arco Alien Saia\nRoda arco Fluxo-X Saia\nLocos Cromagem baixa Tira\nLocos Cromagem baixa Chamas\nLocos Cromagem baixa arcos\nLocos Cromagem baixa Trim\nLocos baixa Roda de cobre\nVoltar", "Selecionar", "Sair");
  1546.                     }
  1547.                     }
  1548.                     else
  1549.                     {
  1550.                     SendClientMessage(playerid,COLOR_RED,"[ERRO]: Você só pode adicionar esse componente para Roda arco tipos de carro!");
  1551.                     ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  1552.                     }
  1553.             }
  1554.             if(listitem == 2)//Locos Cromagem baixa Carros Cromagem Strip Saia Lateral
  1555.             {
  1556.                  if(pmodelid[playerid] == 575 ||
  1557.                    pmodelid[playerid] == 536 ||
  1558.                    pmodelid[playerid] == 576 ||
  1559.                    pmodelid[playerid] == 567)
  1560.                    {
  1561.                     new car = GetPlayerVehicleID(playerid);
  1562.                     if(pmodelid[playerid] == 575)
  1563.                     {
  1564.                         AddVehicleComponent(car,1042);
  1565.                         AddVehicleComponent(car,1099);
  1566.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1567.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Side Locos Cromagem baixa Strip componente Saias em Brodway.");
  1568.                         ShowPlayerDialog(playerid, DIALOGID+8, DIALOG_STYLE_LIST, "Selecione a Saia", "Roda arco Alien Saia\nRoda arco Fluxo-X Saia\nLocos Cromagem baixa Tira\nLocos Cromagem baixa Chamas\nLocos Cromagem baixa arcos\nLocos Cromagem baixa Trim\nLocos baixa Roda de cobre\nVoltar", "Selecionar", "Sair");
  1569.                     }
  1570.                     else if(pmodelid[playerid] == 567)
  1571.                     {
  1572.                         AddVehicleComponent(car,1102);
  1573.                         AddVehicleComponent(car,1133);
  1574.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1575.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Side Locos Cromagem baixa Strip componente Saias em Savanna.");
  1576.                         ShowPlayerDialog(playerid, DIALOGID+8, DIALOG_STYLE_LIST, "Selecione a Saia", "Roda arco Alien Saia\nRoda arco Fluxo-X Saia\nLocos Cromagem baixa Tira\nLocos Cromagem baixa Chamas\nLocos Cromagem baixa arcos\nLocos Cromagem baixa Trim\nLocos baixa Roda de cobre\nVoltar", "Selecionar", "Sair");
  1577.                     }
  1578.                     else if(pmodelid[playerid] == 576)
  1579.                     {
  1580.                         AddVehicleComponent(car,1134);
  1581.                         AddVehicleComponent(car,1137);
  1582.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1583.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Side Locos Cromagem baixa Strip componente Saias em Tornado.");
  1584.                         ShowPlayerDialog(playerid, DIALOGID+8, DIALOG_STYLE_LIST, "Selecione a Saia", "Roda arco Alien Saia\nRoda arco Fluxo-X Saia\nLocos Cromagem baixa Tira\nLocos Cromagem baixa Chamas\nLocos Cromagem baixa arcos\nLocos Cromagem baixa Trim\nLocos baixa Roda de cobre\nVoltar", "Selecionar", "Sair");
  1585.                     }
  1586.                     else if(pmodelid[playerid] == 536)
  1587.                     {
  1588.                         AddVehicleComponent(car,1108);
  1589.                         AddVehicleComponent(car,1107);
  1590.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1591.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Side Locos Cromagem baixa Strip componente Saias em Blade.");
  1592.                         ShowPlayerDialog(playerid, DIALOGID+8, DIALOG_STYLE_LIST, "Selecione a Saia", "Roda arco Alien Saia\nRoda arco Fluxo-X Saia\nLocos Cromagem baixa Tira\nLocos Cromagem baixa Chamas\nLocos Cromagem baixa arcos\nLocos Cromagem baixa Trim\nLocos baixa Roda de cobre\nVoltar", "Selecionar", "Sair");
  1593.                     }
  1594.                     }
  1595.                     else
  1596.                     {
  1597.                     SendClientMessage(playerid,COLOR_RED,"[ERRO]: Você só pode adicionar esse componente para tipos Locos baixo Carro Brodway, Savanna Tornado e Blade!");
  1598.                     ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  1599.                     }
  1600.             }
  1601.             if(listitem == 3)//Locos Cromagem baixa Carros Cromagem Flames Saia Lateral
  1602.             {
  1603.                 if(pmodelid[playerid] == 534 ||
  1604.                 pmodelid[playerid] == 534)
  1605.                 {
  1606.                     new car = GetPlayerVehicleID(playerid);
  1607.                     if(pmodelid[playerid] == 534)
  1608.                     {
  1609.                         AddVehicleComponent(car,1122);
  1610.                         AddVehicleComponent(car,1101);
  1611.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1612.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos Cromagem baixa Flames componente saias laterais em Remington.");
  1613.                         ShowPlayerDialog(playerid, DIALOGID+8, DIALOG_STYLE_LIST, "Selecione a Saia", "Roda arco Alien Saia\nRoda arco Fluxo-X Saia\nLocos Cromagem baixa Tira\nLocos Cromagem baixa Chamas\nLocos Cromagem baixa arcos\nLocos Cromagem baixa Trim\nLocos baixa Roda de cobre\nVoltar", "Selecionar", "Sair");
  1614.                     }
  1615.                     }
  1616.                     else
  1617.                     {
  1618.                     SendClientMessage(playerid,COLOR_RED,"[ERRO]: Você só pode adicionar esse componente para Locos baixo tipo de carro Remington!");
  1619.                     ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  1620.                     }
  1621.             }
  1622.             if(listitem == 4)//Locos Cromagem baixa Carros Cromagem Arcos Saia
  1623.             {
  1624.                 if(pmodelid[playerid] == 534 ||
  1625.                 pmodelid[playerid] == 534)
  1626.                 {
  1627.                     new car = GetPlayerVehicleID(playerid);
  1628.                     if(pmodelid[playerid] == 534)
  1629.                     {
  1630.                         AddVehicleComponent(car,1106);
  1631.                         AddVehicleComponent(car,1124);
  1632.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1633.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Side Locos Cromagem baixa Arcos componente Saias em Remington.");
  1634.                         ShowPlayerDialog(playerid, DIALOGID+8, DIALOG_STYLE_LIST, "Selecione a Saia", "Roda arco Alien Saia\nRoda arco Fluxo-X Saia\nLocos Cromagem baixa Tira\nLocos Cromagem baixa Chamas\nLocos Cromagem baixa arcos\nLocos Cromagem baixa Trim\nLocos baixa Roda de cobre\nVoltar", "Selecionar", "Sair");
  1635.                     }
  1636.                     }
  1637.                     else
  1638.                     {
  1639.                     SendClientMessage(playerid,COLOR_RED,"[ERRO]: Você só pode adicionar esse componente para Locos baixo tipo de carro Remington!");
  1640.                     ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  1641.                     }
  1642.             }
  1643.             if(listitem == 5)//Locos Cromagem baixa Carros Cromagem Trim Saia Lateral
  1644.             {
  1645.                 if(pmodelid[playerid] == 535)
  1646.  
  1647.                 {
  1648.                     new car = GetPlayerVehicleID(playerid);
  1649.                     if(pmodelid[playerid] == 535)
  1650.                     {
  1651.                         AddVehicleComponent(car,1118);
  1652.                         AddVehicleComponent(car,1120);
  1653.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1654.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Side Locos Cromagem baixa Trim componente Saias em Slamvan.");
  1655.                         ShowPlayerDialog(playerid, DIALOGID+8, DIALOG_STYLE_LIST, "Selecione a Saia", "Roda arco Alien Saia\nRoda arco Fluxo-X Saia\nLocos Cromagem baixa Tira\nLocos Cromagem baixa Chamas\nLocos Cromagem baixa arcos\nLocos Cromagem baixa Trim\nLocos baixa Roda de cobre\nVoltar", "Selecionar", "Sair");
  1656.                     }
  1657.                     }
  1658.                     else
  1659.                     {
  1660.                     SendClientMessage(playerid,COLOR_RED,"[ERRO]: Você só pode adicionar esse componente para Locos baixo Slamvan tipo de carro!");
  1661.                     ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  1662.                     }
  1663.             }
  1664.             if(listitem == 6)//Locos Cromagem baixa Carros Cromagem Wheelcovers Saia Lateral
  1665.             {
  1666.                 if(pmodelid[playerid] == 535)
  1667.  
  1668.                 {
  1669.                     new car = GetPlayerVehicleID(playerid);
  1670.                     if(pmodelid[playerid] == 535)
  1671.                     {
  1672.                         AddVehicleComponent(car,1119);
  1673.                         AddVehicleComponent(car,1121);
  1674.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1675.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos Cromagem baixa componente Wheelcovers em Slamvan.");
  1676.                         ShowPlayerDialog(playerid, DIALOGID+8, DIALOG_STYLE_LIST, "Selecione a Saia", "Roda arco Alien Saia\nRoda arco Fluxo-X Saia\nLocos Cromagem baixa Tira\nLocos Cromagem baixa Chamas\nLocos Cromagem baixa arcos\nLocos Cromagem baixa Trim\nLocos baixa Roda de cobre\nVoltar", "Selecionar", "Sair");
  1677.                     }
  1678.                     }
  1679.                     else
  1680.                     {
  1681.                     SendClientMessage(playerid,COLOR_RED,"[ERRO]: Você só pode adicionar esse componente para Locos baixo Slamvan tipo de carro!");
  1682.                     ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  1683.                     }
  1684.             }
  1685.             if(listitem == 7)//Voltar
  1686.             {
  1687.                  ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  1688.             }
  1689.          }
  1690.     }
  1691.     if(dialogid == DIALOGID+9)//Bullbars
  1692.     {
  1693.         if(response)
  1694.         {
  1695.             if(listitem == 0)//Locos Cromagem baixa Carros Cromagem Grade
  1696.             {
  1697.                 if(pmodelid[playerid] == 534)
  1698.  
  1699.                 {
  1700.                     new car = GetPlayerVehicleID(playerid);
  1701.                     if(pmodelid[playerid] == 534)
  1702.                     {
  1703.                         AddVehicleComponent(car,1100);
  1704.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1705.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: You have succesfully added Locos Low Chrome Grill component on Remington.");
  1706.                         ShowPlayerDialog(playerid, DIALOGID+9, DIALOG_STYLE_LIST, "Selecione a Bullbar", "Locos Cromagem baixa Grade\nLocos Cromagem baixa Bars\nLocos Cromagem baixa Luzes\nLocos Cromagem baixa Bullbar\nVoltar", "Selecionar", "Sair");
  1707.                     }
  1708.                 }
  1709.                 else
  1710.                 {
  1711.                     SendClientMessage(playerid,COLOR_RED,"[ERRO]: Você só pode adicionar esse componente para Locos baixo tipo de carro Remington!");
  1712.                     ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  1713.                 }
  1714.             }
  1715.             if(listitem == 1)//Locos Cromagem baixa Carros Cromagem Bars
  1716.             {
  1717.                 if(pmodelid[playerid] == 534)
  1718.  
  1719.                 {
  1720.                     new car = GetPlayerVehicleID(playerid);
  1721.                     if(pmodelid[playerid] == 534)
  1722.                     {
  1723.                         AddVehicleComponent(car,1123);
  1724.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1725.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos Cromagem baixa componente Bars em Remington.");
  1726.                         ShowPlayerDialog(playerid, DIALOGID+9, DIALOG_STYLE_LIST, "Selecione a Bullbar", "Locos Cromagem baixa Grade\nLocos Cromagem baixa Bars\nLocos Cromagem baixa Luzes\nLocos Cromagem baixa Bullbar\nVoltar", "Selecionar", "Sair");
  1727.                     }
  1728.                 }
  1729.                 else
  1730.                 {
  1731.                     SendClientMessage(playerid,COLOR_RED,"[ERRO]: Você só pode adicionar esse componente para Locos baixo tipo de carro Remington!");
  1732.                     ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  1733.                 }
  1734.             }
  1735.             if(listitem == 2)//Locos Cromagem baixa Carros Cromagem Luzes
  1736.             {
  1737.                 if(pmodelid[playerid] == 534)
  1738.  
  1739.                 {
  1740.                     new car = GetPlayerVehicleID(playerid);
  1741.                     if(pmodelid[playerid] == 534)
  1742.                     {
  1743.                         AddVehicleComponent(car,1125);
  1744.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1745.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos componente baixa Luzes no Cromagem Remington.");
  1746.                         ShowPlayerDialog(playerid, DIALOGID+9, DIALOG_STYLE_LIST, "Selecione a Bullbar", "Locos Cromagem baixa Grade\nLocos Cromagem baixa Bars\nLocos Cromagem baixa Luzes\nLocos Cromagem baixa Bullbar\nVoltar", "Selecionar", "Sair");
  1747.                     }
  1748.                 }
  1749.                 else
  1750.                 {
  1751.                     SendClientMessage(playerid,COLOR_RED,"[ERRO]: Você só pode adicionar esse componente para o carro Remington!");
  1752.                     ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  1753.                 }
  1754.             }
  1755.             if(listitem == 3)//Locos Cromagem baixa Carros Cromagem Bullbar
  1756.             {
  1757.                 if(pmodelid[playerid] == 535)
  1758.  
  1759.                 {
  1760.                     new car = GetPlayerVehicleID(playerid);
  1761.                     if(pmodelid[playerid] == 535)
  1762.                     {
  1763.                         AddVehicleComponent(car,1117);
  1764.                         PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1765.                         SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Locos Cromagem baixa componente Luzes em Slamvan.");
  1766.                         ShowPlayerDialog(playerid, DIALOGID+9, DIALOG_STYLE_LIST, "Selecione a Bullbar", "Locos Cromagem baixa Grade\nLocos Cromagem baixa Bars\nLocos Cromagem baixa Luzes\nLocos Cromagem baixa Bullbar\nVoltar", "Selecionar", "Sair");
  1767.                     }
  1768.                 }
  1769.                 else
  1770.                 {
  1771.                     SendClientMessage(playerid,COLOR_RED,"[ERRO]: Você só pode adicionar esse componente para Locos baixa Slamvan tipo de carro!");
  1772.                     ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  1773.                 }
  1774.             }
  1775.             if(listitem == 4)//Voltar
  1776.             {
  1777.                  ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  1778.             }
  1779.        }
  1780.     }
  1781.     if(dialogid == DIALOGID+10)//Rodas
  1782.     {
  1783.         if(response)
  1784.         {
  1785.             if(listitem == 0)//Offroad
  1786.             {
  1787.                  new car = GetPlayerVehicleID(playerid);
  1788.                  AddVehicleComponent(car,1025);
  1789.                  PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1790.                  SendClientMessage(playerid,COLOR_YELLOW,"[INFO] Você adicionou Offroad Rodas.");
  1791.                  ShowPlayerDialog(playerid, DIALOGID+10, DIALOG_STYLE_LIST, "Selecione o Tipo da Roda", "Offroad\nMega\nWires\nTwist\nGrove\nImport\nAtomic\nAhab\nVirtual\nAccess\nProxima Página\nVoltar", "Selecionar", "Sair");
  1792.             }
  1793.             if(listitem == 1)//Mega
  1794.             {
  1795.                  new car = GetPlayerVehicleID(playerid);
  1796.                  AddVehicleComponent(car,1074);
  1797.                  PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1798.                  SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Rodas Mega.");
  1799.                  ShowPlayerDialog(playerid, DIALOGID+10, DIALOG_STYLE_LIST, "Selecione o Tipo da Roda", "Offroad\nMega\nWires\nTwist\nGrove\nImport\nAtomic\nAhab\nVirtual\nAccess\nProxima Página\nVoltar", "Selecionar", "Sair");
  1800.             }
  1801.             if(listitem == 2)//Wires
  1802.             {
  1803.                  new car = GetPlayerVehicleID(playerid);
  1804.                  AddVehicleComponent(car,1076);
  1805.                  SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Wires Rodas.");
  1806.                  ShowPlayerDialog(playerid, DIALOGID+10, DIALOG_STYLE_LIST, "Selecione o Tipo da Roda", "Offroad\nMega\nWires\nTwist\nGrove\nImport\nAtomic\nAhab\nVirtual\nAccess\nProxima Página\nVoltar", "Selecionar", "Sair");
  1807.             }
  1808.             if(listitem == 3)//Twist
  1809.             {
  1810.                  new car = GetPlayerVehicleID(playerid);
  1811.                  AddVehicleComponent(car,1078);
  1812.                  PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1813.                  SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Twist Rodas.");
  1814.                  ShowPlayerDialog(playerid, DIALOGID+10, DIALOG_STYLE_LIST, "Selecione o Tipo da Roda", "Offroad\nMega\nWires\nTwist\nGrove\nImport\nAtomic\nAhab\nVirtual\nAccess\nProxima Página\nVoltar", "Selecionar", "Sair");
  1815.             }
  1816.             if(listitem == 4)//Groove
  1817.             {
  1818.                  new car = GetPlayerVehicleID(playerid);
  1819.                  AddVehicleComponent(car,1081);
  1820.                  PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1821.                  SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Groove Rodas.");
  1822.                  ShowPlayerDialog(playerid, DIALOGID+10, DIALOG_STYLE_LIST, "Selecione o Tipo da Roda", "Offroad\nMega\nWires\nTwist\nGrove\nImport\nAtomic\nAhab\nVirtual\nAccess\nProxima Página\nVoltar", "Selecionar", "Sair");
  1823.             }
  1824.             if(listitem == 5)//Import
  1825.             {
  1826.                  new car = GetPlayerVehicleID(playerid);
  1827.                  AddVehicleComponent(car,1082);
  1828.                  PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1829.                  SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Import Rodas.");
  1830.                  ShowPlayerDialog(playerid, DIALOGID+10, DIALOG_STYLE_LIST, "Selecione o Tipo da Roda", "Offroad\nMega\nWires\nTwist\nGrove\nImport\nAtomic\nAhab\nVirtual\nAccess\nProxima Página\nVoltar", "Selecionar", "Sair");
  1831.             }
  1832.             if(listitem == 6)//Atomic
  1833.             {
  1834.                  new car = GetPlayerVehicleID(playerid);
  1835.                  AddVehicleComponent(car,1085);
  1836.                  PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1837.                  SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Atomic Rodas.");
  1838.                  ShowPlayerDialog(playerid, DIALOGID+10, DIALOG_STYLE_LIST, "Selecione o Tipo da Roda", "Offroad\nMega\nWires\nTwist\nGrove\nImport\nAtomic\nAhab\nVirtual\nAccess\nProxima Página\nVoltar", "Selecionar", "Sair");
  1839.             }
  1840.             if(listitem == 7)//Ahab
  1841.             {
  1842.                  new car = GetPlayerVehicleID(playerid);
  1843.                  AddVehicleComponent(car,1096);
  1844.                  PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1845.                  SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Ahab Rodas.");
  1846.                  ShowPlayerDialog(playerid, DIALOGID+10, DIALOG_STYLE_LIST, "Selecione o Tipo da Roda", "Offroad\nMega\nWires\nTwist\nGrove\nImport\nAtomic\nAhab\nVirtual\nAccess\nProxima Página\nVoltar", "Selecionar", "Sair");
  1847.             }
  1848.             if(listitem == 8)//Virtual
  1849.             {
  1850.                  new car = GetPlayerVehicleID(playerid);
  1851.                  AddVehicleComponent(car,1097);
  1852.                  PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1853.                  SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Virtual Rodas");
  1854.                  ShowPlayerDialog(playerid, DIALOGID+10, DIALOG_STYLE_LIST, "Selecione o Tipo da Roda", "Offroad\nMega\nWires\nTwist\nGrove\nImport\nAtomic\nAhab\nVirtual\nAccess\nProxima Página\nVoltar", "Selecionar", "Sair");
  1855.             }
  1856.             if(listitem == 9)//Access
  1857.             {
  1858.                  new car = GetPlayerVehicleID(playerid);
  1859.                  AddVehicleComponent(car,1098);
  1860.                  PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1861.                  SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Access Rodas.");
  1862.                  ShowPlayerDialog(playerid, DIALOGID+10, DIALOG_STYLE_LIST, "Selecione o Tipo da Roda", "Offroad\nMega\nWires\nTwist\nGrove\nImport\nAtomic\nAhab\nVirtual\nAccess\nProxima Página\nVoltar", "Selecionar", "Sair");
  1863.             }
  1864.             if(listitem == 10)//Proxima página (menu de rodas 2)
  1865.             {
  1866.                  ShowPlayerDialog(playerid, DIALOGID+13, DIALOG_STYLE_LIST, "Selecione o tipo da Roda", "Trance\nShadow\nRimshine\nClassic\nCutter\nSwitch\nDollar\nVoltar", "Selecionar", "Sair");
  1867.             }
  1868.             if(listitem == 11)//Voltar
  1869.             {
  1870.                  ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  1871.             }
  1872.  
  1873.         }
  1874.     }
  1875.     if(dialogid == DIALOGID+11)//Volume do rádio
  1876.     {
  1877.         if(response)
  1878.         {
  1879.             if(listitem == 0)//Alto
  1880.             {
  1881.                  new car = GetPlayerVehicleID(playerid);
  1882.                  AddVehicleComponent(car,1086);
  1883.                  PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1884.                  SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Volume Alto sistema.");
  1885.                  ShowPlayerDialog(playerid, DIALOGID+11, DIALOG_STYLE_LIST, "Selecione o Volume do Rádio", "Alto\nSuper Alto\nUltra Alto\nKing Alto\nVoltar", "Selecionar", "Sair");
  1886.             }
  1887.             if(listitem == 1)//Super Alto
  1888.             {
  1889.                  new car = GetPlayerVehicleID(playerid);
  1890.                  AddVehicleComponent(car,1086);
  1891.                  PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1892.                  SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Volume Super Alto sistema.");
  1893.                  ShowPlayerDialog(playerid, DIALOGID+11, DIALOG_STYLE_LIST, "Selecione o Volume do Rádio", "Alto\nSuper Alto\nUltra Alto\nKing Alto\nVoltar", "Selecionar", "Sair");
  1894.             }
  1895.             if(listitem == 2)//Ultra Alto
  1896.             {
  1897.                  new car = GetPlayerVehicleID(playerid);
  1898.                  AddVehicleComponent(car,1086);
  1899.                  PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1900.                  SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Volume Ultra Alto sistema.");
  1901.                  ShowPlayerDialog(playerid, DIALOGID+11, DIALOG_STYLE_LIST, "Selecione o Volume do Rádio", "Alto\nSuper Alto\nUltra Alto\nKing Alto\nVoltar", "Selecionar", "Sair");
  1902.             }
  1903.             if(listitem == 3)//King Alto
  1904.             {
  1905.                  new car = GetPlayerVehicleID(playerid);
  1906.                  AddVehicleComponent(car,1086);
  1907.                  PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1908.                  SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Volume King Alto sistema.");
  1909.                  ShowPlayerDialog(playerid, DIALOGID+11, DIALOG_STYLE_LIST, "Selecione o Volume do Rádio", "Alto\nSuper Alto\nUltra Alto\nKing Alto\nVoltar", "Selecionar", "Sair");
  1910.             }
  1911.             if(listitem == 4)//Voltar
  1912.             {
  1913.                  ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  1914.             }
  1915.         }
  1916.     }
  1917.     if(dialogid == DIALOGID+12)//Tunar carro 2
  1918.     {
  1919.         if(response)
  1920.         {
  1921.             if(listitem == 0)//Suspenção
  1922.             {
  1923.                  new car = GetPlayerVehicleID(playerid);
  1924.                  AddVehicleComponent(car,1087);
  1925.                  PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1926.                  SendClientMessage(playerid,COLOR_YELLOW,"[INFO]:Você adicionou Suspenção para o carro.");
  1927.                  ShowPlayerDialog(playerid, DIALOGID+12, DIALOG_STYLE_LIST, "Tunar carro", "Suspenção\nNitro x10\nArrumar o Carro\nVoltar", "Selecionar", "Sair");
  1928.             }
  1929.             if(listitem == 1)//Nitro x10
  1930.             {
  1931.                  new car = GetPlayerVehicleID(playerid);
  1932.                  AddVehicleComponent(car,1010);
  1933.                  PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1934.                  SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Nitro 10x de carro.");
  1935.                  ShowPlayerDialog(playerid, DIALOGID+12, DIALOG_STYLE_LIST, "Tunar carro", "Suspenção\nNitro x10\nArrumar o Carro\nVoltar", "Selecionar", "Sair");
  1936.             }
  1937.             if(listitem == 2)//Reparar carro
  1938.             {
  1939.                  new car = GetPlayerVehicleID(playerid);
  1940.                  RepairVehicle(car);
  1941.                  PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1942.                  SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você tem reparado com êxito carro.");
  1943.                  ShowPlayerDialog(playerid, DIALOGID+12, DIALOG_STYLE_LIST, "Tunar carro", "Suspenção\nNitro x10\nArrumar o Carro\nVoltar", "Selecionar", "Sair");
  1944.             }
  1945.             if(listitem == 3)//Voltar
  1946.             {
  1947.                  ShowPlayerDialog(playerid, DIALOGID, DIALOG_STYLE_LIST, "Tunar carro","Pintura\nCores\nEscapamentos\nPara-Choque Dianteiro\nPara-Choque Traseiro\nTeto Solar\nAérofólio\nSaias Laterais\nBullbars\nRodas\nVolume do Carro\nProxima Página", "Selecionar", "Sair");
  1948.             }
  1949.         }
  1950.     }
  1951.     if(dialogid == DIALOGID+13)//Rodas 2
  1952.     {
  1953.         if(response)
  1954.         {
  1955.             if(listitem == 0)//Trance
  1956.             {
  1957.                  new car = GetPlayerVehicleID(playerid);
  1958.                  AddVehicleComponent(car,1084);
  1959.                  PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1960.                  SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Trance Rodas.");
  1961.                  ShowPlayerDialog(playerid, DIALOGID+13, DIALOG_STYLE_LIST, "Selecione o tipo da Roda", "Trance\nShadow\nRimshine\nClassic\nCutter\nSwitch\nDollar\nVoltar", "Selecionar", "Sair");
  1962.             }
  1963.             if(listitem == 1)//Shadow
  1964.             {
  1965.                  new car = GetPlayerVehicleID(playerid);
  1966.                  AddVehicleComponent(car,1073);
  1967.                  PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1968.                  SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Shadow Rodas.");
  1969.                  ShowPlayerDialog(playerid, DIALOGID+13, DIALOG_STYLE_LIST, "Selecione o tipo da Roda", "Trance\nShadow\nRimshine\nClassic\nCutter\nSwitch\nDollar\nVoltar", "Selecionar", "Sair");
  1970.             }
  1971.             if(listitem == 2)//Rimshine
  1972.             {
  1973.                  new car = GetPlayerVehicleID(playerid);
  1974.                  AddVehicleComponent(car,1075);
  1975.                  PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1976.                  SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Rimshine Rodas.");
  1977.                  ShowPlayerDialog(playerid, DIALOGID+13, DIALOG_STYLE_LIST, "Selecione o tipo da Roda", "Trance\nShadow\nRimshine\nClassic\nCutter\nSwitch\nDollar\nVoltar", "Selecionar", "Sair");
  1978.             }
  1979.             if(listitem == 3)//Classic
  1980.             {
  1981.                  new car = GetPlayerVehicleID(playerid);
  1982.                  AddVehicleComponent(car,1077);
  1983.                  PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1984.                  SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Classic Rodas.");
  1985.                  ShowPlayerDialog(playerid, DIALOGID+13, DIALOG_STYLE_LIST, "Selecione o tipo da Roda", "Trance\nShadow\nRimshine\nClassic\nCutter\nSwitch\nDollar\nVoltar", "Selecionar", "Sair");
  1986.             }
  1987.             if(listitem == 4)//Cutter
  1988.             {
  1989.                  new car = GetPlayerVehicleID(playerid);
  1990.                  AddVehicleComponent(car,1079);
  1991.                  PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  1992.                  SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Cutter Rodas.");
  1993.                  ShowPlayerDialog(playerid, DIALOGID+13, DIALOG_STYLE_LIST, "Selecione o tipo da Roda", "Trance\nShadow\nRimshine\nClassic\nCutter\nSwitch\nDollar\nVoltar", "Selecionar", "Sair");
  1994.             }
  1995.             if(listitem == 5)//Switch
  1996.             {
  1997.                  new car = GetPlayerVehicleID(playerid);
  1998.                  AddVehicleComponent(car,1080);
  1999.                  PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  2000.                  SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Switch Rodas.");
  2001.                  ShowPlayerDialog(playerid, DIALOGID+13, DIALOG_STYLE_LIST, "Selecione o tipo da Roda", "Trance\nShadow\nRimshine\nClassic\nCutter\nSwitch\nDollar\nVoltar", "Selecionar", "Sair");
  2002.             }
  2003.             if(listitem == 6)//Dollar
  2004.             {
  2005.                  new car = GetPlayerVehicleID(playerid);
  2006.                  AddVehicleComponent(car,1083);
  2007.                  PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  2008.                  SendClientMessage(playerid,COLOR_YELLOW,"[INFO]: Você adicionou Dollar Rodas.");
  2009.                  ShowPlayerDialog(playerid, DIALOGID+13, DIALOG_STYLE_LIST, "Selecione o tipo da Roda", "Trance\nShadow\nRimshine\nClassic\nCutter\nSwitch\nDollar\nVoltar", "Selecionar", "Sair");
  2010.             }
  2011.             if(listitem == 7)//Voltar
  2012.             {
  2013.                  ShowPlayerDialog(playerid, DIALOGID+10, DIALOG_STYLE_LIST, "Selecione o Tipo da Roda", "Offroad\nMega\nWires\nTwist\nGrove\nImport\nAtomic\nAhab\nVirtual\nAccess\nProxima Página\nVoltar", "Selecionar", "Sair");
  2014.             }
  2015.         }
  2016.     }
  2017.     if(dialogid == 6622) //dialog
  2018.     {
  2019.         if(response)
  2020.         {
  2021.             if(listitem == 0)
  2022.             {
  2023.                 if(PlayerInfo[playerid][pDrogas] > 4)
  2024.                 {
  2025.                 GetPlayerName(playerid,playername,sizeof(playername));
  2026.                 format(gstring, sizeof(gstring), "  Você ainda tem %d gramas de maconha, Venda tudo primeiro !", PlayerInfo[playerid][pDrogas]);
  2027.                 SendClientMessage(playerid, COLOR_GREY, gstring);
  2028.                 return 1;
  2029.                 }
  2030.                 format(gstring, sizeof(gstring), "%s Acaba de pegar Maconha na fazenda e está sendo procurado pela Polícia", playername);
  2031.                 SendClientMessageToAll(GetPlayerColor(playerid), gstring);
  2032.                 PlayerInfo[playerid][pDrogas] += 1000;
  2033.                 SendClientMessage(playerid, COLOR_GRAD1, "Você comprou 1000 gramas de maconha por R$1,000");
  2034.                 GivePlayerMoneyEx(playerid, - 1000);
  2035.                 SetPlayerCriminal(playerid,255, "Trafico de Maconha");
  2036.             }
  2037.             if(listitem == 1)
  2038.             {
  2039.                 if(PlayerInfo[playerid][pDrogas2] > 4)
  2040.                 {
  2041.                 GetPlayerName(playerid,playername,sizeof(playername));
  2042.                 format(gstring, sizeof(gstring), "  Você ainda tem %d gramas de cocaina, Venda tudo primeiro !", PlayerInfo[playerid][pDrogas2]);
  2043.                 SendClientMessage(playerid, COLOR_GREY, gstring);
  2044.                 return 1;
  2045.                 }
  2046.                 format(gstring, sizeof(gstring), "%s Acaba de pegar Cocaina na fazenda e está sendo procurado pela Polícia", playername);
  2047.                 SendClientMessageToAll(GetPlayerColor(playerid), gstring);
  2048.                 PlayerInfo[playerid][pDrogas2] += 1000;
  2049.                 SendClientMessage(playerid, COLOR_GRAD1, "Você comprou 1000 gramas de cocaina por R$1,000");
  2050.                 GivePlayerMoneyEx(playerid, - 1000);
  2051.                 SetPlayerCriminal(playerid,255, "Trafico de Cocaina");
  2052.             }
  2053.             if(listitem == 2)
  2054.             {
  2055.                 if(PlayerInfo[playerid][pDrogas3] > 4)
  2056.                 {
  2057.                 GetPlayerName(playerid,playername,sizeof(playername));
  2058.                 format(gstring, sizeof(gstring), "  Você ainda tem %d gramas de crack, Venda tudo primeiro !", PlayerInfo[playerid][pDrogas3]);
  2059.                 SendClientMessage(playerid, COLOR_GREY, gstring);
  2060.                 return 1;
  2061.                 }
  2062.                 format(gstring, sizeof(gstring), "%s Acaba de pegar Crack na fazenda e está sendo procurado pela Polícia", playername);
  2063.                 SendClientMessageToAll(GetPlayerColor(playerid), gstring);
  2064.                 PlayerInfo[playerid][pDrogas3] += 1000;
  2065.                 SendClientMessage(playerid, COLOR_GRAD1, "Você comprou 1000 gramas de crack por R$1,000");
  2066.                 GivePlayerMoneyEx(playerid, - 1000);
  2067.                 SetPlayerCriminal(playerid,255, "Trafico de Crack");
  2068.             }
  2069.         }
  2070.         return 1;
  2071.     }
  2072. /*    if(dialogid == 7171) //dialog
  2073.     {
  2074.         if(response)
  2075.         {
  2076.             if(listitem == 0)
  2077.             {
  2078.                 if(GetPlayerMoney(playerid) < 5000000)
  2079.                 {
  2080.                     SendClientMessage(playerid,COLOR_GRAD1,"Você não tem 5 milhões");
  2081.                     return 1;
  2082.                 }
  2083.                 PlayerInfo[playerid][pOuro] += 1;
  2084.                 GivePlayerMoney(playerid, - 5000000);
  2085.                 TogglePlayerControllable(playerid, 1);
  2086.             }
  2087.             if(listitem == 1)
  2088.             {
  2089.                 if(GetPlayerMoney(playerid) < 10000000)
  2090.                 {
  2091.                     SendClientMessage(playerid,COLOR_GRAD1,"Você não tem 10 milhões");
  2092.                     return 1;
  2093.                 }
  2094.                 PlayerInfo[playerid][pOuro] += 2;
  2095.                 GivePlayerMoney(playerid, - 10000000);
  2096.                 TogglePlayerControllable(playerid, 1);
  2097.             }
  2098.             if(listitem == 2)
  2099.             {
  2100.                 if(GetPlayerMoney(playerid) < 15000000)
  2101.                 {
  2102.                     SendClientMessage(playerid,COLOR_GRAD1,"Você não tem 15 milhões");
  2103.                     return 1;
  2104.                 }
  2105.                 PlayerInfo[playerid][pOuro] += 3;
  2106.                 GivePlayerMoney(playerid, - 15000000);
  2107.                 TogglePlayerControllable(playerid, 1);
  2108.             }
  2109.             if(listitem == 3)
  2110.             {
  2111.                 if(GetPlayerMoney(playerid) < 20000000)
  2112.                 {
  2113.                     SendClientMessage(playerid,COLOR_GRAD1,"Você não tem 20 milhões");
  2114.                     return 1;
  2115.                 }
  2116.                 PlayerInfo[playerid][pOuro] += 4;
  2117.                 GivePlayerMoney(playerid, - 20000000);
  2118.                 TogglePlayerControllable(playerid, 1);
  2119.             }
  2120.         }
  2121.         return 1;
  2122.     }*/
  2123.     if(dialogid == dhitman) //dialog
  2124.     {
  2125.         if(response)
  2126.         {
  2127.             if(listitem == 0)
  2128.             {
  2129.                 SetPlayerSkin(playerid, 23);
  2130.                 TogglePlayerControllable(playerid, 1);
  2131.                 SetPlayerColor(playerid,COLOR_WHITE);
  2132.             }
  2133.             if(listitem == 1)
  2134.             {
  2135.                 SetPlayerSkin(playerid, 285);
  2136.                 TogglePlayerControllable(playerid, 1);
  2137.                 SetPlayerColor(playerid,COR_PR);
  2138.             }
  2139.             if(listitem == 2)
  2140.             {
  2141.                 SetPlayerSkin(playerid, 117);
  2142.                 TogglePlayerControllable(playerid, 1);
  2143.                 SetPlayerColor(playerid,COR_YAK);
  2144.             }
  2145.             if(listitem == 3)
  2146.             {
  2147.                 SetPlayerSkin(playerid, 113);
  2148.                 TogglePlayerControllable(playerid, 1);
  2149.                 SetPlayerColor(playerid,COR_COSA);
  2150.             }
  2151.             if(listitem == 4)
  2152.             {
  2153.                 SetPlayerSkin(playerid, 270);
  2154.                 TogglePlayerControllable(playerid, 1);
  2155.                 SetPlayerColor(playerid,COR_GRO);
  2156.             }
  2157.             if(listitem == 5)
  2158.             {
  2159.                 SetPlayerSkin(playerid, 274);
  2160.                 TogglePlayerControllable(playerid, 1);
  2161.                 SetPlayerColor(playerid,COR_SAMU);
  2162.             }
  2163.             if(listitem == 6)
  2164.             {
  2165.                  SetPlayerSkin(playerid, 286);
  2166.                  TogglePlayerControllable(playerid, 1);
  2167.                  SetPlayerColor(playerid,COR_PF);
  2168.             }
  2169.             if(listitem == 7)
  2170.             {
  2171.                 SetPlayerSkin(playerid, 284);
  2172.                 TogglePlayerControllable(playerid, 1);
  2173.                 SetPlayerColor(playerid,COR_PM);
  2174.             }
  2175.             if(listitem == 8)
  2176.             {
  2177.                 SetPlayerSkin(playerid, 287);
  2178.                 TogglePlayerControllable(playerid, 1);
  2179.                 SetPlayerColor(playerid,COR_EXE);
  2180.             }
  2181.             if(listitem == 9)
  2182.             {
  2183.                 SetPlayerSkin(playerid, 179);
  2184.                 TogglePlayerControllable(playerid, 1);
  2185.                 SetPlayerColor(playerid,COR_AL);
  2186.             }
  2187.             if(listitem == 10)
  2188.             {
  2189.                 SetPlayerSkin(playerid, 122);
  2190.                 TogglePlayerControllable(playerid, 1);
  2191.                 SetPlayerColor(playerid,COR_TAL);
  2192.             }
  2193.             if(listitem == 11)
  2194.             {
  2195.                 SetPlayerSkin(playerid, 137);
  2196.                 TogglePlayerControllable(playerid, 1);
  2197.                 SetPlayerColor(playerid,COLOR_WHITE);
  2198.             }
  2199.             if(listitem == 12)
  2200.             {
  2201.                 SetPlayerSkin(playerid, 109);
  2202.                 TogglePlayerControllable(playerid, 1);
  2203.                 SetPlayerColor(playerid,COR_VAGOS);
  2204.             }
  2205.             if(listitem == 13)
  2206.             {
  2207.                 SetPlayerSkin(playerid, 115);
  2208.                 TogglePlayerControllable(playerid, 1);
  2209.                 SetPlayerColor(playerid,COR_AZTECAS);
  2210.             }
  2211.             if(listitem == 14)
  2212.             {
  2213.                 SetPlayerSkin(playerid, 240);
  2214.                 TogglePlayerControllable(playerid, 1);
  2215.                 SetPlayerColor(playerid,COR_OAB);
  2216.             }
  2217.             if(listitem == 15)
  2218.             {
  2219.                 SetPlayerSkin(playerid, 67);
  2220.                 TogglePlayerControllable(playerid, 1);
  2221.                 SetPlayerColor(playerid,COR_TCP);
  2222.             }
  2223.             if(listitem == 16)
  2224.             {
  2225.                 SetPlayerSkin(playerid, 185);
  2226.                 TogglePlayerControllable(playerid, 1);
  2227.                 SetPlayerColor(playerid,COR_PC);
  2228.             }
  2229.             if(listitem == 17)
  2230.             {
  2231.                 SetPlayerSkin(playerid, 181);
  2232.                 TogglePlayerControllable(playerid, 1);
  2233.                 SetPlayerColor(playerid,0xF6000000);
  2234.             }
  2235.             if(listitem == 18)
  2236.             {
  2237.                 SetPlayerSkin(playerid, 189);
  2238.                 TogglePlayerControllable(playerid, 1);
  2239.                 SetPlayerColor(playerid,COR_DET);
  2240.             }
  2241.             if(listitem == 19)
  2242.             {
  2243.                 SetPlayerSkin(playerid, 163);
  2244.                 TogglePlayerControllable(playerid, 1);
  2245.                 SetPlayerColor(playerid,COR_PRE);
  2246.             }
  2247.             if(listitem == 20)
  2248.             {
  2249.                 SetPlayerSkin(playerid, 255);
  2250.                 TogglePlayerControllable(playerid, 1);
  2251.                 SetPlayerColor(playerid,COR_TAXI);
  2252.             }
  2253.             if(listitem == 21)
  2254.             {
  2255.                 SetPlayerSkin(playerid, 148);
  2256.                 TogglePlayerControllable(playerid, 1);
  2257.                 SetPlayerColor(playerid,COR_REP);
  2258.             }
  2259.             if(listitem == 22)
  2260.             {
  2261.                 SetPlayerSkin(playerid, 185);
  2262.                 TogglePlayerControllable(playerid, 1);
  2263.                 SetPlayerColor(playerid,COR_MID);
  2264.             }
  2265.             if(listitem == 23)
  2266.             {
  2267.                 SetPlayerSkin(playerid, 100);
  2268.                 TogglePlayerControllable(playerid, 1);
  2269.                 SetPlayerColor(playerid,COR_SONS);
  2270.             }
  2271.             if(listitem == 24)
  2272.             {
  2273.                 SetPlayerSkin(playerid, 103);
  2274.                 TogglePlayerControllable(playerid, 1);
  2275.                 SetPlayerColor(playerid,COR_BALLAS);
  2276.             }
  2277.         }
  2278.         return 1;
  2279.     }
  2280.     if(dialogid == 5024)
  2281.     {
  2282.         if(response == 1)
  2283.         {
  2284.               OnPlayerCommandText(playerid,"/desalugarcarro");
  2285.               TogglePlayerControllable(playerid, 1);
  2286.               SendClientMessage(playerid, COLOR_GRAD1, "Veiculo desalugado");
  2287.               RemovePlayerFromVehicle(playerid);
  2288.               return 0;
  2289.         }
  2290.         else if(response == 0)
  2291.         {
  2292.               RemovePlayerFromVehicle(playerid);
  2293.               TogglePlayerControllable(playerid, 1);
  2294.               return 0;
  2295.         }
  2296.         return 0;
  2297.     }
  2298.     if(dialogid == 5025)
  2299.     {
  2300.         if(response == 1)
  2301.         {
  2302.               OnPlayerCommandText(playerid,"/desalugarheli");
  2303.               TogglePlayerControllable(playerid, 1);
  2304.               SendClientMessage(playerid, COLOR_GRAD1, "Helicoptero desalugado");
  2305.               RemovePlayerFromVehicle(playerid);
  2306.               return 0;
  2307.         }
  2308.         else if(response == 0)
  2309.         {
  2310.               RemovePlayerFromVehicle(playerid);
  2311.               TogglePlayerControllable(playerid, 1);
  2312.               return 0;
  2313.         }
  2314.         return 0;
  2315.     }
  2316.     if(dialogid == DIALOG_ALUGAR)
  2317.     {
  2318.         if(response == 1)
  2319.         {
  2320.               OnPlayerCommandText(playerid,"/alugarcarro");
  2321.               TogglePlayerControllable(playerid, 1);
  2322.               return 0;
  2323.         }
  2324.         else if(response == 0)
  2325.         {
  2326.               SendClientMessage(playerid, COLOR_GRAD1, "Você optou por não alugar");
  2327.               TogglePlayerControllable(playerid, 1);
  2328.               RemovePlayerFromVehicle(playerid);
  2329.               return 0;
  2330.         }
  2331.         return 0;
  2332.     }
  2333.     if(dialogid == DIALOG_ALUGAR2)
  2334.     {
  2335.         if(response == 1)
  2336.         {
  2337.               OnPlayerCommandText(playerid,"/alugarheli");
  2338.               TogglePlayerControllable(playerid, 1);
  2339.               return 0;
  2340.         }
  2341.         else if(response == 0)
  2342.         {
  2343.               SendClientMessage(playerid, COLOR_GRAD1, "Você optou por não alugar");
  2344.               TogglePlayerControllable(playerid, 1);
  2345.               RemovePlayerFromVehicle(playerid);
  2346.               return 0;
  2347.         }
  2348.         return 0;
  2349.     }
  2350.     if(dialogid == 2624)
  2351.     {
  2352.         if(response == 1)
  2353.         {
  2354.               OnPlayerCommandText(playerid,"/veiculo comprar");
  2355.               TogglePlayerControllable(playerid, 1);
  2356.               return 0;
  2357.         }
  2358.         else if(response == 0)
  2359.         {
  2360.               SendClientMessage(playerid, COLOR_GREY, "Você optou por não comprar o veiculo");
  2361.               TogglePlayerControllable(playerid, 1);
  2362.               RemovePlayerFromVehicle(playerid);
  2363.               return 0;
  2364.         }
  2365.         return 0;
  2366.     }
  2367.     if(dialogid == 2)
  2368.     {
  2369.         if(response == 0)
  2370.         {
  2371.             SendClientMessage(playerid, TEAM_VAGOS_COLOR, "Ok, Caso queira se registrar posteriormente use /registrar [senha]!");
  2372.             return 1;
  2373.         }
  2374.         if(response >= 1)
  2375.         {
  2376.             if(strlen(inputtext) == 0)
  2377.             {
  2378.                 SetPlayerCameraPos(playerid,1483.8164,-1727.4125,13.3828);
  2379.                 SetPlayerCameraLookAt(playerid,1481.0267,-1772.1371,19.4570);
  2380.                 ShowPlayerDialog(playerid, 2, DIALOG_STYLE_INPUT, "Brasil Games Living || The Return", "Bem Vindo ao Brasil Games Living || The Return\nDigite sua Senha para Registrar!!!", "Registrar", "Esperar");
  2381.                 return 1;
  2382.             }
  2383.             format(gstring,sizeof(gstring),"/registrar %s",inputtext);
  2384.             OnPlayerCommandText(playerid,gstring);
  2385.             return 1;
  2386.         }
  2387.         return 1;
  2388.     }
  2389.     if(dialogid == 3)
  2390.     {
  2391.         if(response == 0)
  2392.         {
  2393.             RodrigoInfo[playerid][Tels] = 0;
  2394.             return 1;
  2395.         }
  2396.         if(response >= 1)
  2397.         {
  2398.             if(listitem == 0)
  2399.             {
  2400.                 if (PlayerInfo[playerid][pPhoneBook] == 1)
  2401.                 {
  2402.                     format(gstring,sizeof(gstring),"/ligar %d",RodrigoInfo[playerid][Tels]);
  2403.                     OnPlayerCommandText(playerid,gstring);
  2404.                     return 1;
  2405.                 }
  2406.                 else
  2407.                 {
  2408.                     SendClientMessage(playerid, COLOR_GREY, "   Você não tem lista telefônica !");
  2409.                     return 1;
  2410.                 }
  2411.             }
  2412.             if(listitem == 1)
  2413.             {
  2414.                 if (PlayerInfo[playerid][pPhoneBook] == 1)
  2415.                 {
  2416.                     ShowPlayerDialog(playerid, 4, DIALOG_STYLE_INPUT, "Menu SMS", "Digite a Mensagem", "Enviar", "Cancelar");
  2417.                     return 1;
  2418.                 }
  2419.                 else
  2420.                 {
  2421.                     SendClientMessage(playerid, COLOR_GREY, "   Você não tem uma agenda !");
  2422.                     return 1;
  2423.                 }
  2424.             }
  2425.             return 1;
  2426.         }
  2427.         return 1;
  2428.     }
  2429.     if(dialogid == 4)
  2430.     {
  2431.         if(response == 0)
  2432.         {
  2433.             RodrigoInfo[playerid][Tels] = 0;
  2434.             return 1;
  2435.         }
  2436.         if(response >= 1)
  2437.         {
  2438.             format(gstring,sizeof(gstring),"/sms %d %s",RodrigoInfo[playerid][Tels],inputtext);
  2439.             OnPlayerCommandText(playerid,gstring);
  2440.             return 1;
  2441.         }
  2442.         return 1;
  2443.     }
  2444.     if(dialogid == 9)
  2445.     {
  2446.         if(response == 0)
  2447.         {
  2448.             PlayerInfo[playerid][pSex] = 2;
  2449.             SetPlayerSkin(playerid, 12);
  2450.             PlayerInfo[playerid][pSkin] = 12;
  2451.             SendClientMessage(playerid, TEAM_VAGOS_COLOR, "Certo, Você é uma Mulher!");
  2452.             PlayerPlaySound(playerid, 1058, 0.0, 0.0, 0.0);
  2453.             RegistrationStep[playerid] = 0;
  2454.             TogglePlayerControllable(playerid, 0);
  2455.             TutTime[playerid] = 1;
  2456.             //ShowPlayerDialog(playerid, 900, DIALOG_STYLE_MSGBOX, "BWG", "Brasil Games Living || The Return é expecialmente criado para sua diversão\nNo Brasil Games Living || The Return existe regras deseja ve-las ?", "Sim", "Não");
  2457.             return 1;
  2458.         }
  2459.         if(response == 1)
  2460.         {
  2461.             PlayerInfo[playerid][pSex] = 1;
  2462.             SetPlayerSkin(playerid, 299);
  2463.             PlayerInfo[playerid][pSkin] = 299;
  2464.             SendClientMessage(playerid, TEAM_VAGOS_COLOR, "Certo, Você é um Homem!.");
  2465.             PlayerPlaySound(playerid, 1058, 0.0, 0.0, 0.0);
  2466.             RegistrationStep[playerid] = 0;
  2467.             TogglePlayerControllable(playerid, 0);
  2468.             TutTime[playerid] = 1;
  2469.             //ShowPlayerDialog(playerid, 900, DIALOG_STYLE_MSGBOX, ".:: Bem Vindo ::.", "Brasil Games Living || The Return é expecialmente criado para sua diversão\nNo Brasil Game of Life existe regras deseja ve-las ?", "Sim", "Não");
  2470.             return 1;
  2471.         }
  2472.         return 1;
  2473.     }
  2474.     if(dialogid == 900)
  2475.     {
  2476.         if(response == 1)
  2477.         {
  2478.               ShowPlayerDialog(playerid, 901, DIALOG_STYLE_MSGBOX, ".:: Informações Básicas ::.", "-Nosso servidor é estilo RPG,-O que é RPG?\n\n-É um modo de jogo baseado na vida real, portanto você não poderá sair matando todo mundo.\n\nNem zuando de todos, você não fazeria isso na vida real né? ou você é louco.\n\nEntão leve nosso servidor a sério e jogue como se fosse sua segunda vida!", "Aceito", "Recuso");
  2479.               return 0;
  2480.         }
  2481.         else if(response == 0)
  2482.         {
  2483.             ClearChatbox(playerid, 100);
  2484.             PlayerPlaySound(playerid,1056, 0.0, 0.0, 0.0);
  2485.             SendClientMessage(playerid, COR_3DLABEL, "..:: Você Recusou as Regras e Foi Kickado!!! ::..");
  2486.             SendClientMessage(playerid, COR_3DLABEL, "-------------------Relogue e Termine----------------------");
  2487.             SendClientMessage(playerid, COR_3DLABEL, "-------------------Volte e Obrigado.----------------------");
  2488.             Kick(playerid);
  2489.             return 0;
  2490.         }
  2491.         return 0;
  2492.     }
  2493.     if(dialogid == 901)
  2494.     {
  2495.         if(response == 1)
  2496.         {
  2497.               SetPlayerPos(playerid, 1558.7385,-1675.7007,16.1953);
  2498.               SetPlayerCameraPos(playerid, 1506.7966,-1645.9325,22.3203);
  2499.               SetPlayerCameraLookAt(playerid, 1537.1453,-1670.2620,12.6740);
  2500.               ShowPlayerDialog(playerid, 902, DIALOG_STYLE_MSGBOX, ".:: Regras Básicas ::.", "-Sempre respeite um admin, ele está fazendo o melhor por você.\n\n-Não abuse da boa vontade de nossos admin. Não causar terrorismo, DM, DB. Não chingue, Não abuse de BUG.\n\n-Não peça admin, e nem para que eles aumentem seus cargos.\n\n-E o principal, nunca use xiter para se beneficiar, em caso de uso de xiter será banido imediatamente.", "Aceito", "Recuso");
  2501.               return 0;
  2502.         }
  2503.         else if(response == 0)
  2504.         {
  2505.             ClearChatbox(playerid, 100);
  2506.             PlayerPlaySound(playerid,1056, 0.0, 0.0, 0.0);
  2507.             SendClientMessage(playerid, COR_3DLABEL, "..:: Você Recusou as Regras e Foi Kickado!!! ::..");
  2508.             SendClientMessage(playerid, COR_3DLABEL, "-------------------Relogue e Termine----------------------");
  2509.             SendClientMessage(playerid, COR_3DLABEL, "-------------------Volte e Obrigado.----------------------");
  2510.             Kick(playerid);
  2511.             return 0;
  2512.         }
  2513.         return 0;
  2514.     }
  2515.     if(dialogid == 902)
  2516.     {
  2517.         if(response == 1)
  2518.         {
  2519.               SetPlayerPos(playerid, 1558.7385,-1675.7007,16.1953);
  2520.               SetPlayerCameraPos(playerid, 1506.7966,-1645.9325,22.3203);
  2521.               SetPlayerCameraLookAt(playerid, 1537.1453,-1670.2620,12.6740);
  2522.               ShowPlayerDialog(playerid, 903, DIALOG_STYLE_MSGBOX, ".:: Comando Uteis ::.", "-/relatorio - Falar com os admin, /duvida - Esclareça uma duvida, /gps - Veja onde ficar os lugares importantes.\n\n-/rg - Ver seus status, /ajuda, /meuskin - Vá até uma binco.\n\n-Digitando /ajuda você todos esses comandos e mais alguns que você utilizará.\n\n-Durante seu jogo, no /ajuda tem vários outros comandos que podem te ajudar.", "Aceito", "Recuso");
  2523.               return 0;
  2524.         }
  2525.         else if(response == 0)
  2526.         {
  2527.             ClearChatbox(playerid, 100);
  2528.             PlayerPlaySound(playerid,1056, 0.0, 0.0, 0.0);
  2529.             SendClientMessage(playerid, COR_3DLABEL, "..:: Você Recusou as Regras e Foi Kickado!!! ::..");
  2530.             SendClientMessage(playerid, COR_3DLABEL, "-------------------Relogue e Termine----------------------");
  2531.             SendClientMessage(playerid, COR_3DLABEL, "-------------------Volte e Obrigado.----------------------");
  2532.             Kick(playerid);
  2533.             return 0;
  2534.         }
  2535.         return 0;
  2536.     }
  2537.     if(dialogid == 903)
  2538.     {
  2539.         if(response == 1)
  2540.         {
  2541.               SetPlayerPos(playerid, 1558.7385,-1675.7007,16.1953);
  2542.               SetPlayerCameraPos(playerid, 1506.7966,-1645.9325,22.3203);
  2543.               SetPlayerCameraLookAt(playerid, 1537.1453,-1670.2620,12.6740);
  2544.               ShowPlayerDialog(playerid, 904, DIALOG_STYLE_MSGBOX, ".:: Contas VIP/VIP Premium ::.", "-Temos Contas VIP/VIP Premium a partir de R$ 5,00.\n\n-A conta VIP custa R$ 5,00 e a conta VIP Premium custa R$ 10,00.\n\n-Se tornando VIP/VIP Premium você terá mais benefícios que players normais.\n\n\n-Para ser VIP/VIP Premium visite nosso /forum e veja ~> Contas VIP's & Socios.", "Aceito", "Recuso");
  2545.               return 0;
  2546.         }
  2547.         else if(response == 0)
  2548.         {
  2549.             ClearChatbox(playerid, 100);
  2550.             PlayerPlaySound(playerid,1056, 0.0, 0.0, 0.0);
  2551.             SendClientMessage(playerid, COR_3DLABEL, "..:: Você Recusou as Regras e Foi Kickado!!! ::..");
  2552.             SendClientMessage(playerid, COR_3DLABEL, "-------------------Relogue e Termine----------------------");
  2553.             SendClientMessage(playerid, COR_3DLABEL, "-------------------Volte e Obrigado.----------------------");
  2554.             Kick(playerid);
  2555.             return 0;
  2556.         }
  2557.         return 0;
  2558.     }
  2559.     if(dialogid == 904)
  2560.     {
  2561.         if(response == 1)
  2562.         {
  2563.             TogglePlayerControllable(playerid, 1);
  2564.             ClearChatbox(playerid, 100);
  2565.             TutTime[playerid] = 0; PlayerInfo[playerid][pTut] = 1;
  2566.             gNews[playerid] = 0; gFam[playerid] = 0;
  2567.             TogglePlayerControllable(playerid, 1);
  2568.             SetPlayerVirtualWorld(playerid,0);
  2569.             MedicBill[playerid] = 0;
  2570.             SetPlayerSpawn(playerid);
  2571.             SetCameraBehindPlayer(playerid);
  2572.             PlayerInfo[playerid][pConta] = 10000;
  2573.             PlayerInfo[playerid][pCreditos] += 20;
  2574.             PlayerInfo[playerid][pLevel] = 3;
  2575.             PlayerPlayMusic(playerid);
  2576.             RegistrationStep[playerid] = 2;
  2577.             ResetPlayerMoneyEx(playerid);
  2578.             GivePlayerMoneyEx(playerid, 500000);
  2579.             //GameTextForPlayer(i, "~w~Chame Um Admin Para Te Ajudar ~n~~b~ /relatorio ", 3000, 3);
  2580.             SendClientMessage(playerid, COLOR_GREEN, "Bem Vindo ao Brasil Games Living || The Return || V 1.1");
  2581.             SendClientMessage(playerid, COLOR_AZULBB, "Agradecemos a sua preferência, volte sempre");
  2582.             //PlayerInfo[playerid][pVIP] = 1;
  2583.             return 0;
  2584.         }
  2585.         else if(response == 0)
  2586.         {
  2587.             ClearChatbox(playerid, 100);
  2588.             PlayerPlaySound(playerid,1056, 0.0, 0.0, 0.0);
  2589.             SendClientMessage(playerid, COR_3DLABEL, "..:: Você Recusou as Regras e Foi Kickado!!! ::..");
  2590.             SendClientMessage(playerid, COR_3DLABEL, "-------------------Relogue e Termine----------------------");
  2591.             SendClientMessage(playerid, COR_3DLABEL, "-------------------Volte e Obrigado.----------------------");
  2592.             Kick(playerid);
  2593.             return 0;
  2594.         }
  2595.         return 0;
  2596.     }
  2597.     if(dialogid == 10)
  2598.     {
  2599.         if(response)
  2600.         {
  2601.             if(listitem == 0)
  2602.             {
  2603.                 SendClientMessage(playerid, COLOR_WHITE, "|______________ Ajuda Player ______________|");
  2604.                 SendClientMessage(playerid, COLOR_WHITE,"Digite o comando desejado para mais informações!");
  2605.                 SendClientMessage(playerid, COLOR_GRAD1,"BGL > /logar /rg /forum /relatorio /duvida /comprarnivel /organizacoes(/orgs) /carteira");
  2606.                 SendClientMessage(playerid, COLOR_GRAD2,"BGL > /meuskin /pagar /horas /gps /mostrarlicencas /loteria /setint /empregos /orelhao");
  2607.                 SendClientMessage(playerid, COLOR_GRAD2,"BGL > /trancar /mudarlocal /minhaslicencas /comprararma /beber /caridade /desligarorelhao");
  2608.                 SendClientMessage(playerid, COLOR_GRAD2,"BGL > /abastecer /contrato /aceitar /cancelar /ejetar /servico /localizar /alugarcarro");
  2609.                 SendClientMessage(playerid, COLOR_GRAD3,"BGL > (/g)ritar (/s)usurro (/an)uncio /eu /alugarheli /alugarquarto /desalugar");
  2610.                 SendClientMessage(playerid, COLOR_GRAD4,"BGL > /saldo /sacar /depositar /transferir ");
  2611.                 SendClientMessage(playerid, COLOR_GREEN,"______________________________________");
  2612.             }
  2613.             if(listitem == 1)
  2614.             {
  2615.                 SendClientMessage(playerid, COLOR_WHITE, "|______________ Ajuda Empresa ______________|");
  2616.                 SendClientMessage(playerid, COLOR_WHITE,"Digite o comando desejado para mais informações!");
  2617.                 SendClientMessage(playerid, COLOR_GRAD3,"BGL > /ajudaempresa (/entradaemp)resa (/nomeemp)resa /extorcao /infoempresa");
  2618.                 SendClientMessage(playerid, COLOR_GRAD4,"BGL > /entrar /sair /chave /venderemp (/depositaremp)resa /sacarempresa");
  2619.                 SendClientMessage(playerid, COLOR_GREEN,"______________Empresas Frees_________________________");
  2620.                 SendClientMessage(playerid, COLOR_GRAD4,"BGL > /infofree /sacarempresafree /venderfree ");
  2621.             }
  2622.             if(listitem == 2)
  2623.             {
  2624.                 SendClientMessage(playerid, COLOR_WHITE, "|______________ Ajuda Casa ______________|");
  2625.                 SendClientMessage(playerid, COLOR_WHITE,"Digite o comando desejado para mais informações!");
  2626.                 SendClientMessage(playerid, COLOR_GRAD3,"BGL > /entrar /sair /chave /vida /moveis(/mv) /mapacasa(Mostra No Mapa)");
  2627.                 SendClientMessage(playerid, COLOR_GRAD3,"BGL > /comprarcarro /pintarcarro /despejartodos /mudarcasa(1 a 10)");
  2628.                 SendClientMessage(playerid, COLOR_GRAD3,"BSL > /aluguel /despejar /cofrecasa /trancar(carro da casa) /alugada");
  2629.             }
  2630.             if(listitem == 3)
  2631.             {
  2632.                 SendClientMessage(playerid, COLOR_WHITE, "|______________ Ajuda Aluguel ______________|");
  2633.                 SendClientMessage(playerid, COLOR_GRAD3,"Aluguel > /desalugar /entrar /sair /trancar /mapacasa");
  2634.             }
  2635.             if(listitem == 4)
  2636.             {
  2637.                 if (PlayerInfo[playerid][pPnumber] > 0)
  2638.                 {
  2639.                     SendClientMessage(playerid, COLOR_WHITE, "|______________ Ajuda Celular ______________|");
  2640.                     SendClientMessage(playerid, COLOR_WHITE,"Digite o comando desejado para mais informações!");
  2641.                     SendClientMessage(playerid, COLOR_GRAD3,"BGL > /ligar /sms (/at)ender (/des)ligar /agenda /desativar celular");
  2642.                     SendClientMessage(playerid, COLOR_WHITE,"BGL > Não se esqueça de comprar créditos na 24-7!");
  2643.                 }
  2644.                 else
  2645.                 {
  2646.                     SendClientMessage(playerid, COLOR_GREY,"Você não tem um telefone, compre um na 24-7, USE: /gps");
  2647.                 }
  2648.             }
  2649.             if(listitem == 5)
  2650.             {
  2651.                 if (PlayerInfo[playerid][pLider] >= 1)
  2652.                 {
  2653.                     SendClientMessage(playerid, COLOR_WHITE, "|______________ Ajuda Lider ______________|");
  2654.                     SendClientMessage(playerid, COLOR_WHITE,"Digite o comando desejado para mais informações!");
  2655.                     SendClientMessage(playerid, COLOR_GRAD3,"BGL > /convidar /demitir /limparvaga /promover /contaslider(Pedir Contas)");
  2656.                     if(PlayerInfo[playerid][pLider] == 7)
  2657.                     {
  2658.                         SendClientMessage(playerid, COLOR_GRAD3,"Prefeito > (/pre)feito /setartaxa /dartaxa (Dá algum dinheiro para os Policiais)");
  2659.                     }
  2660.                     SendClientMessage(playerid, COLOR_DBLUE,"____________________________________________");
  2661.                 }
  2662.                 else
  2663.                 {
  2664.                     SendClientMessage(playerid, COLOR_GREY, "   Você não é um Líder!");
  2665.                 }
  2666.             }
  2667.             if(listitem == 6)
  2668.             {
  2669.                 SendClientMessage(playerid,COLOR_WHITE, "|______________ Ajuda Emprego ______________|");
  2670.                 if(PlayerInfo[playerid][pEmprego] == 1)
  2671.                 {
  2672.                     SendClientMessage(playerid,COLOR_YELLOW,"BGL > Detetive < /procurar /procuraroff");
  2673.                 }
  2674.                 if(PlayerInfo[playerid][pMembro] == 24 || PlayerInfo[playerid][pLider] == 24)
  2675.                 {
  2676.                     SendClientMessage(playerid,COLOR_YELLOW,"BGL > Advogado < /soltar /pp(Portão Presos - DP) /autorizacao(Icone Na DP)");
  2677.                 }
  2678.                 if(PlayerInfo[playerid][pEmprego] == 3)
  2679.                 {
  2680.                     SendClientMessage(playerid,COLOR_YELLOW,"BGL > Prof. do Sexo < /transar");
  2681.                 }
  2682.                 else if(PlayerInfo[playerid][pEmprego] == 4)
  2683.                 {
  2684.                     SendClientMessage(playerid,COLOR_YELLOW,"BGL > Vendedor de Drogas < /sistemadedrogas");
  2685.                 }
  2686.                 else if(PlayerInfo[playerid][pEmprego] == 5)
  2687.                 {
  2688.                         SendClientMessage(playerid,COLOR_LIGHTBLUE,"BGL > Mecânicos <  /guinchar /reparar /abastecercarro /batercartao");
  2689.                 }
  2690.                 else if(PlayerInfo[playerid][pEmprego] == 6)
  2691.                 {
  2692.                     SendClientMessage(playerid,COLOR_YELLOW,"BSL > Segurança < /proteger");
  2693.                 }
  2694.                 else if(PlayerInfo[playerid][pEmprego] == 7)
  2695.                 {
  2696.                     SendClientMessage(playerid,COLOR_YELLOW,"BGL > Vendedor de Armas < /materiais(Casarão e Estação) /venderarma");
  2697.                 }
  2698.                 else if(PlayerInfo[playerid][pEmprego] == 8)
  2699.                 {
  2700.                     SendClientMessage(playerid,COLOR_GREEN,"BGL > Lutador de Boxe < /lutar /statusluta");
  2701.                 }
  2702.                 else if(PlayerInfo[playerid][pEmprego] == 9)
  2703.                 {
  2704.                     SendClientMessage(playerid,COLOR_YELLOW,"BGL > Motorista de Ônibus < /corrida Entrar e Sair do Trabalho! /cancelar onibus(Cancelar a Corrida) /terminais");
  2705.                 }
  2706.                 else if(PlayerInfo[playerid][pEmprego] == 10)
  2707.                 {
  2708.                     SendClientMessage(playerid,COLOR_YELLOW,"BGL > Mendigo < /esmola /pbarraca(por barraca) /rbarraca(retirar barraca)");
  2709.                 }
  2710.                 else if(PlayerInfo[playerid][pEmprego] == 11)
  2711.                 {
  2712.                     SendClientMessage(playerid,COLOR_YELLOW,"BGL > Caminhoneiro < /mercadorials /mercadoriasf /mercadorialv");
  2713.                 }
  2714.                 if(PlayerInfo[playerid][pLFamilia] == 2)
  2715.                 {
  2716.                     SendClientMessage(playerid,0x33FF00FF,"Familia Freeze > /convidarf2 /demitirf2");
  2717.                 }
  2718.                 if(PlayerInfo[playerid][pFamilia] == 1)
  2719.                 {
  2720.                     SendClientMessage(playerid,0x33FF00FF,"Familia > /cf(Chat da familia) /nascerowner (Nascer hq OwNer) ");
  2721.                 }
  2722.                 if(PlayerInfo[playerid][pFamilia] == 2)
  2723.                 {
  2724.                     SendClientMessage(playerid,0x33FF00FF,"Familia > /pfreeze (Portão) /cf(Chat Familia) /nascerfreeze (Nascer HQ) ");
  2725.                 }
  2726.                 if(PlayerInfo[playerid][pFamilia] == 3)
  2727.                 {
  2728.                     SendClientMessage(playerid,0x33FF00FF,"Familia > /pxavier (Portão 1 e 2) /cf[Chat familia] /nascerxavier (Nascer HQ) ");
  2729.                 }
  2730.                 if(PlayerInfo[playerid][pMembro] == 1 || PlayerInfo[playerid][pLider] == 1)
  2731.                 {
  2732.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "Comandos > (/r)adio (/d)epartmento (/m)egafone (/su)speito /ficha /prender /batercartao /procurados /algemar /imo /reforco");
  2733.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "Comandos > /revistar /retirar /prender (/gov)erno /arrombar (/do)minar /desalgemar /arrombar /bafometro /multar /infoorg /ronda");
  2734.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "Portões  > /pe - P Estacionamento | /pg - P Garagem | /pr - P Recepção | /pp - P Presos | /pv - P Vestiário");
  2735.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "Barreira > /br - Criar Barreira | /rbr - Retirar Barreira | /rbrall - Retirar Todas As Barreiras");
  2736.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "Bloqueio > /bq - Criar Bloqueio | /rbq - Retirar Bloqueio | /rbqall - Retirar Todas Os Bloqueios");
  2737.                 }
  2738.                 if(PlayerInfo[playerid][pMembro] == 7 || PlayerInfo[playerid][pLider] == 7)
  2739.                 {
  2740.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "Governo: /equipargov (/r)adio - (/d)epartamento - (/m)egafone - /algemar - /imo - /infoorg");
  2741.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "Governo: /revistar - /retirar - /pp - /pgov - Portão dos Carros - /ppre - Porta Prefeitura");
  2742.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "Prefeito: (/pre)feito /dartaxa(Para os Policias) /setartaxa(Taxa Por Pessoa)");
  2743.                 }
  2744.                 if(PlayerInfo[playerid][pMembro] == 10 || PlayerInfo[playerid][pLider] == 10)
  2745.                 {
  2746.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "Taxistas: /corrida Entrar e Sair do Trabalho! /cancelar onibus(Cancelar a Corrida) /antaxi");
  2747.                 }
  2748.                 if(PlayerInfo[playerid][pMembro] == 2 || PlayerInfo[playerid][pLider] == 2)
  2749.                 {
  2750.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "Comandos > (/r)adio (/d)epartmento (/m)egafone (/su)speito /ficha /detento /batercartao /procurados /algemar /imo /reforco /infoorg");
  2751.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "Comandos > /revistar /retirar /prender (/gov)erno /camera /arrombar (/do)minar /desalgemar /arrombar /bafometro /multar");
  2752.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "Portões  > /pf - Portao Federal | /pb2 - Garagem1 | /pb3 - Garagem2");
  2753.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "Barreira > /br - Criar Barreira | /rbr - Retirar Barreira | /rbrall - Retirar Todas As Barreiras");
  2754.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "Bloqueio > /bq - Criar Bloqueio | /rbq - Retirar Bloqueio | /rbqall - Retirar Todas Os Bloqueios");
  2755.                 }
  2756.                 if(PlayerInfo[playerid][pMembro] == 3 || PlayerInfo[playerid][pLider] == 3)
  2757.                 {
  2758.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "Exército > (/r)adio (/d)epartmento (/m)egafone (/su)speito /ficha /prender /batercartao /infoorg");
  2759.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "Exército > /revistar /retirar (/gov)erno /camera /arrombar /algemar /imo /br /rb /multar /procurados");
  2760.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "Exército > /abrirgn - Portão Principal /equipar /algemar /desalgemar /reforco /bafometro");
  2761.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "Exército > /guerra /pontos(ver pontuação da guerra) /tirarbombas - Bloqueia os Homens Bombas");
  2762.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "Barreira > /br - Criar Barreira | /rbr - Retirar Barreira | /rbrall - Retirar Todas As Barreiras");
  2763.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "Bloqueio > /bq - Criar Bloqueio | /rbq - Retirar Bloqueio | /rbqall - Retirar Todas Os Bloqueios");
  2764.                 }
  2765.                 if (PlayerInfo[playerid][pMembro] == 4 || PlayerInfo[playerid][pLider] == 4)
  2766.                 {
  2767.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "Médicos > | (/r)adio | (/d)epartamento | /vida | /batercartao | /infoorg | (/gov)erno");
  2768.                 }
  2769.                 if (PlayerInfo[playerid][pMembro] == 14 || PlayerInfo[playerid][pLider] == 14)
  2770.                 {
  2771.                     SendClientMessage(playerid, COLOR_LIGHTBLUE,"Groove Street >  | (/ga)ng | /sequestrar & /desamarrar | /do(minar) | /assaltar | /infoorg | /roubar | (/ang)ang");
  2772.                     SendClientMessage(playerid, COLOR_LIGHTBLUE,"Groove Street >  | /brgangue | /rbrgang");
  2773.                 }
  2774.                 if (PlayerInfo[playerid][pMembro] == 6 || PlayerInfo[playerid][pLider] == 6)
  2775.                 {
  2776.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "BGL > Terroristas <  /comprarbomba - Loja de Armas | /plantarbomba - Atentados | /detonarbomba - explode a bomba");
  2777.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "BGL > Terroristas <  /equipar /homembomba /carrobomba /tal");
  2778.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "BGL > Terroristas <  (/ga)ngue /guerra /pontos(ver pontuação da guerra) /infoorg");
  2779.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "BGL > Terroristas <  /sequestrar e /desamarrar - Fazer um sequestro");
  2780.                 }
  2781.                 if(PlayerInfo[playerid][pMembro] == 15 || PlayerInfo[playerid][pLider] == 15)
  2782.                 {
  2783.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "BGL > Terroristas <  /comprarbomba - Loja de Armas | /plantarbomba - Atentados | /detonarbomba - explode a bomba");
  2784.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "BGL > Terroristas <  /equipar /homembomba /carrobomba /alq");
  2785.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "BSL > Terroristas <  (/ga)ngue /guerra /pontos(ver pontuação da guerra) /infoorg");
  2786.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "BGL > Terroristas <  /sequestrar e /desamarrar - Fazer um sequestro");
  2787.                 }
  2788.                 if (PlayerInfo[playerid][pMembro] == 16 || PlayerInfo[playerid][pLider] == 16)
  2789.                 {
  2790.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "Comandos > (/r)adio (/d)epartmento (/m)egafone (/su)speito /ficha /prender /batercartao /procurados /algemar /imo /infoorg");
  2791.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "Comandos > /revistar /retirar /prender (/gov)erno /deliver /camera /arrombar /desalgemar /bafometro /reforco /multar /ronda");
  2792.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "Portões  > /ppc(Portão PC) | DP > /pv - Vestiário(DP) | /pr | /pp - Portao DP");
  2793.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "Barreira > /br - Criar Barreira | /rbr - Retirar Barreira | /rbrall - Retirar Todas As Barreiras");
  2794.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "Bloqueio > /bq - Criar Bloqueio | /rbq - Retirar Bloqueio | /rbqall - Retirar Todas Os Bloqueios");
  2795.                 }
  2796.                 if (PlayerInfo[playerid][pMembro] == 12 || PlayerInfo[playerid][pLider] == 12 || PlayerInfo[playerid][pMembro] == 13 || PlayerInfo[playerid][pLider] == 13)
  2797.                 {
  2798.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "BGL > Máfias <  /(ga)ngue /mafia /mafiavarma /mafiavkit /amarrar /desamarrarm /infoorg /anmafia");
  2799.                     SendClientMessage(playerid, COLOR_LIGHTBLUE, "BGL > Máfias <  Para pegar ou esconder materiais va a HQ ou um territorio");
  2800.                 }
  2801.                 if (PlayerInfo[playerid][pMembro] == 5 || PlayerInfo[playerid][pLider] == 5)
  2802.                 {
  2803.                     SendClientMessage(playerid, COLOR_LIGHTBLUE,"Loz Aztecas > | (/ga)ng | /sequestrar & /desamarrar | /do(minar) | /assaltar | /infoorg | /roubar | (/ang)ang");
  2804.                     SendClientMessage(playerid, COLOR_LIGHTBLUE,"Loz Aztecas > | /brgangue | /rbrgang");
  2805.                 }
  2806.                 if (PlayerInfo[playerid][pMembro] == 8 || PlayerInfo[playerid][pLider] == 8)
  2807.                 {
  2808.                     SendClientMessage(playerid, COLOR_LIGHTBLUE,"Hitmans > /laptop - Computador Hitman | /arrombar(Porta das Casas) | /anhitmans");
  2809.                     SendClientMessage(playerid, COLOR_LIGHTBLUE,"Comandos > /ga - Chat Hitmans | /infoorg");
  2810.                 }
  2811.                 if (PlayerInfo[playerid][pMembro] == 17 || PlayerInfo[playerid][pLider] == 17)
  2812.                 {
  2813.                     SendClientMessage(playerid, COLOR_LIGHTBLUE,"Ballas >  | (/ga)ng | /sequestrar & /desamarrar | /do(minar) | /assaltar | /infoorg | /roubar | (/ang)ang");
  2814.                     SendClientMessage(playerid, COLOR_LIGHTBLUE,"Ballas > | /brgangue | /rbrgang");
  2815.                 }
  2816.                 if (PlayerInfo[playerid][pMembro] == 18 || PlayerInfo[playerid][pLider] == 18)
  2817.                 {
  2818.                     SendClientMessage(playerid, COLOR_LIGHTBLUE,"Los Vagos > | (/ga)ng | /sequestrar & /desamarrar | /do(minar) | /assaltar | /infoorg | /roubar | (/ang)ang");
  2819.                     SendClientMessage(playerid, COLOR_LIGHTBLUE,"Los Vagos > | /brgangue | /rbrgang");
  2820.                 }
  2821.                 if (PlayerInfo[playerid][pMembro] == 9 || PlayerInfo[playerid][pLider] == 9)
  2822.                 {
  2823.                     SendClientMessage(playerid, COLOR_LIGHTBLUE,"Repórter >  | /noticias | /aovivo | (/preporter & /preporter2 = Portões) |");
  2824.                     SendClientMessage(playerid, COLOR_LIGHTBLUE,"Comandos >  | (/ga)ngue) | /live | /noticias [texto] | /infoorg");
  2825.                 }
  2826.                 if (PlayerInfo[playerid][pMembro] == 11 || PlayerInfo[playerid][pLider] == 11)
  2827.                 {
  2828.                     SendClientMessage(playerid, COLOR_LIGHTBLUE,"Policia Federal > (/m)egafone /equipar /batercartao /procurados /presos /reforco /multar /infoorg");
  2829.                     SendClientMessage(playerid, COLOR_LIGHTBLUE,"Comandos > (/su)spect /limpar /revistar /r(adio) /d(epartamento) /do(minar) /arrombar /bafometro");
  2830.                     SendClientMessage(playerid, COLOR_LIGHTBLUE,"Portões  >  /pb - Portão HQ | Portôes DP LS(/pr /pp /pv /pe /pg)");
  2831.                     SendClientMessage(playerid, COLOR_LIGHTBLUE,"Barreira > /br - Criar Barreira | /rbr - Retirar Barreira | /rbrall - Retirar Todas As Barreiras");
  2832.                     SendClientMessage(playerid, COLOR_LIGHTBLUE,"Bloqueio > /bq - Criar Bloqueio | /rbq - Retirar Bloqueio | /rbqall - Retirar Todas Os Bloqueios");
  2833.                 }
  2834.                 if (PlayerInfo[playerid][pMembro] == 19 || PlayerInfo[playerid][pLider] == 19)
  2835.                 {
  2836.                     SendClientMessage(playerid, COLOR_LIGHTBLUE,"Comando Vermelho >  | (/ga)ng | /sequestrar & /desamarrar | /do(minar) | /assaltar | /infoorg | /roubar | (/ang)ang");
  2837.                     SendClientMessage(playerid, COLOR_LIGHTBLUE,"Comando Vermelho >  | /brgangue | /rbrgang");
  2838.                 }
  2839.                 if (PlayerInfo[playerid][pMembro] == 20 || PlayerInfo[playerid][pLider] == 20)
  2840.                 {
  2841.                     SendClientMessage(playerid, COLOR_LIGHTBLUE,"PCC >  | (/ga)ng | /sequestrar & /desamarrar | /do(minar) | /assaltar | /infoorg | /roubar | (/ang)ang");
  2842.                     SendClientMessage(playerid, COLOR_LIGHTBLUE,"PCC >  | /brgangue | /rbrgang");
  2843.                 }
  2844.                 if (PlayerInfo[playerid][pMembro] == 21 || PlayerInfo[playerid][pLider] == 21)
  2845.                 {
  2846.                     SendClientMessage(playerid, COLOR_LIGHTBLUE,"Midnight Club >  | (/ga)ng | /sequestrar & /desamarrar | /assaltar | /infoorg | /roubar | (/anmid)");
  2847.                     SendClientMessage(playerid, COLOR_LIGHTBLUE,"Midnight Club >  |  /cirarcorrida | /ircorrida | /destruircorrida");
  2848.                     SendClientMessage(playerid, COLOR_LIGHTBLUE,"Midnight Club >  |  /brmid 1 | /brmid 2 | /brmid 3 /rbrmid 1 | /rbrmid 2 | /rbrmid 3");
  2849.                 }
  2850.                 if (PlayerInfo[playerid][pMembro] == 22 || PlayerInfo[playerid][pLider] == 22)
  2851.                 {
  2852.                     SendClientMessage(playerid, COLOR_LIGHTBLUE,"Sons Of Anarchy >  | (/ga)ng | /sequestrar & /desamarrar | /assaltar | /infoorg | /roubar | (/ansons)");
  2853.                 }
  2854.                 if (PlayerInfo[playerid][pMembro] == 23 || PlayerInfo[playerid][pLider] == 23)
  2855.                 {
  2856.                     SendClientMessage(playerid, COLOR_LIGHTBLUE,"D.E.T.R.A.N >  | (/r)adio | (/d)partamento | /multar | (/su)speito | (/andetran)anuncio | /rebocar | /br | /bafometro");
  2857.                     SendClientMessage(playerid, COLOR_LIGHTBLUE,"D.E.T.R.A.N >  | /reforco | /pregos | /pdetran,/pdetran2(portão) | /entrarservico | /retirar /edetran(elevador) | (/m)egafone | /bq");
  2858.                 }
  2859.                 if (PlayerInfo[playerid][pMembro] == 24 || PlayerInfo[playerid][pLider] == 24)
  2860.                 {
  2861.                     SendClientMessage(playerid, COLOR_LIGHTBLUE,"Advogados >  | (/r)adio | (/d)partamento | /soltar /presos /anoab(anuncio)");
  2862.                 }
  2863.                 if (PlayerInfo[playerid][pMembro] == 25 || PlayerInfo[playerid][pLider] == 25)
  2864.                 {
  2865.                     SendClientMessage(playerid, COLOR_LIGHTBLUE,"PCC >  | (/ga)ng | /sequestrar & /desamarrar | /do(minar) | /assaltar | /infoorg | /roubar | (/ang)ang");
  2866.                     SendClientMessage(playerid, COLOR_LIGHTBLUE,"PCC >  | /brgangue | /rbrgang");
  2867.                 }
  2868.             }
  2869.             if(listitem == 7)
  2870.             {
  2871.                 SendClientMessage(playerid, COLOR_WHITE, "|______________ Ajuda Pesca ______________|");
  2872.                 SendClientMessage(playerid, COLOR_GRAD3,"Pescaria > /pescar (Tente pegar um peixe)   /peixes (Mostrar os peixes que você pegou)");
  2873.                 SendClientMessage(playerid, COLOR_GRAD3,"Pescaria > /soltarultimo(Jogue o último peixe Você pegou de volta) /soltartodos(jogue todos seus peixes de volta)");
  2874.                 SendClientMessage(playerid, COLOR_GRAD3,"Pescaria > /soltarpeixe (Liberação de uma de suas barbatanas) /vender(+ de 20 LBs | 24-7) /comer(Casas de Comida)");
  2875.             }
  2876.             if(listitem == 8)
  2877.             {
  2878.                 SendClientMessage(playerid, COLOR_WHITE, "|______________ Ajuda IRC ______________|");
  2879.                 SendClientMessage(playerid, COLOR_WHITE,"Chat IRC > (/irc entrar [nº canal] ou /irc entrar [nº canal] [Senha])  (/irc sair)");
  2880.                 SendClientMessage(playerid, COLOR_WHITE,"Chat IRC > (/irc senha [nº canal])  (/irc needpass [nº canal])  (/irc trancar [nº canal])");
  2881.                 SendClientMessage(playerid, COLOR_WHITE,"Chat IRC > (/irc Admins)  (/irc MOTD [motdtext])  (/irc status [nº canal])  (/i [texto])");
  2882.             }
  2883.             if(listitem == 9)
  2884.             {
  2885.                 SendClientMessage(playerid, COLOR_WHITE, "|______________ Ajuda Cozinha ______________|");
  2886.                 SendClientMessage(playerid, COLOR_GRAD3,"Cozinha > /cozinhar (Mostra as opcoes disponiveis) /cozido (Mostra o que ja foi cozinhado)");
  2887.                 SendClientMessage(playerid, COLOR_GRAD3,"Cozinha > /comer (Come o que ja foi cozinhado)");
  2888.             }
  2889.             if(listitem == 10)
  2890.             {
  2891.                 SendClientMessage(playerid, COLOR_WHITE, "|______________ Ajuda Casamento ______________|");
  2892.                 SendClientMessage(playerid, COLOR_LIGHTRED,"/padrinho (cada 1 tem que ter 1 padrinho!)");
  2893.                 SendClientMessage(playerid, COLOR_LIGHTRED,"/casar (quem pedir tem que ter 1 casa!)");
  2894.                 SendClientMessage(playerid, COLOR_LIGHTBLUE,"Não sabe o local? digite /gps - Igreja");
  2895.                 SendClientMessage(playerid, TEAM_VAGOS_COLOR,"Separação(Digite: /separacao)");
  2896.             }
  2897.             if(listitem == 11)
  2898.             {
  2899.                 SendClientMessage(playerid, COLOR_WHITE, "|______________ Forum do Server ______________|");
  2900.                 SendClientMessage(playerid, COLOR_YELLOW,"www.bgl.vai.la");
  2901.                 SendClientMessage(playerid, COLOR_YELLOW,"Se cadastre e veja as contas VIP's.");
  2902.             }
  2903.             if(listitem == 12)
  2904.             {
  2905.                 SendClientMessage(playerid, COLOR_WHITE, "|______________ Créditos ______________|");
  2906.                 SendClientMessage(playerid, COLOR_YELLOW, "GameMode GodFather, criado por: Denver.");
  2907.                 SendClientMessage(playerid, COLOR_YELLOW, "Maior Parte do GM Editado por : Jonas_OwNeR");
  2908.                 SendClientMessage(playerid, COLOR_YELLOW, "Editado por: Maniaco_Albrecht para o servidor BGL.");
  2909.             }
  2910.             if(listitem == 13)
  2911.             {
  2912.                 if (PlayerInfo[playerid][pVIP] >= 1)
  2913.                 {
  2914.                     SendClientMessage(playerid, COLOR_WHITE, "|______________ Ajuda VIPs e Premiuns ______________|");
  2915.                     SendClientMessage(playerid, 0xCDB38BAA, "-> /kitvip /mala /desativar celular /v(chat) /relatorio(cor destacada)");
  2916.                     SendClientMessage(playerid, COLOR_GRAD1, "-> Carros VIPS: /veiculo ajuda");
  2917.                     SendClientMessage(playerid, COLOR_GRAD1, "-> Casas VIPS: /ajudacasa");
  2918.                 }
  2919.                 else
  2920.                 {
  2921.                     SendClientMessage(playerid, COLOR_GRAD1, "Você não é um jogador VIP/VIP Premium");
  2922.                 }
  2923.             }
  2924.             if(listitem == 14)
  2925.             {
  2926.                 SendClientMessage(playerid, COLOR_WHITE, "|______________ Seja VIP ______________|");
  2927.                 SendClientMessage(playerid, COLOR_YELLOW,"/forum - Para virar VIP acesse nosso forum");
  2928.                 SendClientMessage(playerid, COLOR_YELLOW,"Chamando 8 você ganhara VIP , Chamando 10 Ganhara VIP/PREMIUK!");
  2929.                 SendClientMessage(playerid, COLOR_YELLOW,"Veja com um ADM online!");
  2930.                 SendClientMessage(playerid, COLOR_LIGHTRED,"Acesse www.bgl.vai.la");
  2931.             }
  2932.             if(listitem == 15)
  2933.             {
  2934.                 SendClientMessage(playerid, COLOR_WHITE, "|______________ Seja Sócio ______________|");
  2935.                 SendClientMessage(playerid, COLOR_YELLOW,"Chamando 15 Players , você podera ganhar Socio Gratis .");
  2936.                 SendClientMessage(playerid, COLOR_LIGHTRED,"Duvidas,acesse www.bgl.vai.la");
  2937.             }
  2938.             if(listitem == 15)
  2939.             {
  2940.                 SendClientMessage(playerid, COLOR_WHITE, "|______________ Comandos Sócio ______________|");
  2941.                 SendClientMessage(playerid, COLOR_LIGHTBLUE,"Sócio > /kitsocio(equipamento) | /jetpack(mochila ajato) | /so(chat dos sócios)");
  2942.                 SendClientMessage(playerid, COLOR_LIGHTBLUE,"Orgs >/orgpm(Policia Militar) | /orgrota(ROTA) | /orggn(Exercito) | /orgpc(Policia Civil) | /orgtcp(Terceiro Comando Puro)");
  2943.                 SendClientMessage(playerid, COLOR_LIGHTBLUE,"Orgs >/orgaztec(Los Aztecas) | /orghamas(Hamas) | /orghitman(Assassinos) | /orgreporter(Reportagem)");
  2944.                 SendClientMessage(playerid, COLOR_LIGHTBLUE,"Orgs >/orgtaxista(Taxistas) | /orgcosa(Cosa Nostra) | /orgyakuza(Yakuza) | /orgpf(Policia Federal)");
  2945.                 SendClientMessage(playerid, COLOR_LIGHTBLUE,"Orgs >/orggroove(Groove StreeT) | /orgalqaeda(Al'qaeda) | /orgballas(Ballas) | /orgvagos(Los Vagos) | /orgoab(Ordem dos Advogados do Brasil)");
  2946.                 SendClientMessage(playerid, COLOR_LIGHTBLUE,"Orgs >/orgcv(Comando Vermelho) | /orgpcc(PCC) | /orgmid(Midnight) | /orgsons(Sons Of Anarchy) | /orgdetran(D.E.T.R.A.N)");
  2947.             }
  2948.         }
  2949.         return 1;
  2950.     }
  2951.     if(dialogid == 5)
  2952.     {
  2953.         if(response == 0)
  2954.         {
  2955.             RodrigoInfo[playerid][PpLoja2472] = 0;
  2956.             return 1;
  2957.         }
  2958.         if(response >= 1)
  2959.         {
  2960.             if(listitem == 0)
  2961.             {
  2962.                 OnPlayerCommandText(playerid,"/comprar 1");
  2963.                 RodrigoInfo[playerid][PpLoja2472] = 0;
  2964.                 return 1;
  2965.             }
  2966.             if(listitem == 1)
  2967.             {
  2968.                 OnPlayerCommandText(playerid,"/comprar 2");
  2969.                 RodrigoInfo[playerid][PpLoja2472] = 0;
  2970.                 return 1;
  2971.             }
  2972.             if(listitem == 2)
  2973.             {
  2974.                 OnPlayerCommandText(playerid,"/comprar 3");
  2975.                 RodrigoInfo[playerid][PpLoja2472] = 0;
  2976.                 return 1;
  2977.             }
  2978.             if(listitem == 3)
  2979.             {
  2980.                 OnPlayerCommandText(playerid,"/comprar 4");
  2981.                 RodrigoInfo[playerid][PpLoja2472] = 0;
  2982.                 return 1;
  2983.             }
  2984.             if(listitem == 4)
  2985.             {
  2986.                 OnPlayerCommandText(playerid,"/comprar 5");
  2987.                 RodrigoInfo[playerid][PpLoja2472] = 0;
  2988.                 return 1;
  2989.             }
  2990.             if(listitem == 5)
  2991.             {
  2992.                 OnPlayerCommandText(playerid,"/comprar 6");
  2993.                 RodrigoInfo[playerid][PpLoja2472] = 0;
  2994.                 return 1;
  2995.             }
  2996.             if(listitem == 6)
  2997.             {
  2998.                 OnPlayerCommandText(playerid,"/comprar 7");
  2999.                 RodrigoInfo[playerid][PpLoja2472] = 0;
  3000.                 return 1;
  3001.             }
  3002.             if(listitem == 7)
  3003.             {
  3004.                 OnPlayerCommandText(playerid,"/comprar 8");
  3005.                 RodrigoInfo[playerid][PpLoja2472] = 0;
  3006.                 return 1;
  3007.             }
  3008.             if(listitem == 8)
  3009.             {
  3010.                 OnPlayerCommandText(playerid,"/comprar 9");
  3011.                 RodrigoInfo[playerid][PpLoja2472] = 0;
  3012.                 return 1;
  3013.             }
  3014.             if(listitem == 9)
  3015.             {
  3016.                 OnPlayerCommandText(playerid,"/comprar 10");
  3017.                 RodrigoInfo[playerid][PpLoja2472] = 0;
  3018.                 return 1;
  3019.             }
  3020.             if(listitem == 10)
  3021.             {
  3022.                 OnPlayerCommandText(playerid,"/comprar 11");
  3023.                 RodrigoInfo[playerid][PpLoja2472] = 0;
  3024.                 return 1;
  3025.             }
  3026.             if(listitem == 11)
  3027.             {
  3028.                 OnPlayerCommandText(playerid,"/comprar 12");
  3029.                 RodrigoInfo[playerid][PpLoja2472] = 0;
  3030.                 return 1;
  3031.             }
  3032.             if(listitem == 12)
  3033.             {
  3034.                 OnPlayerCommandText(playerid,"/comprar 13");
  3035.                 RodrigoInfo[playerid][PpLoja2472] = 0;
  3036.                 return 1;
  3037.             }
  3038.             if(listitem == 13)
  3039.             {
  3040.                 OnPlayerCommandText(playerid,"/comprar 14");
  3041.                 RodrigoInfo[playerid][PpLoja2472] = 0;
  3042.                 return 1;
  3043.             }
  3044.             RodrigoInfo[playerid][PpLoja2472] = 0;
  3045.             return 1;
  3046.         }
  3047.     }
  3048.     if(dialogid == 6)
  3049.     {
  3050.         if(response == 0)
  3051.         {
  3052.             RodrigoInfo[playerid][PLojaA1] = 0;
  3053.             RodrigoInfo[playerid][PLojaA2] = 0;
  3054.             return 1;
  3055.         }
  3056.         if(response == 1)
  3057.         {
  3058.             if(listitem == 0)
  3059.             {
  3060.                 ShowPlayerDialog(playerid, 8, DIALOG_STYLE_LIST, "Escolha seu KitVip", "Kit Vip Normal\nKit Vip Premium", "Confirmar", "Cancelar");
  3061.                 return 1;
  3062.             }
  3063.             if(listitem == 1)
  3064.             {
  3065.                 strmid(RodrigoInfo[playerid][ArmaLoja], "eagle", 0, strlen("eagle"), 255);
  3066.                 ShowPlayerDialog(playerid, 7, DIALOG_STYLE_INPUT, "Escolha a quantidade de Munição", "Digite a quantidade de Munição que você deseja!", "Confirmar", "Cancelar");
  3067.                 return 1;
  3068.             }
  3069.             if(listitem == 2)
  3070.             {
  3071.                 strmid(RodrigoInfo[playerid][ArmaLoja], "mp5", 0, strlen("mp5"), 255);
  3072.                 ShowPlayerDialog(playerid, 7, DIALOG_STYLE_INPUT, "Escolha a quantidade de Munição", "Digite a quantidade de Munição que você deseja!", "Confirmar", "Cancelar");
  3073.                 return 1;
  3074.             }
  3075.             if(listitem == 3)
  3076.             {
  3077.                 strmid(RodrigoInfo[playerid][ArmaLoja], "shotgun", 0, strlen("shotgun"), 255);
  3078.                 ShowPlayerDialog(playerid, 7, DIALOG_STYLE_INPUT, "Escolha a quantidade de Munição", "Digite a quantidade de Munição que você deseja!", "Confirmar", "Cancelar");
  3079.                 return 1;
  3080.             }
  3081.             if(listitem == 4)
  3082.             {
  3083.                 strmid(RodrigoInfo[playerid][ArmaLoja], "ak47", 0, strlen("ak47"), 255);
  3084.                 ShowPlayerDialog(playerid, 7, DIALOG_STYLE_INPUT, "Escolha a quantidade de Munição", "Digite a quantidade de Munição que você deseja!", "Confirmar", "Cancelar");
  3085.                 return 1;
  3086.             }
  3087.             if(listitem == 5)
  3088.             {
  3089.                 strmid(RodrigoInfo[playerid][ArmaLoja], "m4", 0, strlen("m4"), 255);
  3090.                 ShowPlayerDialog(playerid, 7, DIALOG_STYLE_INPUT, "Escolha a quantidade de Munição", "Digite a quantidade de Munição que você deseja!", "Confirmar", "Cancelar");
  3091.                 return 1;
  3092.             }
  3093.             if(listitem == 6)
  3094.             {
  3095.                 strmid(RodrigoInfo[playerid][ArmaLoja], "rifle", 0, strlen("rifle"), 255);
  3096.                 ShowPlayerDialog(playerid, 7, DIALOG_STYLE_INPUT, "Escolha a quantidade de Munição", "Digite a quantidade de Munição que você deseja!", "Confirmar", "Cancelar");
  3097.                 return 1;
  3098.             }
  3099.             if(listitem == 7)
  3100.             {
  3101.                 strmid(RodrigoInfo[playerid][ArmaLoja], "parachute", 0, strlen("parachute"), 255);
  3102.                 ShowPlayerDialog(playerid, 7, DIALOG_STYLE_INPUT, "Escolha a quantidade de Munição", "Digite a quantidade de Munição que você deseja!", "Confirmar", "Cancelar");
  3103.                 return 1;
  3104.             }
  3105.             if(listitem == 8)
  3106.             {
  3107.                 strmid(RodrigoInfo[playerid][ArmaLoja], "golfclub", 0, strlen("golfclub"), 255);
  3108.                 ShowPlayerDialog(playerid, 7, DIALOG_STYLE_INPUT, "Escolha a quantidade de Munição", "Digite a quantidade de Munição que você deseja!", "Confirmar", "Cancelar");
  3109.                 return 1;
  3110.             }
  3111.             if(listitem == 9)
  3112.             {
  3113.                 strmid(RodrigoInfo[playerid][ArmaLoja], "nightstick", 0, strlen("nightstick"), 255);
  3114.                 ShowPlayerDialog(playerid, 7, DIALOG_STYLE_INPUT, "Escolha a quantidade de Munição", "Digite a quantidade de Munição que você deseja!", "Confirmar", "Cancelar");
  3115.                 return 1;
  3116.             }
  3117.             if(listitem == 10)
  3118.             {
  3119.                 strmid(RodrigoInfo[playerid][ArmaLoja], "baseballbat", 0, strlen("baseballbat"), 255);
  3120.                 ShowPlayerDialog(playerid, 7, DIALOG_STYLE_INPUT, "Escolha a quantidade de Munição", "Digite a quantidade de Munição que você deseja!", "Confirmar", "Cancelar");
  3121.                 return 1;
  3122.             }
  3123.             if(listitem == 11)
  3124.             {
  3125.                 strmid(RodrigoInfo[playerid][ArmaLoja], "shovel", 0, strlen("shovel"), 255);
  3126.                 ShowPlayerDialog(playerid, 7, DIALOG_STYLE_INPUT, "Escolha a quantidade de Munição", "Digite a quantidade de Munição que você deseja!", "Confirmar", "Cancelar");
  3127.                 return 1;
  3128.             }
  3129.             if(listitem == 12)
  3130.             {
  3131.                 strmid(RodrigoInfo[playerid][ArmaLoja], "poolcue", 0, strlen("poolcue"), 255);
  3132.                 ShowPlayerDialog(playerid, 7, DIALOG_STYLE_INPUT, "Escolha a quantidade de Munição", "Digite a quantidade de Munição que você deseja!", "Confirmar", "Cancelar");
  3133.                 return 1;
  3134.             }
  3135.             if(listitem == 13)
  3136.             {
  3137.                 strmid(RodrigoInfo[playerid][ArmaLoja], "purpledildo", 0, strlen("purpledildo"), 255);
  3138.                 ShowPlayerDialog(playerid, 7, DIALOG_STYLE_INPUT, "Escolha a quantidade de Munição", "Digite a quantidade de Munição que você deseja!", "Confirmar", "Cancelar");
  3139.                 return 1;
  3140.             }
  3141.             if(listitem == 14)
  3142.             {
  3143.                 strmid(RodrigoInfo[playerid][ArmaLoja], "whitedildo", 0, strlen("whitedildo"), 255);
  3144.                 ShowPlayerDialog(playerid, 7, DIALOG_STYLE_INPUT, "Escolha a quantidade de Munição", "Digite a quantidade de Munição que você deseja!", "Confirmar", "Cancelar");
  3145.                 return 1;
  3146.             }
  3147.             if(listitem == 15)
  3148.             {
  3149.                 strmid(RodrigoInfo[playerid][ArmaLoja], "longwhitedildo", 0, strlen("longwhitedildo"), 255);
  3150.                 ShowPlayerDialog(playerid, 7, DIALOG_STYLE_INPUT, "Escolha a quantidade de Munição", "Digite a quantidade de Munição que você deseja!", "Confirmar", "Cancelar");
  3151.                 return 1;
  3152.             }
  3153.             if(listitem == 16)
  3154.             {
  3155.                 strmid(RodrigoInfo[playerid][ArmaLoja], "whitedildo2", 0, strlen("whitedildo2"), 255);
  3156.                 ShowPlayerDialog(playerid, 7, DIALOG_STYLE_INPUT, "Escolha a quantidade de Munição", "Digite a quantidade de Munição que você deseja!", "Confirmar", "Cancelar");
  3157.                 return 1;
  3158.             }
  3159.             if(listitem == 17)
  3160.             {
  3161.                 strmid(RodrigoInfo[playerid][ArmaLoja], "flowers", 0, strlen("flowers"), 255);
  3162.                 ShowPlayerDialog(playerid, 7, DIALOG_STYLE_INPUT, "Escolha a quantidade de Munição", "Digite a quantidade de Munição que você deseja!", "Confirmar", "Cancelar");
  3163.                 return 1;
  3164.             }
  3165.             if(listitem == 18)
  3166.             {
  3167.                 strmid(RodrigoInfo[playerid][ArmaLoja], "cane", 0, strlen("cane"), 255);
  3168.                 ShowPlayerDialog(playerid, 7, DIALOG_STYLE_INPUT, "Escolha a quantidade de Munição", "Digite a quantidade de Munição que você deseja!", "Confirmar", "Cancelar");
  3169.                 return 1;
  3170.             }
  3171.             if(listitem == 19)
  3172.             {
  3173.                 ShowPlayerDialog(playerid, 2499, DIALOG_STYLE_INPUT, "Escolha", "Digite a quantidade de Proteção do seu Colete", "Confirmar", "Cancelar");
  3174.                 return 1;
  3175.             }
  3176.             RodrigoInfo[playerid][PLojaA1] = 0;
  3177.             RodrigoInfo[playerid][PLojaA2] = 0;
  3178.             return 1;
  3179.         }
  3180.         return 1;
  3181.     }
  3182.     if(dialogid == 7)
  3183.     {
  3184.         if(response == 0)
  3185.         {
  3186.             RodrigoInfo[playerid][PLojaA1] = 0;
  3187.             RodrigoInfo[playerid][PLojaA2] = 0;
  3188.             RodrigoInfo[playerid][ArmaLoja] = 0;
  3189.             return 1;
  3190.         }
  3191.         if(response == 1)
  3192.         {
  3193.             format(gstring,sizeof(gstring),"/comprararma %s %d",RodrigoInfo[playerid][ArmaLoja],strval(inputtext));
  3194.             OnPlayerCommandText(playerid,gstring);
  3195.             RodrigoInfo[playerid][PLojaA1] = 0;
  3196.             RodrigoInfo[playerid][PLojaA2] = 0;
  3197.             RodrigoInfo[playerid][ArmaLoja] = 0;
  3198.             return 1;
  3199.         }
  3200.         RodrigoInfo[playerid][PLojaA1] = 0;
  3201.         RodrigoInfo[playerid][PLojaA2] = 0;
  3202.         RodrigoInfo[playerid][ArmaLoja] = 0;
  3203.         return 1;
  3204.     }
  3205.     if(dialogid == 2499)
  3206.     {
  3207.         if(response == 0)
  3208.         {
  3209.             RodrigoInfo[playerid][PLojaA1] = 0;
  3210.             RodrigoInfo[playerid][PLojaA2] = 0;
  3211.             RodrigoInfo[playerid][ArmaLoja] = 0;
  3212.             return 1;
  3213.         }
  3214.         if(response == 1)
  3215.         {
  3216.             if(strlen(inputtext) < 1 || strlen(inputtext) > 100) return SendClientMessage(playerid, 0xAFAFAFAA, "Texto Invalido.");
  3217.             {
  3218.             //SetPlayerArmour(playerid, strval(inputtext));
  3219.             //GivePlayerMoneyEx(playerid, - strval(inputtext));
  3220.             SendClientMessage(playerid, 0xAFAFAFAA, "Comando Desativado no momento");
  3221.             RodrigoInfo[playerid][PLojaA1] = 0;
  3222.             RodrigoInfo[playerid][PLojaA2] = 0;
  3223.             RodrigoInfo[playerid][ArmaLoja] = 0;
  3224.             return 1;
  3225.             }
  3226.         }
  3227.         RodrigoInfo[playerid][PLojaA1] = 0;
  3228.         RodrigoInfo[playerid][PLojaA2] = 0;
  3229.         RodrigoInfo[playerid][ArmaLoja] = 0;
  3230.         return 1;
  3231.     }
  3232.     if(dialogid == 8)
  3233.     {
  3234.         if(response == 0)
  3235.         {
  3236.             RodrigoInfo[playerid][PLojaA1] = 0;
  3237.             RodrigoInfo[playerid][PLojaA2] = 0;
  3238.             return 1;
  3239.         }
  3240.         if(response == 1)
  3241.         {
  3242.             if(listitem == 0)
  3243.             {
  3244.                 OnPlayerCommandText(playerid,"/kitvip");
  3245.                 RodrigoInfo[playerid][PLojaA1] = 0;
  3246.                 RodrigoInfo[playerid][PLojaA2] = 0;
  3247.                 RodrigoInfo[playerid][ArmaLoja] = 0;
  3248.                 return 1;
  3249.             }
  3250.             if(listitem == 1)
  3251.             {
  3252.                 OnPlayerCommandText(playerid,"/kitpremium");
  3253.                 RodrigoInfo[playerid][PLojaA1] = 0;
  3254.                 RodrigoInfo[playerid][PLojaA2] = 0;
  3255.                 RodrigoInfo[playerid][ArmaLoja] = 0;
  3256.                 return 1;
  3257.             }
  3258.             if(listitem == 2)
  3259.             {
  3260.                 OnPlayerCommandText(playerid,"/kitvip");
  3261.                 RodrigoInfo[playerid][PLojaA1] = 0;
  3262.                 RodrigoInfo[playerid][PLojaA2] = 0;
  3263.                 RodrigoInfo[playerid][ArmaLoja] = 0;
  3264.                 return 1;
  3265.             }
  3266.             return 1;
  3267.         }
  3268.         RodrigoInfo[playerid][PLojaA1] = 0;
  3269.         RodrigoInfo[playerid][PLojaA2] = 0;
  3270.         RodrigoInfo[playerid][ArmaLoja] = 0;
  3271.         return 1;
  3272.     }
  3273. //INICIO SISTEMA DE BANCO
  3274.     if(dialogid == 1122) //deposito
  3275.     {
  3276.         if(!response) return ShowPlayerDialog(playerid,1125,DIALOG_STYLE_LIST,"Banco","Depositar\nSacar\nSaldo\nTransferir","Ok","Cancelar");
  3277.         else if(strval(inputtext) > GetPlayerMoney(playerid)) return SendClientMessage(playerid,COLOR_GREY,"Você não possui esta quantia!");
  3278.         else if(!IsNumero(inputtext))
  3279.         {
  3280.             format(gstring,sizeof(gstring),"Seu Saldo atual é: R$[%d]\nDigite a quantidade que deseja depositar abaixo .",PlayerInfo[playerid][pConta]);
  3281.             ShowPlayerDialog(playerid,1122,DIALOG_STYLE_INPUT,"Depositar",gstring,"Depositar","Sair");
  3282.             SendClientMessage(playerid,COLOR_GREY,"Digite apenas números !");
  3283.         }
  3284.         else
  3285.         {
  3286.             GivePlayerMoney(playerid,-strval(inputtext));
  3287.             PlayerInfo[playerid][pConta] += strval(inputtext);
  3288.             format(gstring,sizeof(gstring),"Você depositou: R$[%d], Seu novo saldo é: R$[%d]",strval(inputtext), PlayerInfo[playerid][pConta]);
  3289.             SendClientMessage(playerid,COLOR_YELLOW,gstring);
  3290.             ShowPlayerDialog(playerid,1125,DIALOG_STYLE_LIST,"Banco","Depositar\nSacar\nSaldo\nTransferir","Ok","Cancelar");
  3291.         }
  3292.         return 1;
  3293.     }
  3294.     if(dialogid == 1123) //saque
  3295.     {
  3296.         if(!response) return ShowPlayerDialog(playerid,1125,DIALOG_STYLE_LIST,"Banco","Depositar\nSacar\nSaldo\nTransferir","Ok","Cancelar");
  3297.         else if(strval(inputtext) > PlayerInfo[playerid][pConta]) return SendClientMessage(playerid,COLOR_GREY,"Você não tem isso tudo na sua conta !");
  3298.         else if(!IsNumero(inputtext))
  3299.         {
  3300.             format(gstring,sizeof(gstring),"Seu Saldo atual é: [%d]\nColoque a quantidade que deseja sacar agora.",PlayerInfo[playerid][pConta]);
  3301.             ShowPlayerDialog(playerid,1123,DIALOG_STYLE_INPUT,"Sacar",gstring,"Sacar","Voltar");
  3302.             SendClientMessage(playerid,COLOR_GREY,"Digite apenas números!");
  3303.         }
  3304.         else
  3305.         {
  3306.             GivePlayerMoney(playerid,strval(inputtext));
  3307.             PlayerInfo[playerid][pConta] -= strval(inputtext);
  3308.             format(gstring,sizeof(gstring),"Você sacou: R$[%d]",strval(inputtext));
  3309.             SendClientMessage(playerid,COLOR_YELLOW,gstring);
  3310.             format(gstring,128,"Seu novo saldo é: R$[%d]",PlayerInfo[playerid][pConta]);
  3311.             SendClientMessage(playerid,COLOR_YELLOW,gstring);
  3312.             ShowPlayerDialog(playerid,1125,DIALOG_STYLE_LIST,"Banco","Depositar\nSacar\nSaldo\nTransferir","Ok","Cancelar");
  3313.         }
  3314.         return 1;
  3315.     }
  3316.     if(dialogid == 1124)
  3317.     {
  3318.         ShowPlayerDialog(playerid,1125,DIALOG_STYLE_LIST,"Banco","Depositar\nSacar\nSaldo\nTransferir","Ok","Cancelar");
  3319.         return 1;
  3320.     }
  3321.     if(dialogid == 1130) //transferir - playerid
  3322.     {
  3323.         if(!response) return ShowPlayerDialog(playerid,1125,DIALOG_STYLE_LIST,"Banco","Depositar\nSacar\nSaldo\nTransferir","Ok","Cancelar");
  3324.         else if(strval(inputtext) == INVALID_PLAYER_ID) return SendClientMessage(playerid,COLOR_GREY,"O jogador não está online !");
  3325.         else if(!IsNumero(inputtext))
  3326.         {
  3327.             format(gstring,sizeof(gstring),"Seu saldo atual é: R$[%d]\nColoque o ID do jogador para transferir :",PlayerInfo[playerid][pConta]);
  3328.             ShowPlayerDialog(playerid,1130,DIALOG_STYLE_INPUT,"Transferir",gstring,"Proximo","Voltar");
  3329.             SendClientMessage(playerid,COLOR_GREY,"Use o ID,não o nome - Se não sabe o id use /id [nome/parte do nome]");
  3330.         }
  3331.         else
  3332.         {
  3333.             chosenpid = strval(inputtext);
  3334.             format(gstring,sizeof(gstring),"Saldo: R$[%d]\nAgora coloque a quantidade que deseja transferir !",PlayerInfo[playerid][pConta]);
  3335.             ShowPlayerDialog(playerid,1131,DIALOG_STYLE_INPUT,"Transferir",gstring,"Transferir","Voltar");
  3336.         }
  3337.         return 1;
  3338.     }
  3339.     if(dialogid == 1131) //transferir - quantidade
  3340.     {
  3341.         if(!response) return ShowPlayerDialog(playerid,1125,DIALOG_STYLE_LIST,"Banco","Depositar\nSacar\nSaldo\nTransferir","Ok","Cancelar");
  3342.         else if(strval(inputtext) > PlayerInfo[playerid][pConta]) return SendClientMessage(playerid,COLOR_GREY,"Você não tem esta quantia para transferir !");
  3343.         else if(!IsNumero(inputtext))
  3344.         {
  3345.             ShowPlayerDialog(playerid,1131,DIALOG_STYLE_INPUT,"Transferir","Agora coloque a quantidade que deseja transferir","Transferir","Voltar");
  3346.             SendClientMessage(playerid,COLOR_GREY,"Porfavor,use números !");
  3347.         }
  3348.         else
  3349.         {
  3350.             PlayerInfo[playerid][pConta] -= strval(inputtext);
  3351.             PlayerInfo[chosenpid][pConta] += strval(inputtext);
  3352.             format(gstring,sizeof(gstring),"Você transferiu R$[%d] Para Conta Bancaria de: %s",strval(inputtext),PlayerName(chosenpid));
  3353.             SendClientMessage(playerid,COLOR_YELLOW,gstring);
  3354.             format(gstring,128,"Seu novo saldo é: R$[%d]",PlayerInfo[playerid][pConta]);
  3355.             SendClientMessage(playerid,COLOR_YELLOW,gstring);
  3356.             format(gstring,128,"ID[%d] Transferiu R$[%d] para sua conta bancaria",playerid,strval(inputtext));
  3357.             SendClientMessage(chosenpid,COLOR_YELLOW,gstring);
  3358.             format(gstring,128,"Seu novo saldo: R$[%d]",PlayerInfo[chosenpid][pConta]);
  3359.             SendClientMessage(chosenpid,COLOR_YELLOW,gstring);
  3360.             ShowPlayerDialog(playerid,1125,DIALOG_STYLE_LIST,"Banco","Depositar\nSacar\nSaldo\nTransferir","Ok","Cancelar");
  3361.         }
  3362.         return 1;
  3363.     }
  3364.     if(dialogid == 1125 && response) // /Banco
  3365.     {
  3366.         if(response == 0) { return 1; }
  3367.         switch(listitem)
  3368.         {
  3369.             case 0:
  3370.             {
  3371.                 format(gstring,sizeof(gstring),"Seu Saldo atual é : R$%d\nColoque a quantidade para depositar .",PlayerInfo[playerid][pConta]);
  3372.                 ShowPlayerDialog(playerid,1122,DIALOG_STYLE_INPUT,"Depositar",gstring,"Depositar","Voltar");
  3373.             }
  3374.             case 1:
  3375.             {
  3376.                 format(gstring,sizeof(gstring),"Seu Saldo atual é: R$%d\nColoque a quantidade para sacar .",PlayerInfo[playerid][pConta]);
  3377.                 ShowPlayerDialog(playerid,1123,DIALOG_STYLE_INPUT,"Sacar",gstring,"Sacar","Voltar");
  3378.             }
  3379.             case 2:
  3380.             {
  3381.                 format(gstring,sizeof(gstring),"Seu saldo atual é R$%d",PlayerInfo[playerid][pConta]);
  3382.                 ShowPlayerDialog(playerid,1124,DIALOG_STYLE_MSGBOX,"Saldo",gstring,"Ok","Voltar");
  3383.             }
  3384.             case 3:
  3385.             {
  3386.                 format(gstring,sizeof(gstring),"Seu Saldo atual é: R$%d\nColoque o ID do Jogador para transferir .",PlayerInfo[playerid][pConta]);
  3387.                 ShowPlayerDialog(playerid,1130,DIALOG_STYLE_INPUT,"Transferir",gstring,"Proximo","Voltar");
  3388.             }
  3389.         }
  3390.     }
  3391.     if(dialogid == 2568)
  3392.     {
  3393.         TogglePlayerControllable(playerid, 1);
  3394.         if(!response) { return 1; }
  3395.         switch(listitem)
  3396.         {
  3397.             case 0:
  3398.             {
  3399.                 ShowPlayerDialog(playerid,2587,DIALOG_STYLE_LIST,"GPS Locais em Geral","Prefeitura\nDepartamento de Policia\n24-7(Mercado)\nLoja de Armas 1\nLoja de Armas 2\nBinco(Loja de Roupas)\nAluguel de Carros\nCentro de Licencas\nHospital\nPosto Sul\nBanco\nLoterica","Selecionar","Voltar");
  3400.             }
  3401.             case 1:
  3402.             {
  3403.                 ShowPlayerDialog(playerid,2588,DIALOG_STYLE_LIST,"GPS Head Quarters","Policia Militar\nROTA\nExército\nMédicos\nLos Aztecas\nHamas\nPrefeitura\nHitmans\nReporteres\nTaxistas\nPolicia Federal\nMafia Cosa Nostra\nMafia Yakuza\nGroove Street\nAl'Qaeda\nPolicia Civil\nBallas\nLos Vagos\nComando Vermelho\nPCC\nSons Of Anarchy\nMidnight Club\nDetran\nO.A.B\nT.C.P","Selecionar","Voltar");
  3404.             }
  3405.             case 2:
  3406.             {
  3407.                 ShowPlayerDialog(playerid,2570,DIALOG_STYLE_LIST,"GPS Territorios","Favela(Gang)\nPista de Skate(Gang)\nEstacao Unity(Mafia)\nCasarao(Mafia)","Selecionar","Voltar");
  3408.             }
  3409.             case 3:
  3410.             {
  3411.                 DisablePlayerCheckpoint(playerid);
  3412.             }
  3413.         }
  3414.     }
  3415. //FIM SISTEMA DE BANCO
  3416.     if(dialogid == 2587)
  3417.     {
  3418.         TogglePlayerControllable(playerid, 1);
  3419.         EmDialog[playerid] = 0;
  3420.         if(response == 0) { return ShowPlayerDialog(playerid,2568,DIALOG_STYLE_LIST,"GPS","Locais em Geral\nHead Quarters\nTerritorios\nDesligar GPS","Aceitar","Cancelar"); }
  3421.         switch(listitem)
  3422.         {
  3423.             case 0:
  3424.             {
  3425.                 SetPlayerCheckpoint(playerid, 1481.1926,-1764.2736,18.7958,8.0);//prefeitura
  3426.             }
  3427.             case 1:
  3428.             {
  3429.                 SetPlayerCheckpoint(playerid, 1546.2761,-1675.5995,13.5620,8.0);//DP
  3430.             }
  3431.             case 2:
  3432.             {
  3433.                 SetPlayerCheckpoint(playerid, 1350.4865,-1753.2505,13.3582,8.0);//24-7
  3434.             }
  3435.             case 3:
  3436.             {
  3437.                 SetPlayerCheckpoint(playerid, 1790.5725,-1167.3705,23.8281,8.0);//Loja de armas
  3438.             }
  3439.             case 4:
  3440.             {
  3441.                 SetPlayerCheckpoint(playerid, 1068.7330,-1875.4727,13.5469,8.0);//Loja de armas 2
  3442.             }
  3443.             case 5:
  3444.             {
  3445.                 SetPlayerCheckpoint(playerid, 2244.7954,-1663.5021,15.4766,8.0);//Binco
  3446.             }
  3447.             case 6:
  3448.             {
  3449.                 SetPlayerCheckpoint(playerid, 2155.4363,-1171.3413,23.8206,8.0);//Aluguel de Carros
  3450.             }
  3451.             case 7:
  3452.             {
  3453.                 SetPlayerCheckpoint(playerid, 1411.5593,-1699.5270,13.5395,8.0);//Centro de Licencas
  3454.             }
  3455.             case 8:
  3456.             {
  3457.                 SetPlayerCheckpoint(playerid, 1175.3164,-1323.7809,14.3906,8.0);//Hospital
  3458.             }
  3459.             case 9:
  3460.             {
  3461.                 SetPlayerCheckpoint(playerid, 1928.826904,-1776.405517,13.546895,8.0);//Posto Sul
  3462.             }
  3463.             case 10:
  3464.             {
  3465.                 SetPlayerCheckpoint(playerid, 1462.395751,-1012.391174,26.843799,8.0);//Banco
  3466.             }
  3467.             case 11:
  3468.             {
  3469.                 SetPlayerCheckpoint(playerid, 1631.8547,-1172.5637,24.0843,8.0);//Loterica
  3470.             }
  3471.         }
  3472.     }
  3473.     if(dialogid == 2588)
  3474.     {
  3475.         TogglePlayerControllable(playerid, 1);
  3476.         EmDialog[playerid] = 0;
  3477.         if(response == 0) { return ShowPlayerDialog(playerid,2568,DIALOG_STYLE_LIST,"GPS","Locais em Geral\nHead Quarters\nTerritorios\nDesligar GPS","Aceitar","Cancelar"); }
  3478.         switch(listitem)
  3479.         {
  3480.             case 0:
  3481.             {
  3482.                 SetPlayerCheckpoint(playerid, 1554.2512,-1675.5313,16.1953,10.0);//pm
  3483.             }
  3484.             case 1:
  3485.             {
  3486.                 SetPlayerCheckpoint(playerid, 328.7618,-1511.8379,36.0391,10.0);//rota
  3487.             }
  3488.             case 2:
  3489.             {
  3490.                 SetPlayerCheckpoint(playerid, -1531.4238,481.8620,7.1875,10.0);//exercito
  3491.             }
  3492.             case 3:
  3493.             {
  3494.                 SetPlayerCheckpoint(playerid, 1176.7383,-1323.5166,14.0361,10.0);//medicos
  3495.             }
  3496.             case 4:
  3497.             {
  3498.                 SetPlayerCheckpoint(playerid, 2513.5022,-1947.5504,15.9830,10.0);//aztecas
  3499.             }
  3500.             case 5:
  3501.             {
  3502.                 SetPlayerCheckpoint(playerid, 2721.3413,-2405.5291,13.4609,10.0);//Hamas
  3503.             }
  3504.             case 6:
  3505.             {
  3506.                 SetPlayerCheckpoint(playerid, 1480.9232,-1772.3057,18.7958,10.0);//prefeitura
  3507.             }
  3508.             case 7:
  3509.             {
  3510.                 SetPlayerCheckpoint(playerid, 2344.5366,-1063.6530,53.0159,10.0);//hitmans
  3511.             }
  3512.             case 8:
  3513.             {
  3514.                 SetPlayerCheckpoint(playerid, 777.1924,-1331.4585,13.5471,10.0);//reporteres
  3515.             }
  3516.             case 9:
  3517.             {
  3518.                 SetPlayerCheckpoint(playerid, 959.2765,-1416.2083,13.5469,10.0);//taxistas
  3519.             }
  3520.             case 10:
  3521.             {
  3522.                 SetPlayerCheckpoint(playerid, 1289.7708,-1651.6230,13.5469,10.0);//pf
  3523.             }
  3524.             case 11:
  3525.             {
  3526.                 SetPlayerCheckpoint(playerid, 1495.9410,-699.4916,94.7500,10.0);//cosa nostra
  3527.             }
  3528.             case 12:
  3529.             {
  3530.                 SetPlayerCheckpoint(playerid, 664.3810,-1309.7341,13.4609,10.0);//yakuza
  3531.             }
  3532.             case 13:
  3533.             {
  3534.                 SetPlayerCheckpoint(playerid, 2495.1697,-1690.5923,14.7656,10.0);//groove
  3535.             }
  3536.             case 14:
  3537.             {
  3538.                 SetPlayerCheckpoint(playerid, -346.5812,-1054.4081,59.2902,10.0);//al'qaeda
  3539.             }
  3540.             case 15:
  3541.             {
  3542.                 SetPlayerCheckpoint(playerid, 925.5594,-1222.8481,16.9782,10.0);//PC
  3543.             }
  3544.             case 16:
  3545.             {
  3546.                 SetPlayerCheckpoint(playerid, 1119.2783,-1159.2039,23.5971,10.0);//Ballas
  3547.             }
  3548.             case 17:
  3549.             {
  3550.                 SetPlayerCheckpoint(playerid, 726.0744,-1450.4675,17.6953,10.0);//vagos
  3551.             }
  3552.             case 18:
  3553.             {
  3554.                 SetPlayerCheckpoint(playerid, 972.9812,-1544.5394,13.6037,10.0);//cv
  3555.             }
  3556.             case 19:
  3557.             {
  3558.                 SetPlayerCheckpoint(playerid, 1019.1855,-1104.9576,28.0078,10.0);//pcc
  3559.             }
  3560.             case 20:
  3561.             {
  3562.                 SetPlayerCheckpoint(playerid, 693.9538,-444.0587,16.3359,10.0);//sons
  3563.             }
  3564.             case 21:
  3565.             {
  3566.                 SetPlayerCheckpoint(playerid, 293.0777,-1149.7360,80.9099,10.0);//midnight
  3567.             }
  3568.             case 22:
  3569.             {
  3570.                 SetPlayerCheckpoint(playerid, 1620.8385009766,-1866.1763916016,13.196100234985,10.0);//detran
  3571.             }
  3572.             case 23:
  3573.             {
  3574.                 SetPlayerCheckpoint(playerid, 1659.3715,-1272.3707,14.8130,10.0);//oab
  3575.             }
  3576.             case 24:
  3577.             {
  3578.                 SetPlayerCheckpoint(playerid, 2347.2910,-1158.3579,27.1305,10.0);//tcp
  3579.             }
  3580.         }
  3581.     }
  3582.     if(dialogid == 2569)
  3583.     {
  3584.         TogglePlayerControllable(playerid, 1);
  3585.         EmDialog[playerid] = 0;
  3586.         if(response == 0) { return 1; }
  3587.         switch(listitem)
  3588.         {
  3589.             case 0:
  3590.             {
  3591.                 ShowPlayerDialog(playerid,2586,DIALOG_STYLE_MSGBOX,"Brasil Games Living || The Return","* Você está prestes a se tornar um Detetive, terá que cumprir 5 horas de contrato.\nPara se tornar Detetive, clique em aceitar.","Aceitar","Cancelar");
  3592.                 GettingEmprego[playerid] = 1;
  3593.                 TogglePlayerControllable(playerid, 1);
  3594.             }
  3595.             case 1:
  3596.             {
  3597.                 ShowPlayerDialog(playerid,2586,DIALOG_STYLE_MSGBOX,"Brasil Games Living || The Return","* Você está prestes a se tornar um Advogado, terá que cumprir 5 horas de contrato.\nPara se tornar um Advogado, clique em aceitar.","Aceitar","Cancelar");
  3598.                 GettingEmprego[playerid] = 2;
  3599.                 //SendClientMessage(playerid, COLOR_GREY, "Emprego desativado,mudo para organização OAB(Organização dos Advogados do Brasil)");
  3600.                 TogglePlayerControllable(playerid, 1);
  3601.             }
  3602.             case 2:
  3603.             {
  3604.                 ShowPlayerDialog(playerid,2586,DIALOG_STYLE_MSGBOX,"Brasil Games Living || The Return","* Você está prestes a se tornar uma Profissional do sexo, terá que cumprir 5 horas de contrato.\nPara se tornar uma Profissional do sexo, clique em aceitar.","Aceitar","Cancelar");
  3605.                 GettingEmprego[playerid] = 3;
  3606.                 TogglePlayerControllable(playerid, 1);
  3607.             }
  3608.             case 3:
  3609.             {
  3610.                 ShowPlayerDialog(playerid,2586,DIALOG_STYLE_MSGBOX,"Brasil Games Living || The Return","* Você está prestes a se tornar um Vendedor De Drogas, terá que cumprir 5 horas de contrato.\nPara aceitar o emprego, clique em aceitar.","Aceitar","Cancelar");
  3611.                 GettingEmprego[playerid] = 4;
  3612.                 TogglePlayerControllable(playerid, 1);
  3613.             }
  3614.             case 4:
  3615.             {
  3616.                 ShowPlayerDialog(playerid,2586,DIALOG_STYLE_MSGBOX,"Brasil Games Living || The Return","*Você está prestes a se tornar um Mecânico, terá que cumprir 5 horas de contrato.\nPara se tornar um Mecânico, clique em aceitar.","Aceitar","Cancelar");
  3617.                 GettingEmprego[playerid] = 5;
  3618.                 TogglePlayerControllable(playerid, 1);
  3619.             }
  3620.             case 5:
  3621.             {
  3622.                 ShowPlayerDialog(playerid,2586,DIALOG_STYLE_MSGBOX,"vBrasil Games Living || The Return","* Você está prestes a se tornar um Segurança, terá que cumprir 5 horas de contrato.\nPara se tornar um Segurança, clique em aceitar.","Aceitar","Cancelar");
  3623.                 GettingEmprego[playerid] = 6;
  3624.                 TogglePlayerControllable(playerid, 1);
  3625.             }
  3626.             case 6:
  3627.             {
  3628.                 ShowPlayerDialog(playerid,2586,DIALOG_STYLE_MSGBOX,"Brasil Games Living || The Return","* Você está prestes a se tornar um Vendedor De Armas, terá que cumprir 5 horas de contrato.\nPara se tornar um Vendedor De Armas, clique em aceitar.","Aceitar","Cancelar");
  3629.                 GettingEmprego[playerid] = 7;
  3630.                 TogglePlayerControllable(playerid, 1);
  3631.             }
  3632.             case 7:
  3633.             {
  3634.                 ShowPlayerDialog(playerid,2586,DIALOG_STYLE_MSGBOX,"Brasil Games Living || The Return","* Você está prestes a se tornar um Boxeador, terá que cumprir 5 horas de contrato.\nPara se tornar um Boxeador, clique em aceitar.","Aceitar","Cancelar");
  3635.                 GettingEmprego[playerid] = 8;
  3636.                 TogglePlayerControllable(playerid, 1);
  3637.             }
  3638.             case 8:
  3639.             {
  3640.                 ShowPlayerDialog(playerid,2586,DIALOG_STYLE_MSGBOX,"Brasil Games Living || The Return","* Você está prestes a se tornar um Motorista de Onibus, terá que cumprir 5 horas de contrato.\nPara se tornar um Motorista de Onibus, clique em aceitar.","Aceitar","Cancelar");
  3641.                 GettingEmprego[playerid] = 9;
  3642.                 TogglePlayerControllable(playerid, 1);
  3643.             }
  3644.             case 9:
  3645.             {
  3646.                 ShowPlayerDialog(playerid,2586,DIALOG_STYLE_MSGBOX,"Brasil Games Living || The Return","* Você está prestes a se tornar um Mendigo, terá que cumprir 5 horas de contrato.\nPara se tornar um Mendigo, clique em aceitar.","Aceitar","Cancelar");
  3647.                 GettingEmprego[playerid] = 10;
  3648.                 TogglePlayerControllable(playerid, 1);
  3649.             }
  3650.             case 10:
  3651.             {
  3652.                 ShowPlayerDialog(playerid,2586,DIALOG_STYLE_MSGBOX,"Brasil Games Living || The Return","* Você está prestes a se tornar um Caminhoneiro, terá que cumprir 5 horas de contrato.\nPara se tornar um Caminhoneiro, clique em aceitar.","Aceitar","Cancelar");
  3653.                 GettingEmprego[playerid] = 11;
  3654.                 TogglePlayerControllable(playerid, 1);
  3655.             }
  3656.          }
  3657.     }
  3658.     if(dialogid == 2586)
  3659.     {
  3660.         if(!response)
  3661.         {
  3662.             GettingEmprego[playerid] = 0;
  3663.             return SendClientMessage(playerid, COLOR_GREY, "Você cancelou o emprego.");
  3664.         }
  3665.         else
  3666.         {
  3667.             PlayerInfo[playerid][pEmprego] = GettingEmprego[playerid];
  3668.             SendClientMessage(playerid, COLOR_LIGHTBLUE, "* Parabens com seu novo emprego, digite /ajuda para ver seus novos comandos!");
  3669.         }
  3670.     }
  3671.     if(dialogid == 2570)
  3672.     {
  3673.         TogglePlayerControllable(playerid, 1);
  3674.         EmDialog[playerid] = 0;
  3675.         if(response == 0) { return ShowPlayerDialog(playerid,2568,DIALOG_STYLE_LIST,"GPS","Locais em Geral\nHead Quarters\nTerritorios\nDesligar GPS","Aceitar","Cancelar"); }
  3676.         switch(listitem)
  3677.         {
  3678.             case 0:
  3679.             {
  3680.                 SetPlayerCheckpoint(playerid, 2155.7847,-1010.8846,62.9648,8.0);//Favela
  3681.             }
  3682.             case 1:
  3683.             {
  3684.                 SetPlayerCheckpoint(playerid, 1919.1139,-1411.3921,13.5703,8.0);//Pista de Skate
  3685.             }
  3686.             case 2:
  3687.             {
  3688.                 SetPlayerCheckpoint(playerid, 1741.1454,-1945.1676,13.5640,8.0);//Estacao Unity
  3689.             }
  3690.             case 3:
  3691.             {
  3692.                 SetPlayerCheckpoint(playerid, 1242.5569,-2036.5902,60.0824,8.0);//Casarao
  3693.             }
  3694.         }
  3695.     }
  3696.     if(dialogid == 2571)
  3697.     {
  3698.         TogglePlayerControllable(playerid, 1);
  3699.         EmDialog[playerid] = 0;
  3700.         if(response == 0) { return 1; }
  3701.         switch(listitem)
  3702.         {
  3703.             case 0:
  3704.             {
  3705.                 //Motorista
  3706.                 if(GetPlayerMoneyEx(playerid) < 2000) return SendClientMessage(playerid,COLOR_GREY,"Você não tem R$2000 para comprar!");
  3707.                 TogglePlayerControllable(playerid, 1);
  3708.                 GivePlayerMoneyEx(playerid,-2000);
  3709.                 BizzInfo[5][bTill] += 2000;
  3710.                 ExtortionBiz(5, 2000);
  3711.                 PlayerInfo[playerid][pCarLic] = 1;
  3712.                 SendClientMessage(playerid, COLOR_LIGHTBLUE,"Comprou a Licença De Motorista!");
  3713.             }
  3714.             case 1:
  3715.             {
  3716.                 //Voo
  3717.                 if(GetPlayerMoneyEx(playerid) < 2500) return SendClientMessage(playerid,COLOR_GREY,"Você não tem R$2500 para comprar");
  3718.                 TogglePlayerControllable(playerid, 1);
  3719.                 GivePlayerMoneyEx(playerid,-2500);
  3720.                 BizzInfo[5][bTill] += 2500;
  3721.                 ExtortionBiz(5, 2500);
  3722.                 PlayerInfo[playerid][pFlyLic] = 1;
  3723.                 SendClientMessage(playerid, COLOR_LIGHTBLUE,"Comprou a Licença De Voo!");
  3724.             }
  3725.             case 2:
  3726.             {
  3727.                 //Navegacao
  3728.                 if(GetPlayerMoneyEx(playerid) < 2000) return SendClientMessage(playerid,COLOR_GREY,"Você não R$2000 para comprar!");
  3729.                 TogglePlayerControllable(playerid, 1);
  3730.                 GivePlayerMoneyEx(playerid,-2000);
  3731.                 BizzInfo[5][bTill] += 2000;
  3732.                 ExtortionBiz(5, 2000);
  3733.                 PlayerInfo[playerid][pBoatLic] = 1;
  3734.                 SendClientMessage(playerid, COLOR_LIGHTBLUE,"Comprou a Licença De Navegação!");
  3735.             }
  3736.             case 3:
  3737.             {
  3738.                 //Pesca
  3739.                 if(GetPlayerMoneyEx(playerid) < 1000) return SendClientMessage(playerid,COLOR_GREY,"Você não tem R$1000 para comprar!");
  3740.                 TogglePlayerControllable(playerid, 1);
  3741.                 GivePlayerMoneyEx(playerid,-1000);
  3742.                 BizzInfo[5][bTill] += 1000;
  3743.                 ExtortionBiz(5, 1000);
  3744.                 PlayerInfo[playerid][pFishLic] = 1;
  3745.                 SendClientMessage(playerid, COLOR_LIGHTBLUE,"Comprou a Licença De Pesca!");
  3746.             }
  3747.             case 4:
  3748.             {
  3749.                 //Armas
  3750.                 if(GetPlayerMoneyEx(playerid) < 2500) return SendClientMessage(playerid,COLOR_GREY,"Você não tem R$2500 para comprar!");
  3751.                 TogglePlayerControllable(playerid, 1);
  3752.                 GivePlayerMoneyEx(playerid,-2500);
  3753.                 BizzInfo[5][bTill] += 2500;
  3754.                 ExtortionBiz(5, 2500);
  3755.                 PlayerInfo[playerid][pGunLic] = 1;
  3756.                 SendClientMessage(playerid, COLOR_LIGHTBLUE,"Comprou a Licença De Armas!");
  3757.             }
  3758.         }
  3759.     }
  3760.     if(dialogid == 2572)
  3761.     {
  3762.         TogglePlayerControllable(playerid, 1);
  3763.         if(!response) { return 1; }
  3764.         switch(listitem)
  3765.         {
  3766.             case 0:
  3767.             {
  3768.                 ShowPlayerDialog(playerid,2573,DIALOG_STYLE_INPUT,"Pegar Maconha","Digite a quantia de maconha em gramas","Pegar","Voltar");
  3769.             }
  3770.             case 1:
  3771.             {
  3772.                 ShowPlayerDialog(playerid,2574,DIALOG_STYLE_INPUT,"Pegar Cocaina","Digite a quantia de cocaina em gramas","Pegar","Voltar");
  3773.             }
  3774.             case 2:
  3775.             {
  3776.                 ShowPlayerDialog(playerid,2575,DIALOG_STYLE_INPUT,"Pegar Crack","Digite a quantia de crack em gramas","Pegar","Voltar");
  3777.             }
  3778.             case 3:
  3779.             {
  3780.                 ShowPlayerDialog(playerid,2576,DIALOG_STYLE_INPUT,"Esconder Maconha","Digite a quantia de maconha em gramas","Pegar","Voltar");
  3781.             }
  3782.             case 4:
  3783.             {
  3784.                 ShowPlayerDialog(playerid,2577,DIALOG_STYLE_INPUT,"Esconder Cocaina","Digite a quantia de cocaina em gramas","Pegar","Voltar");
  3785.             }
  3786.             case 5:
  3787.             {
  3788.                 ShowPlayerDialog(playerid,2578,DIALOG_STYLE_INPUT,"Esconder Crack","Digite a quantia de crack em gramas","Pegar","Voltar");
  3789.             }
  3790.             case 6:
  3791.             {
  3792.                 ShowPlayerDialog(playerid,2579,DIALOG_STYLE_INPUT,"Pegar Safe Maconha","Digite a quantia de safe maconha em gramas","Pegar","Voltar");
  3793.             }
  3794.             case 7:
  3795.             {
  3796.                 ShowPlayerDialog(playerid,2580,DIALOG_STYLE_INPUT,"Pegar Safe Cocaina","Digite a quantia de safe cocaina em gramas","Pegar","Voltar");
  3797.             }
  3798.             case 8:
  3799.             {
  3800.                 ShowPlayerDialog(playerid,2581,DIALOG_STYLE_INPUT,"Pegar Safe Crack","Digite a quantia de safe crack em gramas","Pegar","Voltar");
  3801.             }
  3802.         }
  3803.     }
  3804.     if(dialogid == 2573)
  3805.     {
  3806.         if(!response) { return ShowPlayerDialog(playerid, 2572, DIALOG_STYLE_LIST, "Pegar Drogas", "Pegar Maconha\nPegar Cocaina\nPegar Crack\nEsconder Maconha\nEsconder Cocaina\nEsconder Crack\nPegar Safe Maconha\nPegar Safe Cocaina\nPegar Safe Crack", "Confirma", "Cancela"); }
  3807.         else if(!IsNumero(inputtext))
  3808.         {
  3809.             ShowPlayerDialog(playerid,2573,DIALOG_STYLE_INPUT,"Pegar Maconha","Digite a quantia de maconha em gramas","Pegar","Voltar");
  3810.             SendClientMessage(playerid,COLOR_GREY,"Porfavor,use números !");
  3811.             return 1;
  3812.         }
  3813.         new price, tel;
  3814.         new level = PlayerInfo[playerid][pDrogasSkill];
  3815.         if(level >= 0 && level <= 50)
  3816.         { tel = 30; if(strval(inputtext) < 1 || strval(inputtext) > 100) { SendClientMessage(playerid, COLOR_GREY, "   Você não pode ir abaixo de 1 ou superior 100 graças ao lvl de sua Habilidade!"); return 1; } }
  3817.         else if(level >= 51 && level <= 100)
  3818.         { tel = 30; if(strval(inputtext) < 1 || strval(inputtext) > 200) { SendClientMessage(playerid, COLOR_GREY, "   Você não pode ir abaixo de 1 ou superior 200 graças ao lvl de sua Habilidade!"); return 1; } }
  3819.         else if(level >= 101 && level <= 200)
  3820.         { tel = 30; if(strval(inputtext) < 1 || strval(inputtext) > 350) { SendClientMessage(playerid, COLOR_GREY, "   Você não pode ir abaixo de 1 ou superior 350 graças ao lvl de sua Habilidade!"); return 1; } }
  3821.         else if(level >= 201 && level <= 400)
  3822.         { tel = 30; if(strval(inputtext) < 1 || strval(inputtext) > 500) { SendClientMessage(playerid, COLOR_GREY, "   Você não pode ir abaixo de 1 ou superior 500 graças ao lvl de sua Habilidade!"); return 1; } }
  3823.         else if(level >= 401)
  3824.         { tel = 30; if(strval(inputtext) < 1 || strval(inputtext) > 999) { SendClientMessage(playerid, COLOR_GREY, "   Você não pode ir abaixo de 1 ou superior 999 graças ao lvl de sua Habilidade!"); return 1; } }
  3825.         if(PlayerInfo[playerid][pDrogas] > 4)
  3826.         {
  3827.             format(gstring, sizeof(gstring), "  Você ainda tem %d gramas de maconha, Venda tudo primeiro !", PlayerInfo[playerid][pDrogas]);
  3828.             SendClientMessage(playerid, COLOR_GREY, gstring);
  3829.             return 1;
  3830.         }
  3831.         price = strval(inputtext) * tel;
  3832.         if(GetPlayerMoney(playerid) > strval(inputtext))
  3833.         {
  3834.             format(gstring, sizeof(gstring), "* Você comprou %d gramas por $%d.", strval(inputtext), price);
  3835.             SendClientMessage(playerid, COLOR_LIGHTBLUE, gstring);
  3836.             GivePlayerMoney(playerid, -price);
  3837.             SBizzInfo[17][sbTill] += price;
  3838.             ExtortionSBiz(17, price);
  3839.             PlayerInfo[playerid][pDrogas] = strval(inputtext)+PlayerInfo[playerid][pDrogas];
  3840.         }
  3841.         else
  3842.         {
  3843.             SendClientMessage(playerid, COLOR_GREY, "   Você não tem dinheiro para isso !");
  3844.         }
  3845.     }
  3846.     if(dialogid == 2574)
  3847.     {
  3848.         if(!response) { return ShowPlayerDialog(playerid, 2572, DIALOG_STYLE_LIST, "Pegar Drogas", "Pegar Maconha\nPegar Cocaina\nPegar Crack\nEsconder Maconha\nEsconder Cocaina\nEsconder Crack\nPegar Safe Maconha\nPegar Safe Cocaina\nPegar Safe Crack", "Confirma", "Cancela"); }
  3849.         else if(!IsNumero(inputtext))
  3850.         {
  3851.             ShowPlayerDialog(playerid,2574,DIALOG_STYLE_INPUT,"Pegar Cocaina","Digite a quantia de cocaina em gramas","Pegar","Voltar");
  3852.             SendClientMessage(playerid,COLOR_GREY,"Porfavor,use números !");
  3853.             return 1;
  3854.         }
  3855.         new price, tel;
  3856.         new level = PlayerInfo[playerid][pDrogasSkill];
  3857.         if(level >= 0 && level <= 50)
  3858.         { tel = 30; if(strval(inputtext) < 1 || strval(inputtext) > 100) { SendClientMessage(playerid, COLOR_GREY, "   Você não pode pegar abaixo de 1 ou superior 100 graças ao lvl de sua Habilidade!"); return 1; } }
  3859.         else if(level >= 51 && level <= 100)
  3860.         { tel = 30; if(strval(inputtext) < 1 || strval(inputtext) > 200) { SendClientMessage(playerid, COLOR_GREY, "   Você não pode pegar abaixo de 1 ou superior 200 graças ao lvl de sua Habilidade!"); return 1; } }
  3861.         else if(level >= 101 && level <= 200)
  3862.         { tel = 30; if(strval(inputtext) < 1 || strval(inputtext) > 350) { SendClientMessage(playerid, COLOR_GREY, "   Você não pode pegar abaixo de 1 ou superior 350 graças ao lvl de sua Habilidade!"); return 1; } }
  3863.         else if(level >= 201 && level <= 400)
  3864.         { tel = 30; if(strval(inputtext) < 1 || strval(inputtext) > 500) { SendClientMessage(playerid, COLOR_GREY, "   Você não pode pegar abaixo de 1 ou superior 500 graças ao lvl de sua Habilidade!"); return 1; } }
  3865.         else if(level >= 401)
  3866.         { tel = 30; if(strval(inputtext) < 1 || strval(inputtext) > 999) { SendClientMessage(playerid, COLOR_GREY, "   Você não pode pegar abaixo de 1 ou superior 999 graças ao lvl de sua Habilidade!"); return 1; } }
  3867.         if(PlayerInfo[playerid][pDrogas2] > 4)
  3868.         {
  3869.             format(gstring, sizeof(gstring), "  Você ainda tem %d gramas de cocaina, Venda tudo primeiro !", PlayerInfo[playerid][pDrogas2]);
  3870.             SendClientMessage(playerid, COLOR_GREY, gstring);
  3871.             return 1;
  3872.         }
  3873.         price = strval(inputtext) * tel;
  3874.         if(GetPlayerMoney(playerid) > strval(inputtext))
  3875.         {
  3876.             format(gstring, sizeof(gstring), "* Você comprou %d gramas por $%d.", strval(inputtext), price);
  3877.             SendClientMessage(playerid, COLOR_LIGHTBLUE, gstring);
  3878.             GivePlayerMoney(playerid, -price);
  3879.             SBizzInfo[14][sbTill] += price;
  3880.             ExtortionSBiz(14, price);
  3881.             PlayerInfo[playerid][pDrogas2] = strval(inputtext)+PlayerInfo[playerid][pDrogas2];
  3882.         }
  3883.         else
  3884.         {
  3885.             SendClientMessage(playerid, COLOR_GREY, "   Você não tem dinheiro para isso !");
  3886.         }
  3887.     }
  3888.     if(dialogid == 2575)
  3889.     {
  3890.         if(!response) { return ShowPlayerDialog(playerid, 2572, DIALOG_STYLE_LIST, "Pegar Drogas", "Pegar Maconha\nPegar Cocaina\nPegar Crack\nEsconder Maconha\nEsconder Cocaina\nEsconder Crack\nPegar Safe Maconha\nPegar Safe Cocaina\nPegar Safe Crack", "Confirma", "Cancela"); }
  3891.         else if(!IsNumero(inputtext))
  3892.         {
  3893.             ShowPlayerDialog(playerid,2575,DIALOG_STYLE_INPUT,"Pegar Crack","Digite a quantia de crack em gramas","Pegar","Voltar");
  3894.             SendClientMessage(playerid,COLOR_GREY,"Porfavor,use números !");
  3895.             return 1;
  3896.         }
  3897.         new price, tel;
  3898.         new level = PlayerInfo[playerid][pDrogasSkill];
  3899.         if(level >= 0 && level <= 50)
  3900.         { tel = 30; if(strval(inputtext) < 1 || strval(inputtext) > 100) { SendClientMessage(playerid, COLOR_GREY, "   Você não pode ir abaixo de 1 ou superior 100 graças ao lvl de sua Habilidade!"); return 1; } }
  3901.         else if(level >= 51 && level <= 100)
  3902.         { tel = 30; if(strval(inputtext) < 1 || strval(inputtext) > 200) { SendClientMessage(playerid, COLOR_GREY, "   Você não pode ir abaixo de 1 ou superior 200 graças ao lvl de sua Habilidade!"); return 1; } }
  3903.         else if(level >= 101 && level <= 200)
  3904.         { tel = 30; if(strval(inputtext) < 1 || strval(inputtext) > 350) { SendClientMessage(playerid, COLOR_GREY, "   Você não pode ir abaixo de 1 ou superior 350 graças ao lvl de sua Habilidade!"); return 1; } }
  3905.         else if(level >= 201 && level <= 400)
  3906.         { tel = 30; if(strval(inputtext) < 1 || strval(inputtext) > 500) { SendClientMessage(playerid, COLOR_GREY, "   Você não pode ir abaixo de 1 ou superior 500 graças ao lvl de sua Habilidade!"); return 1; } }
  3907.         else if(level >= 401)
  3908.         { tel = 30; if(strval(inputtext) < 1 || strval(inputtext) > 999) { SendClientMessage(playerid, COLOR_GREY, "   Você não pode ir abaixo de 1 ou superior 999 graças ao lvl de sua Habilidade!"); return 1; } }
  3909.         if(PlayerInfo[playerid][pDrogas3] > 4)
  3910.         {
  3911.             format(gstring, sizeof(gstring), "  Você ainda tem %d gramas de crack, Venda tudo primeiro !", PlayerInfo[playerid][pDrogas3]);
  3912.             SendClientMessage(playerid, COLOR_GREY, gstring);
  3913.             return 1;
  3914.         }
  3915.         price = strval(inputtext) * tel;
  3916.         if(GetPlayerMoney(playerid) > strval(inputtext))
  3917.         {
  3918.             format(gstring, sizeof(gstring), "* Você comprou %d gramas por $%d.", strval(inputtext), price);
  3919.             SendClientMessage(playerid, COLOR_LIGHTBLUE, gstring);
  3920.             GivePlayerMoney(playerid, -price);
  3921.             SBizzInfo[15][sbTill] += price;
  3922.             ExtortionSBiz(15, price);
  3923.             PlayerInfo[playerid][pDrogas3] = strval(inputtext)+PlayerInfo[playerid][pDrogas3];
  3924.         }
  3925.         else
  3926.         {
  3927.             SendClientMessage(playerid, COLOR_GREY, "   Você não tem dinheiro para isso !");
  3928.         }
  3929.     }
  3930.     if(dialogid == 2576)
  3931.     {
  3932.         if(!response) { return ShowPlayerDialog(playerid, 2572, DIALOG_STYLE_LIST, "Pegar Drogas", "Pegar Maconha\nPegar Cocaina\nPegar Crack\nEsconder Maconha\nEsconder Cocaina\nEsconder Crack\nPegar Safe Maconha\nPegar Safe Cocaina\nPegar Safe Crack", "Confirma", "Cancela"); }
  3933.         else if(!IsNumero(inputtext))
  3934.         {
  3935.             ShowPlayerDialog(playerid,2576,DIALOG_STYLE_INPUT,"Esconder Maconha","Digite a quantia de crack em gramas","Esconder","Voltar");
  3936.             SendClientMessage(playerid,COLOR_GREY,"Porfavor,use números !");
  3937.             return 1;
  3938.         }
  3939.         new ammount = strval(inputtext);
  3940.         if(ammount < 1 || ammount > 10000)
  3941.         {
  3942.             SendClientMessage(playerid, COLOR_GRAD2, "não pode esconder menos de 1 e nem mais de 10000");
  3943.             return 1;
  3944.         }
  3945.         if(PlayerInfo[playerid][pDrogas] >= ammount)
  3946.         {
  3947.             PlayerInfo[playerid][pDrogas] = PlayerInfo[playerid][pDrogas]-ammount;
  3948.             PlayerInfo[playerid][pSafeDrogas] = PlayerInfo[playerid][pSafeDrogas]+ammount;
  3949.             format(gstring, sizeof(gstring), "* Você escondeu %d gramas!",ammount);
  3950.             SendClientMessage(playerid, COLOR_LIGHTBLUE, gstring);
  3951.             return 1;
  3952.         }
  3953.         else
  3954.         {
  3955.             SendClientMessage(playerid, COLOR_GREY, "Você não tem tudo isso!");
  3956.             return 1;
  3957.         }
  3958.     }
  3959.     if(dialogid == 2577)
  3960.     {
  3961.         if(!response) { return ShowPlayerDialog(playerid, 2572, DIALOG_STYLE_LIST, "Pegar Drogas", "Pegar Maconha\nPegar Cocaina\nPegar Crack\nEsconder Maconha\nEsconder Cocaina\nEsconder Crack\nPegar Safe Maconha\nPegar Safe Cocaina\nPegar Safe Crack", "Confirma", "Cancela"); }
  3962.         else if(!IsNumero(inputtext))
  3963.         {
  3964.             ShowPlayerDialog(playerid,2577,DIALOG_STYLE_INPUT,"Esconder Cocaina","Digite a quantia de cocaina em gramas","Esconder","Voltar");
  3965.             SendClientMessage(playerid,COLOR_GREY,"Porfavor,use números !");
  3966.             return 1;
  3967.         }
  3968.         new ammount = strval(inputtext);
  3969.         if(ammount < 1 || ammount > 10000)
  3970.         {
  3971.             SendClientMessage(playerid, COLOR_GRAD2, "não pode esconder menos de 1 e nem mais de 10000");
  3972.             return 1;
  3973.         }
  3974.         if(PlayerInfo[playerid][pDrogas2] >= ammount)
  3975.         {
  3976.             PlayerInfo[playerid][pDrogas2] = PlayerInfo[playerid][pDrogas2]-ammount;
  3977.             PlayerInfo[playerid][pSafeDrogas2] = PlayerInfo[playerid][pSafeDrogas2]+ammount;
  3978.             format(gstring, sizeof(gstring), "* Você escondeu %d gramas!",ammount);
  3979.             SendClientMessage(playerid, COLOR_LIGHTBLUE, gstring);
  3980.             return 1;
  3981.         }
  3982.         else
  3983.         {
  3984.             SendClientMessage(playerid, COLOR_GREY, "Você não tem tudo isso!");
  3985.             return 1;
  3986.         }
  3987.     }
  3988.     if(dialogid == 2578)
  3989.     {
  3990.         if(!response) { return ShowPlayerDialog(playerid, 2572, DIALOG_STYLE_LIST, "Pegar Drogas", "Pegar Maconha\nPegar Cocaina\nPegar Crack\nEsconder Maconha\nEsconder Cocaina\nEsconder Crack\nPegar Safe Maconha\nPegar Safe Cocaina\nPegar Safe Crack", "Confirma", "Cancela"); }
  3991.         else if(!IsNumero(inputtext))
  3992.         {
  3993.             ShowPlayerDialog(playerid,2578,DIALOG_STYLE_INPUT,"Esconder Crack","Digite a quantia de crack em gramas","Esconder","Voltar");
  3994.             SendClientMessage(playerid,COLOR_GREY,"Porfavor,use números !");
  3995.             return 1;
  3996.         }
  3997.         new ammount = strval(inputtext);
  3998.         if(ammount < 1 || ammount > 10000)
  3999.         {
  4000.             SendClientMessage(playerid, COLOR_GRAD2, "não pode esconder menos de 1 e nem mais de 10000");
  4001.             return 1;
  4002.         }
  4003.         if(PlayerInfo[playerid][pDrogas3] >= ammount)
  4004.         {
  4005.             PlayerInfo[playerid][pDrogas3] = PlayerInfo[playerid][pDrogas3]-ammount;
  4006.             PlayerInfo[playerid][pSafeDrogas3] = PlayerInfo[playerid][pSafeDrogas3]+ammount;
  4007.             format(gstring, sizeof(gstring), "* Você escondeu %d gramas!",ammount);
  4008.             SendClientMessage(playerid, COLOR_LIGHTBLUE, gstring);
  4009.             return 1;
  4010.         }
  4011.         else
  4012.         {
  4013.             SendClientMessage(playerid, COLOR_GREY, "Você não tem tudo isso!");
  4014.             return 1;
  4015.         }
  4016.     }
  4017.     if(dialogid == 2579)
  4018.     {
  4019.         if(!response) { return ShowPlayerDialog(playerid, 2572, DIALOG_STYLE_LIST, "Pegar Drogas", "Pegar Maconha\nPegar Cocaina\nPegar Crack\nEsconder Maconha\nEsconder Cocaina\nEsconder Crack\nPegar Safe Maconha\nPegar Safe Cocaina\nPegar Safe Crack", "Confirma", "Cancela"); }
  4020.         else if(!IsNumero(inputtext))
  4021.         {
  4022.             ShowPlayerDialog(playerid,2579,DIALOG_STYLE_INPUT,"Pegar Safe Maconha","Digite a quantia de maconha em gramas","Pegar","Voltar");
  4023.             SendClientMessage(playerid,COLOR_GREY,"Porfavor,use números !");
  4024.             return 1;
  4025.         }
  4026.         new ammount = strval(inputtext);
  4027.         if(ammount < 1 || ammount > 10000)
  4028.         {
  4029.             SendClientMessage(playerid, COLOR_GRAD2, "não pode pegar menos de 1 e nem mais de 10000");
  4030.             return 1;
  4031.         }
  4032.         if(PlayerInfo[playerid][pSafeDrogas] >= ammount)
  4033.         {
  4034.             PlayerInfo[playerid][pDrogas] = PlayerInfo[playerid][pDrogas]+ammount;
  4035.             PlayerInfo[playerid][pSafeDrogas] = PlayerInfo[playerid][pSafeDrogas]-ammount;
  4036.             format(gstring, sizeof(gstring), "* Você pegou %d gramas de maconha no esconderijo!",ammount);
  4037.             SendClientMessage(playerid, COLOR_LIGHTBLUE, gstring);
  4038.             return 1;
  4039.         }
  4040.         else
  4041.         {
  4042.             SendClientMessage(playerid, COLOR_GRAD2, "Você não tem tudo isso!");
  4043.             return 1;
  4044.         }
  4045.     }
  4046.     if(dialogid == 2580)
  4047.     {
  4048.         if(!response) { return ShowPlayerDialog(playerid, 2572, DIALOG_STYLE_LIST, "Pegar Drogas", "Pegar Maconha\nPegar Cocaina\nPegar Crack\nEsconder Maconha\nEsconder Cocaina\nEsconder Crack\nPegar Safe Maconha\nPegar Safe Cocaina\nPegar Safe Crack", "Confirma", "Cancela"); }
  4049.         else if(!IsNumero(inputtext))
  4050.         {
  4051.             ShowPlayerDialog(playerid,2580,DIALOG_STYLE_INPUT,"Pegar Safe Cocaina","Digite a quantia de cocaina em gramas","Pegar","Voltar");
  4052.             SendClientMessage(playerid,COLOR_GREY,"Porfavor,use números !");
  4053.             return 1;
  4054.         }
  4055.         new ammount = strval(inputtext);
  4056.         if(ammount < 1 || ammount > 10000)
  4057.         {
  4058.             SendClientMessage(playerid, COLOR_GRAD2, "não pode pegar menos de 1 e nem mais de 10000");
  4059.             return 1;
  4060.         }
  4061.         if(PlayerInfo[playerid][pSafeDrogas2] >= ammount)
  4062.         {
  4063.             PlayerInfo[playerid][pDrogas2] = PlayerInfo[playerid][pDrogas2]+ammount;
  4064.             PlayerInfo[playerid][pSafeDrogas2] = PlayerInfo[playerid][pSafeDrogas2]-ammount;
  4065.             format(gstring, sizeof(gstring), "* Você pegou %d gramas de cocaína no esconderijo!",ammount);
  4066.             SendClientMessage(playerid, COLOR_LIGHTBLUE, gstring);
  4067.             return 1;
  4068.         }
  4069.         else
  4070.         {
  4071.             SendClientMessage(playerid, COLOR_GRAD2, "Você não tem tudo isso!");
  4072.             return 1;
  4073.         }
  4074.     }
  4075.     if(dialogid == 2581)
  4076.     {
  4077.         if(!response) { return ShowPlayerDialog(playerid, 2572, DIALOG_STYLE_LIST, "Pegar Drogas", "Pegar Maconha\nPegar Cocaina\nPegar Crack\nEsconder Maconha\nEsconder Cocaina\nEsconder Crack\nPegar Safe Maconha\nPegar Safe Cocaina\nPegar Safe Crack", "Confirma", "Cancela"); }
  4078.         else if(!IsNumero(inputtext))
  4079.         {
  4080.             ShowPlayerDialog(playerid,2581,DIALOG_STYLE_INPUT,"Pegar Safe Crack","Digite a quantia de crack em gramas","Pegar","Voltar");
  4081.             SendClientMessage(playerid,COLOR_GREY,"Porfavor,use números !");
  4082.             return 1;
  4083.         }
  4084.         new ammount = strval(inputtext);
  4085.         if(ammount < 1 || ammount > 10000)
  4086.         {
  4087.             SendClientMessage(playerid, COLOR_GRAD2, "não pode pegar menos de 1 e nem mais de 10000");
  4088.             return 1;
  4089.         }
  4090.         if(PlayerInfo[playerid][pSafeDrogas3] >= ammount)
  4091.         {
  4092.             PlayerInfo[playerid][pDrogas3] = PlayerInfo[playerid][pDrogas3]+ammount;
  4093.             PlayerInfo[playerid][pSafeDrogas3] = PlayerInfo[playerid][pSafeDrogas3]-ammount;
  4094.             format(gstring, sizeof(gstring), "* Você pegou %d gramas de crack no esconderijo!",ammount);
  4095.             SendClientMessage(playerid, COLOR_LIGHTBLUE, gstring);
  4096.             return 1;
  4097.         }
  4098.         else
  4099.         {
  4100.             SendClientMessage(playerid, COLOR_GRAD2, "Você não tem tudo isso!");
  4101.             return 1;
  4102.         }
  4103.     }
  4104.     if(dialogid == 2582)
  4105.     {
  4106.         if(!response) { return 1; }
  4107.         switch(listitem)
  4108.         {
  4109.             case 0:
  4110.             {
  4111.                 OnPlayerCommandText(playerid, "/equiparm");
  4112.             }
  4113.             case 1:
  4114.             {
  4115.                 ShowPlayerDialog(playerid,2583,DIALOG_STYLE_INPUT,"Pegar Safe Materiais","Digite a quantia de safe materiais que deseja pegar","Pegar","Voltar");
  4116.             }
  4117.             case 2:
  4118.             {
  4119.                 ShowPlayerDialog(playerid,2584,DIALOG_STYLE_INPUT,"Esconder Materiais","Digite a quantia de materiais para esconder","Esconder","Voltar");
  4120.             }
  4121.         }
  4122.     }
  4123.     if(dialogid == 2583)
  4124.     {
  4125.         if(!response) { return ShowPlayerDialog(playerid, 2582, DIALOG_STYLE_LIST, "Mafia Menu", "Equipar\nPegar Materiais\nEsconder Materiais", "Confirma", "Cancela"); }
  4126.         else if(!IsNumero(inputtext))
  4127.         {
  4128.             ShowPlayerDialog(playerid,2583,DIALOG_STYLE_INPUT,"Pegar Safe Materiais","Digite a quantia de safe materiais que deseja pegar","Pegar","Voltar");
  4129.             SendClientMessage(playerid,COLOR_GREY,"Porfavor,use números !");
  4130.             return 1;
  4131.         }
  4132.         new quantidade = strval(inputtext);
  4133.         if(quantidade < 1 || quantidade > 10000)
  4134.         {
  4135.             SendClientMessage(playerid, COLOR_GRAD2, "não pode pegar menos de 1 e nem mais de 10000");
  4136.             return 1;
  4137.         }
  4138.         if(PlayerInfo[playerid][psMats] >= quantidade)
  4139.         {
  4140.             PlayerInfo[playerid][pMats] = PlayerInfo[playerid][pMats]+quantidade;
  4141.             PlayerInfo[playerid][psMats] = PlayerInfo[playerid][psMats]-quantidade;
  4142.             format(gstring, sizeof(gstring), "* Você pegou %d materiais no esconderijo!",quantidade);
  4143.             SendClientMessage(playerid, COLOR_LIGHTBLUE, gstring);
  4144.             return 1;
  4145.         }
  4146.         else
  4147.         {
  4148.             SendClientMessage(playerid, COLOR_GREY, "Você não tem tudo isso!");
  4149.             return 1;
  4150.         }
  4151.     }
  4152.     if(dialogid == 2584)
  4153.     {
  4154.         if(!response) { return ShowPlayerDialog(playerid, 2582, DIALOG_STYLE_LIST, "Mafia Menu", "Equipar\nPegar Materiais\nEsconder Materiais", "Confirma", "Cancela"); }
  4155.         else if(!IsNumero(inputtext))
  4156.         {
  4157.             ShowPlayerDialog(playerid,2584,DIALOG_STYLE_INPUT,"Esconder Materiais","Digite a quantia de materiais para esconder","Esconder","Voltar");
  4158.             SendClientMessage(playerid,COLOR_GREY,"Porfavor,use números !");
  4159.             return 1;
  4160.         }
  4161.         new ammount = strval(inputtext);
  4162.         if(ammount < 1 || ammount > 10000)
  4163.         {
  4164.             SendClientMessage(playerid, COLOR_GRAD2, "não pode pegar menos de 1 e nem mais de 10000");
  4165.             return 1;
  4166.         }
  4167.         if(PlayerInfo[playerid][pMats] >= ammount)
  4168.         {
  4169.             PlayerInfo[playerid][pMats] = PlayerInfo[playerid][pMats]-ammount;
  4170.             PlayerInfo[playerid][psMats] = PlayerInfo[playerid][psMats]+ammount;
  4171.             format(gstring, sizeof(gstring), "* Você escondeu %d materiais!",ammount);
  4172.             SendClientMessage(playerid, COLOR_LIGHTBLUE, gstring);
  4173.             return 1;
  4174.         }
  4175.         else
  4176.         {
  4177.             SendClientMessage(playerid, COLOR_GREY, "Você não tem tudo isso!");
  4178.             return 1;
  4179.         }
  4180.     }
  4181.     if(dialogid == 2585)
  4182.     {
  4183.         if(!response) { return 1; }
  4184.         switch(listitem)
  4185.         {
  4186.             case 0:
  4187.             {
  4188.                 SetPlayerInterior(playerid, 0);
  4189.                 SetPlayerPos(playerid, 1524.4977,-1677.9469,6.2188);
  4190.             }
  4191.             case 1:
  4192.             {
  4193.                 SetPlayerInterior(playerid, 6);
  4194.                 SetPlayerPos(playerid, 246.2975,87.4735,1003.6406);
  4195.             }
  4196.             case 2:
  4197.             {
  4198.                 SetPlayerInterior(playerid, 0);
  4199.                 SetPlayerPos(playerid, 1565.1235,-1666.9944,28.3956);
  4200.             }
  4201.         }
  4202.     }
  4203.     if(dialogid == 2586)
  4204.     {
  4205.         if(!response) { return ShowPlayerDialog(playerid, 2586, DIALOG_STYLE_INPUT, "Pegar Materiais", "Digite a quantidade de materiais/nque deseja pegar", "Pegar", "Cancelar"); }
  4206.         else if(!IsNumero(inputtext))
  4207.         {
  4208.             ShowPlayerDialog(playerid, 2586, DIALOG_STYLE_INPUT, "Pegar Materiais", "Digite a quantidade de materiais/nque deseja pegar", "Pegar", "Cancelar");
  4209.             SendClientMessage(playerid,COLOR_GREY,"Porfavor, use números!");
  4210.             return 1;
  4211.         }
  4212.         new ammount = strval(inputtext);
  4213.         if(MatsHolding[playerid] >= 10)
  4214.         {
  4215.             SendClientMessage(playerid, COLOR_GREY, "   Você já tem pacotes !");
  4216.             return 1;
  4217.         }
  4218.         if(ammount < 1 || ammount > 10) { SendClientMessage(playerid, COLOR_GREY, "   Número de pacotes mínimo 1 máximo 10 !"); return 1; }
  4219.         new price = ammount * 100;
  4220.         if(GetPlayerMoney(playerid) > price)
  4221.         {
  4222.             format(gstring, sizeof(gstring), "* Você recebeu %d materiais por R$%d.", ammount, price);
  4223.             SendClientMessage(playerid, COLOR_LIGHTBLUE, gstring);
  4224.             GivePlayerMoney(playerid, - price);
  4225.             MatsHolding[playerid] = ammount;
  4226.         }
  4227.         else
  4228.         {
  4229.             format(gstring, sizeof(gstring), "   Você não tem R$%d !", price);
  4230.             SendClientMessage(playerid, COLOR_GREY, gstring);
  4231.         }
  4232.     }
  4233. //Sistema de Cofre ORG
  4234.     if(dialogid == 12)
  4235.     {
  4236.         if(!response) return 1;
  4237.         if(response >= 1)
  4238.         {
  4239.             new org = GetPlayerOrg(playerid);
  4240.             if(listitem == 0)
  4241.             {
  4242.                 format(string,sizeof(string),"O Saldo da Sua Organização é de R$%d\nO que você deseja fazer ?",CofreOrg[org][Dinheiro]);
  4243.                 ShowPlayerDialog(playerid, 13, DIALOG_STYLE_MSGBOX, "Cofre da Organização", string, "Sacar", "Depositar");
  4244.                 return 1;
  4245.             }
  4246.             if(listitem == 1)
  4247.             {
  4248.                 format(string,sizeof(string),"A Sua Organização tem %d de Materiais\nO que você deseja fazer ?",CofreOrg[org][Materiais]);
  4249.                 ShowPlayerDialog(playerid, 14, DIALOG_STYLE_MSGBOX, "Cofre da Organização", string, "Sacar", "Depositar");
  4250.                 return 1;
  4251.             }
  4252.             if(listitem == 2)
  4253.             {
  4254.                 format(string,sizeof(string),"A Sua Organização tem %d de Maconha\nO que você deseja fazer ?",CofreOrg[org][Maconha]);
  4255.                 ShowPlayerDialog(playerid, 15, DIALOG_STYLE_MSGBOX, "Cofre da Organização", string, "Sacar", "Depositar");
  4256.                 return 1;
  4257.             }
  4258.             if(listitem == 3)
  4259.             {
  4260.                 format(string,sizeof(string),"A Sua Organização tem %d de Cocaina\nO que você deseja fazer ?",CofreOrg[org][Cocaina]);
  4261.                 ShowPlayerDialog(playerid, 16, DIALOG_STYLE_MSGBOX, "Cofre da Organização", string, "Sacar", "Depositar");
  4262.                 return 1;
  4263.             }
  4264.             if(listitem == 4)
  4265.             {
  4266.                 format(string,sizeof(string),"A Sua Organização tem %d de Crack\nO que você deseja fazer ?",CofreOrg[org][Crack]);
  4267.                 ShowPlayerDialog(playerid, 17, DIALOG_STYLE_MSGBOX, "Cofre da Organização", string, "Sacar", "Depositar");
  4268.                 return 1;
  4269.             }
  4270.             if(listitem == 5)
  4271.             {
  4272.                 OnPlayerCommandText(playerid,"/equiparg");
  4273.                 return 1;
  4274.             }
  4275.         }
  4276.         return 1;
  4277.     }
  4278.     if(dialogid == 13)
  4279.     {
  4280.         new org = GetPlayerOrg(playerid);
  4281.         if(response == 0)
  4282.         {
  4283.             format(string,sizeof(string),"O Saldo da Sua Organização é de R$%d\nQuantos você deseja Depositar ?",CofreOrg[org][Dinheiro]);
  4284.             ShowPlayerDialog(playerid, 18, DIALOG_STYLE_INPUT, "Cofre da Organização", string, "Depositar", "Cancelar");
  4285.             return 1;
  4286.         }
  4287.         if(response >= 1)
  4288.         {
  4289.             format(string,sizeof(string),"O Saldo da Sua Organização é de R$%d\nQuantos você deseja Sacar ?",CofreOrg[org][Dinheiro]);
  4290.             ShowPlayerDialog(playerid, 19, DIALOG_STYLE_INPUT, "Cofre da Organização", string, "Sacar", "Cancelar");
  4291.             return 1;
  4292.         }
  4293.         return 1;
  4294.     }
  4295.     if(dialogid == 14)
  4296.     {
  4297.         new org = GetPlayerOrg(playerid);
  4298.         if(response == 0)
  4299.         {
  4300.             format(string,sizeof(string),"A Sua Organização tem %d de Materiais\nQuantos você deseja Depositar ?",CofreOrg[org][Materiais]);
  4301.             ShowPlayerDialog(playerid, 20, DIALOG_STYLE_INPUT, "Cofre da Organização", string, "Depositar", "Cancelar");
  4302.             return 1;
  4303.         }
  4304.         if(response >= 1)
  4305.         {
  4306.             format(string,sizeof(string),"A Sua Organização tem %d de Materiais\nQuantos você deseja Sacar ?",CofreOrg[org][Materiais]);
  4307.             ShowPlayerDialog(playerid, 21, DIALOG_STYLE_INPUT, "Cofre da Organização", string, "Sacar", "Cancelar");
  4308.             return 1;
  4309.         }
  4310.         return 1;
  4311.     }
  4312.     if(dialogid == 15)
  4313.     {
  4314.         new org = GetPlayerOrg(playerid);
  4315.         if(response == 0)
  4316.         {
  4317.             format(string,sizeof(string),"A Sua Organização tem %d de Maconha\nQuantos você deseja Depositar ?",CofreOrg[org][Maconha]);
  4318.             ShowPlayerDialog(playerid, 22, DIALOG_STYLE_INPUT, "Cofre da Organização", string, "Depositar", "Cancelar");
  4319.             return 1;
  4320.         }
  4321.         if(response >= 1)
  4322.         {
  4323.             format(string,sizeof(string),"A Sua Organização tem %d de Maconha\nQuantos você deseja Sacar ?",CofreOrg[org][Maconha]);
  4324.             ShowPlayerDialog(playerid, 23, DIALOG_STYLE_INPUT, "Cofre da Organização", string, "Sacar", "Cancelar");
  4325.             return 1;
  4326.         }
  4327.         return 1;
  4328.     }
  4329.     if(dialogid == 16)
  4330.     {
  4331.         new org = GetPlayerOrg(playerid);
  4332.         if(response == 0)
  4333.         {
  4334.             format(string,sizeof(string),"A Sua Organização tem %d de Cocaina\nQuantos você deseja Depositar ?",CofreOrg[org][Cocaina]);
  4335.             ShowPlayerDialog(playerid, 24, DIALOG_STYLE_INPUT, "Cofre da Organização", string, "Depositar", "Cancelar");
  4336.             return 1;
  4337.         }
  4338.         if(response >= 1)
  4339.         {
  4340.             format(string,sizeof(string),"A Sua Organização tem %d de Cocaina\nQuantos você deseja Sacar ?",CofreOrg[org][Cocaina]);
  4341.             ShowPlayerDialog(playerid, 25, DIALOG_STYLE_INPUT, "Cofre da Organização", string, "Sacar", "Cancelar");
  4342.             return 1;
  4343.         }
  4344.         return 1;
  4345.     }
  4346.     if(dialogid == 17)
  4347.     {
  4348.         new org = GetPlayerOrg(playerid);
  4349.         if(response == 0)
  4350.         {
  4351.             format(string,sizeof(string),"A Sua Organização tem %d de Crack\nQuantos você deseja Depositar ?",CofreOrg[org][Crack]);
  4352.             ShowPlayerDialog(playerid, 26, DIALOG_STYLE_INPUT, "Cofre da Organização", string, "Depositar", "Cancelar");
  4353.             return 1;
  4354.         }
  4355.         if(response >= 1)
  4356.         {
  4357.             format(string,sizeof(string),"A Sua Organização tem %d de Crack\nQuantos você deseja Sacar ?",CofreOrg[org][Crack]);
  4358.             ShowPlayerDialog(playerid, 27, DIALOG_STYLE_INPUT, "Cofre da Organização", string, "Sacar", "Cancelar");
  4359.             return 1;
  4360.         }
  4361.         return 1;
  4362.     }
  4363.     if(dialogid == 18)
  4364.     {
  4365.         if(response >= 1)
  4366.         {
  4367.             new org = GetPlayerOrg(playerid);
  4368.             new depgrana = strval(inputtext);
  4369.             if(GetPlayerMoneyEx(playerid) < depgrana)
  4370.             {
  4371.                 SendClientMessage(playerid,COLOR_GRAD1,"Você não tem tudo isso!");
  4372.                 return 1;
  4373.             }
  4374.             if(depgrana > 0)
  4375.             {
  4376.                 if(GetPlayerMoneyEx(playerid) >= depgrana)
  4377.                 {
  4378.                     GivePlayerMoneyEx(playerid, -depgrana);
  4379.                     DepositarGranaOrg(org,depgrana);
  4380.                     format(string,sizeof(string),"Você Depositou R$%d, o Novo Saldo é de R$%d",depgrana,CofreOrg[org][Dinheiro]);
  4381.                     SendClientMessage(playerid,COLOR_YELLOW,string);
  4382.                     return 1;
  4383.                 }
  4384.             }
  4385.             return 1;
  4386.         }
  4387.         return 1;
  4388.     }
  4389.     if(dialogid == 19)
  4390.     {
  4391.         if(response >= 1)
  4392.         {
  4393.             new org = GetPlayerOrg(playerid);
  4394.             new sacgrana = strval(inputtext);
  4395.             if(sacgrana > CofreOrg[org][Dinheiro])
  4396.             {
  4397.                 SendClientMessage(playerid,COLOR_GRAD1,"Sua Organização não tem tudo isso!");
  4398.                 return 1;
  4399.             }
  4400.             if(PlayerInfo[playerid][pCargo] < 5 && PlayerInfo[playerid][pLider] < 1)
  4401.             {
  4402.                 SendClientMessage(playerid,COLOR_GRAD1,"Somente Líder e Sub-Líder Podem Sacar Dinheiro");
  4403.                 return 1;
  4404.             }
  4405.             if(sacgrana > 0)
  4406.             {
  4407.                 if(sacgrana <= CofreOrg[org][Dinheiro])
  4408.                 {
  4409.                     GivePlayerMoneyEx(playerid, sacgrana);
  4410.                     SacarGranaOrg(org,sacgrana);
  4411.                     format(string,sizeof(string),"Você Sacou R$%d, o Novo Saldo é de R$%d",sacgrana,CofreOrg[org][Dinheiro]);
  4412.                     SendClientMessage(playerid,COLOR_GRAD1,string);
  4413.                     return 1;
  4414.                 }
  4415.             }
  4416.             return 1;
  4417.         }
  4418.         return 1;
  4419.     }
  4420.     if(dialogid == 20)
  4421.     {
  4422.         if(response >= 1)
  4423.         {
  4424.             new org = GetPlayerOrg(playerid);
  4425.             new depmat = strval(inputtext);
  4426.             new pMateriais = PlayerInfo[playerid][pMats];
  4427.             if(pMateriais < depmat)
  4428.             {
  4429.                 SendClientMessage(playerid,COLOR_GRAD1,"Você não tem tudo isso!");
  4430.                 return 1;
  4431.             }
  4432.             if(depmat > 0)
  4433.             {
  4434.                 if(pMateriais >= depmat)
  4435.                 {
  4436.                     PlayerInfo[playerid][pMats] = pMateriais-depmat;
  4437.                     DepositarMaterialOrg(org,depmat);
  4438.                     format(string,sizeof(string),"Você Depositou %d de Materiais, o Novo Saldo de Materiais é de %d",depmat,CofreOrg[org][Materiais]);
  4439.                     SendClientMessage(playerid,COLOR_GRAD1,string);
  4440.                     return 1;
  4441.                 }
  4442.             }
  4443.             return 1;
  4444.         }
  4445.         return 1;
  4446.     }
  4447.     if(dialogid == 21)
  4448.     {
  4449.         if(response >= 1)
  4450.         {
  4451.             new org = GetPlayerOrg(playerid);
  4452.             new sacmat = strval(inputtext);
  4453.             new pMateriais = PlayerInfo[playerid][pMats];
  4454.             if(sacmat > CofreOrg[org][Materiais])
  4455.             {
  4456.                 SendClientMessage(playerid,COLOR_GRAD1,"Sua Organização não tem tudo isso!");
  4457.                 return 1;
  4458.             }
  4459.             if(PlayerInfo[playerid][pCargo] < 5 && PlayerInfo[playerid][pLider] < 1)
  4460.             {
  4461.                 SendClientMessage(playerid,COLOR_GRAD1,"Somente Líder e Sub-Líder Podem Sacar Materiais");
  4462.                 return 1;
  4463.             }
  4464.             if(sacmat > 0)
  4465.             {
  4466.                 if(sacmat <= CofreOrg[org][Materiais])
  4467.                 {
  4468.                     PlayerInfo[playerid][pMats] = pMateriais+sacmat;
  4469.                     SacarMaterialOrg(org,sacmat);
  4470.                     format(string,sizeof(string),"Você Sacou %d Materiais, o Novo Saldo de Materiais é %d",sacmat,CofreOrg[org][Materiais]);
  4471.                     SendClientMessage(playerid,COLOR_GRAD1,string);
  4472.                     return 1;
  4473.                 }
  4474.             }
  4475.             return 1;
  4476.         }
  4477.         return 1;
  4478.     }
  4479.     if(dialogid == 22)
  4480.     {
  4481.         if(response >= 1)
  4482.         {
  4483.             new org = GetPlayerOrg(playerid);
  4484.             new depmac = strval(inputtext);
  4485.             new pMaconha = PlayerInfo[playerid][pDrogas];
  4486.             if(pMaconha < depmac)
  4487.             {
  4488.                 SendClientMessage(playerid,COLOR_GRAD1,"Você não tem tudo isso!");
  4489.                 return 1;
  4490.             }
  4491.             if(depmac > 0)
  4492.             {
  4493.                 if(pMaconha >= depmac)
  4494.                 {
  4495.                     PlayerInfo[playerid][pDrogas] = pMaconha-depmac;
  4496.                     DepositarMaconhaOrg(org,depmac);
  4497.                     format(string,sizeof(string),"Você Depositou %d de Maconha, o Novo Saldo de Maconha é de %d",depmac,CofreOrg[org][Maconha]);
  4498.                     SendClientMessage(playerid,COLOR_GRAD1,string);
  4499.                     return 1;
  4500.                 }
  4501.             }
  4502.             return 1;
  4503.         }
  4504.         return 1;
  4505.     }
  4506.     if(dialogid == 23)
  4507.     {
  4508.         if(response == 0)
  4509.         {
  4510.             return 1;
  4511.         }
  4512.         if(response >= 1)
  4513.         {
  4514.             new org = GetPlayerOrg(playerid);
  4515.             new sacmac = strval(inputtext);
  4516.             new pMaconha = PlayerInfo[playerid][pDrogas];
  4517.             if(sacmac > CofreOrg[org][Maconha])
  4518.             {
  4519.                 SendClientMessage(playerid,COLOR_GRAD1,"Sua Organização não tem tudo isso!");
  4520.                 return 1;
  4521.             }
  4522.             if(PlayerInfo[playerid][pCargo] < 5)
  4523.             {
  4524.                 SendClientMessage(playerid,COLOR_GRAD1,"Somente Lider e Sub-Lider Podem Sacar Maconha");
  4525.                 return 1;
  4526.             }
  4527.             if(sacmac > 0)
  4528.             {
  4529.                 if(sacmac <= CofreOrg[org][Maconha])
  4530.                 {
  4531.                     PlayerInfo[playerid][pDrogas] = pMaconha+sacmac;
  4532.                     SacarMaconhaOrg(org,sacmac);
  4533.                     format(string,sizeof(string),"Você Sacou %d de Maconha, o Novo Saldo de Maconha é de %d",sacmac,CofreOrg[org][Maconha]);
  4534.                     SendClientMessage(playerid,COLOR_GRAD1,string);
  4535.                     return 1;
  4536.                 }
  4537.             }
  4538.             return 1;
  4539.         }
  4540.         return 1;
  4541.     }
  4542.     if(dialogid == 24)
  4543.     {
  4544.         if(response >= 1)
  4545.         {
  4546.             new org = GetPlayerOrg(playerid);
  4547.             new depcoca = strval(inputtext);
  4548.             new pCocaina = PlayerInfo[playerid][pDrogas2];
  4549.             if(pCocaina < depcoca)
  4550.             {
  4551.                 SendClientMessage(playerid,COLOR_GRAD1,"Você não tem tudo isso!");
  4552.                 return 1;
  4553.             }
  4554.             if(depcoca > 0)
  4555.             {
  4556.                 if(pCocaina >= depcoca)
  4557.                 {
  4558.                     PlayerInfo[playerid][pDrogas2] = pCocaina-depcoca;
  4559.                     DepositarCocainaOrg(org,depcoca);
  4560.                     format(string,sizeof(string),"Você Depositou %d de Cocaina, o Novo Saldo de Cocaina é de %d",depcoca,CofreOrg[org][Cocaina]);
  4561.                     SendClientMessage(playerid,COLOR_GRAD1,string);
  4562.                     return 1;
  4563.                 }
  4564.             }
  4565.             return 1;
  4566.         }
  4567.         return 1;
  4568.     }
  4569.     if(dialogid == 25)
  4570.     {
  4571.         if(response >= 1)
  4572.         {
  4573.             new org = GetPlayerOrg(playerid);
  4574.             new saccoca = strval(inputtext);
  4575.             new pCocaina = PlayerInfo[playerid][pDrogas2];
  4576.             if(saccoca > CofreOrg[org][Cocaina])
  4577.             {
  4578.                 SendClientMessage(playerid,COLOR_GRAD1,"Sua Organização não tem tudo isso!");
  4579.                 return 1;
  4580.             }
  4581.             if(PlayerInfo[playerid][pCargo] < 5 && PlayerInfo[playerid][pLider] < 1)
  4582.             {
  4583.                 SendClientMessage(playerid,COLOR_GRAD1,"Somente Líder e Sub-Líder Podem Sacar Cocaína");
  4584.                 return 1;
  4585.             }
  4586.             if(saccoca > 0)
  4587.             {
  4588.                 if(saccoca <= CofreOrg[org][Cocaina])
  4589.                 {
  4590.                     PlayerInfo[playerid][pDrogas2] = pCocaina+saccoca;
  4591.                     SacarCocainaOrg(org,saccoca);
  4592.                     format(string,sizeof(string),"Você Sacou %d de Cocaína, o Novo Saldo de Cocaína é de %d",saccoca,CofreOrg[org][Cocaina]);
  4593.                     SendClientMessage(playerid,COLOR_GRAD1,string);
  4594.                     return 1;
  4595.                 }
  4596.             }
  4597.             return 1;
  4598.         }
  4599.         return 1;
  4600.     }
  4601.     if(dialogid == 26)
  4602.     {
  4603.         if(response >= 1)
  4604.         {
  4605.             new org = GetPlayerOrg(playerid);
  4606.             new depcrac = strval(inputtext);
  4607.             new pCrack = PlayerInfo[playerid][pDrogas3];
  4608.             if(pCrack < depcrac)
  4609.             {
  4610.                 SendClientMessage(playerid,COLOR_GRAD1,"Você não tem tudo isso!");
  4611.                 return 1;
  4612.             }
  4613.             if(depcrac > 0)
  4614.             {
  4615.                 if(pCrack >= depcrac)
  4616.                 {
  4617.                     PlayerInfo[playerid][pDrogas3] = pCrack-depcrac;
  4618.                     DepositarCrackOrg(org,depcrac);
  4619.                     format(string,sizeof(string),"Você Depositou %d de Crack, o Novo Saldo de Crack é de %d",depcrac,CofreOrg[org][Crack]);
  4620.                     SendClientMessage(playerid,COLOR_GRAD1,string);
  4621.                     return 1;
  4622.                 }
  4623.             }
  4624.             return 1;
  4625.         }
  4626.         return 1;
  4627.     }
  4628.     if(dialogid == 27)
  4629.     {
  4630.         if(response >= 1)
  4631.         {
  4632.             new org = GetPlayerOrg(playerid);
  4633.             new saccrac = strval(inputtext);
  4634.             new pCrack = PlayerInfo[playerid][pDrogas3];
  4635.             if(saccrac > CofreOrg[org][Crack])
  4636.             {
  4637.                 SendClientMessage(playerid,COLOR_GRAD1,"Sua Organização não tem tudo isso!");
  4638.                 return 1;
  4639.             }
  4640.             if(PlayerInfo[playerid][pCargo] < 5 && PlayerInfo[playerid][pLider] < 1)
  4641.             {
  4642.                 SendClientMessage(playerid,COLOR_GRAD1,"Somente Líder e Sub-Líder Podem Sacar Crack");
  4643.                 return 1;
  4644.             }
  4645.             if(saccrac > 0)
  4646.             {
  4647.                 if(saccrac <= CofreOrg[org][Crack])
  4648.                 {
  4649.                     PlayerInfo[playerid][pDrogas3] = pCrack+saccrac;
  4650.                     SacarCrackOrg(org,saccrac);
  4651.                     format(string,sizeof(string),"Você Sacou %d de Crack, o Novo Saldo de Crack é de %d",saccrac,CofreOrg[org][Crack]);
  4652.                     SendClientMessage(playerid,COLOR_GRAD1,string);
  4653.                     return 1;
  4654.                 }
  4655.             }
  4656.             return 1;
  4657.         }
  4658.         return 1;
  4659.     }
  4660.     if(dialogid == 28)
  4661.     {
  4662.         new Float:health;
  4663.         GetPlayerName(playerid, sendername, sizeof(sendername));
  4664.         GetPlayerHealth(playerid, health);
  4665.         if(!response) return 1;
  4666.         if (GetPlayerMoneyEx(playerid) <= 0)
  4667.         {
  4668.             GameTextForPlayer(playerid, "~r~Voce nao tem dinheiro", 5000, 1);
  4669.             return 1;
  4670.         }
  4671.         if(response)
  4672.         {
  4673.             if(listitem == 0)
  4674.             {
  4675.                 format(string, sizeof(string), "* %s come um espetinho de coração.", sendername);
  4676.                 GivePlayerMoneyEx(playerid, -2);
  4677.                 SetPlayerHealth(playerid, health + 20);
  4678.             }
  4679.             if(listitem == 1)
  4680.             {
  4681.                 format(string, sizeof(string), "* %s come um churrasco de carne de vaca.", sendername);
  4682.                 GivePlayerMoneyEx(playerid, -4);
  4683.                 SetPlayerHealth(playerid, health + 50);
  4684.             }
  4685.             if(listitem == 2)
  4686.             {
  4687.                 format(string, sizeof(string), "* %s come um churrasco de jacare.", sendername);
  4688.                 GivePlayerMoneyEx(playerid, -5);
  4689.                 SetPlayerHealth(playerid, health + 80);
  4690.             }
  4691.             if(listitem == 3)
  4692.             {
  4693.                 format(string, sizeof(string), "* %s come um churrasco de frango.", sendername);
  4694.                 GivePlayerMoneyEx(playerid, -3);
  4695.                 SetPlayerHealth(playerid, health + 35);
  4696.             }
  4697.             if(listitem == 4)
  4698.             {
  4699.                 format(string, sizeof(string), "* %s bebeu água.", sendername);
  4700.                 GivePlayerMoneyEx(playerid, -1);
  4701.                 SetPlayerHealth(playerid, health + 10);
  4702.                 ApplyAnimation(playerid,"VENDING","VEND_Drink_P",4.1,0,1,1,0,1);
  4703.             }
  4704.             if(listitem == 5)
  4705.             {
  4706.                 format(string, sizeof(string), "* %s bebeu suco.", sendername);
  4707.                 GivePlayerMoneyEx(playerid, -1);
  4708.                 SetPlayerHealth(playerid, health + 10);
  4709.                 ApplyAnimation(playerid,"VENDING","VEND_Drink_P",4.1,0,1,1,0,1);
  4710.             }
  4711.             ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
  4712.         }
  4713.         return 1;
  4714.     }
  4715.     if(dialogid == 29)
  4716.     {
  4717.         new Float:health;
  4718.         GetPlayerName(playerid, sendername, sizeof(sendername));
  4719.         GetPlayerHealth(playerid, health);
  4720.         if(!response) return 1;
  4721.         if (GetPlayerMoneyEx(playerid) <= 0)
  4722.         {
  4723.             GameTextForPlayer(playerid, "~r~Voce nao tem dinheiro", 5000, 1);
  4724.             return 1;
  4725.         }
  4726.         if(response)
  4727.         {
  4728.             if(listitem == 0)
  4729.             {
  4730.                 format(string, sizeof(string), "* %s come um X-SIMPLES.", sendername);
  4731.                 GivePlayerMoneyEx(playerid, -2);
  4732.                 SetPlayerHealth(playerid, health + 20);
  4733.             }
  4734.             if(listitem == 1)
  4735.             {
  4736.                 format(string, sizeof(string), "* %s come um X-TUDO.", sendername);
  4737.                 GivePlayerMoneyEx(playerid, -4);
  4738.                 SetPlayerHealth(playerid, health + 50);
  4739.             }
  4740.             if(listitem == 2)
  4741.             {
  4742.                 format(string, sizeof(string), "* %s come um X-ESPECIAL.", sendername);
  4743.                 GivePlayerMoneyEx(playerid, -5);
  4744.                 SetPlayerHealth(playerid, health + 80);
  4745.             }
  4746.             if(listitem == 3)
  4747.             {
  4748.                 format(string, sizeof(string), "* %s come um X-FRANGO.", sendername);
  4749.                 GivePlayerMoneyEx(playerid, -3);
  4750.                 SetPlayerHealth(playerid, health + 35);
  4751.             }
  4752.             if(listitem == 4)
  4753.             {
  4754.                 format(string, sizeof(string), "* %s bebeu água.", sendername);
  4755.                 GivePlayerMoneyEx(playerid, -1);
  4756.                 SetPlayerHealth(playerid, health + 10);
  4757.                 ApplyAnimation(playerid,"VENDING","VEND_Drink_P",4.1,0,1,1,0,1);
  4758.             }
  4759.             if(listitem == 5)
  4760.             {
  4761.                 format(string, sizeof(string), "* %s bebeu suco.", sendername);
  4762.                 GivePlayerMoneyEx(playerid, -1);
  4763.                 SetPlayerHealth(playerid, health + 10);
  4764.                 ApplyAnimation(playerid,"VENDING","VEND_Drink_P",4.1,0,1,1,0,1);
  4765.             }
  4766.             ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
  4767.         }
  4768.     }
  4769.     if(dialogid == 30)
  4770.     {
  4771.         new Float:health;
  4772.         GetPlayerName(playerid, sendername, sizeof(sendername));
  4773.         GetPlayerHealth(playerid, health);
  4774.         if(!response) return 1;
  4775.         if (GetPlayerMoneyEx(playerid) <= 0)
  4776.         {
  4777.             GameTextForPlayer(playerid, "~r~Voce nao tem dinheiro", 5000, 1);
  4778.             return 1;
  4779.         }
  4780.         if(response)
  4781.         {
  4782.             if(listitem == 0)
  4783.             {
  4784.                 format(string, sizeof(string), "* %s come uma pizza pequena de presunto e mussarela.", sendername);
  4785.                 GivePlayerMoneyEx(playerid, -2);
  4786.                 SetPlayerHealth(playerid, health + 20);
  4787.             }
  4788.             if(listitem == 1)
  4789.             {
  4790.                 format(string, sizeof(string), "* %s come uma pizza grande de presunto e mussarela.", sendername);
  4791.                 GivePlayerMoneyEx(playerid, -4);
  4792.                 SetPlayerHealth(playerid, health + 50);
  4793.             }
  4794.             if(listitem == 2)
  4795.             {
  4796.                 format(string, sizeof(string), "* %s come uma pizza extra grande.", sendername);
  4797.                 GivePlayerMoneyEx(playerid, -5);
  4798.                 SetPlayerHealth(playerid, health + 80);
  4799.             }
  4800.             if(listitem == 3)
  4801.             {
  4802.                 format(string, sizeof(string), "* %s come uma pizza de Bacon e Chocolate.", sendername);
  4803.                 GivePlayerMoneyEx(playerid, -3);
  4804.                 SetPlayerHealth(playerid, health + 35);
  4805.             }
  4806.             if(listitem == 4)
  4807.             {
  4808.                 format(string, sizeof(string), "* %s bebeu água.", sendername);
  4809.                 GivePlayerMoneyEx(playerid, -1);
  4810.                 SetPlayerHealth(playerid, health + 10);
  4811.                 ApplyAnimation(playerid,"VENDING","VEND_Drink_P",4.1,0,1,1,0,1);
  4812.             }
  4813.             if(listitem == 5)
  4814.             {
  4815.                 format(string, sizeof(string), "* %s bebeu suco.", sendername);
  4816.                 GivePlayerMoneyEx(playerid, -1);
  4817.                 SetPlayerHealth(playerid, health + 10);
  4818.                 ApplyAnimation(playerid,"VENDING","VEND_Drink_P",4.1,0,1,1,0,1);
  4819.             }
  4820.             ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
  4821.         }
  4822.     }
  4823.     if(dialogid == 31)
  4824.     {
  4825.         new Float:health;
  4826.         GetPlayerName(playerid, sendername, sizeof(sendername));
  4827.         GetPlayerHealth(playerid, health);
  4828.         if(!response) return 1;
  4829.         if (GetPlayerMoneyEx(playerid) <= 0)
  4830.         {
  4831.             GameTextForPlayer(playerid, "~r~Voce nao tem dinheiro", 5000, 1);
  4832.             return 1;
  4833.         }
  4834.         if(response)
  4835.         {
  4836.             if(listitem == 0)
  4837.             {
  4838.                 format(string, sizeof(string), "* %s come uma rosquinha pequena.", sendername);
  4839.                 GivePlayerMoneyEx(playerid, -2);
  4840.                 SetPlayerHealth(playerid, health + 20);
  4841.             }
  4842.             if(listitem == 1)
  4843.             {
  4844.                 format(string, sizeof(string), "* %s come uma rosquinha normal.", sendername);
  4845.                 GivePlayerMoneyEx(playerid, -4);
  4846.                 SetPlayerHealth(playerid, health + 50);
  4847.             }
  4848.             if(listitem == 2)
  4849.             {
  4850.                 format(string, sizeof(string), "* %s come uma rosquinha de chefe.", sendername);
  4851.                 GivePlayerMoneyEx(playerid, -5);
  4852.                 SetPlayerHealth(playerid, health + 80);
  4853.             }
  4854.             if(listitem == 3)
  4855.             {
  4856.                 format(string, sizeof(string), "* %s come uma super rosquinha.", sendername);
  4857.                 GivePlayerMoneyEx(playerid, -3);
  4858.                 SetPlayerHealth(playerid, health + 35);
  4859.             }
  4860.             if(listitem == 4)
  4861.             {
  4862.                 format(string, sizeof(string), "* %s bebeu água.", sendername);
  4863.                 GivePlayerMoneyEx(playerid, -1);
  4864.                 SetPlayerHealth(playerid, health + 10);
  4865.                 ApplyAnimation(playerid,"VENDING","VEND_Drink_P",4.1,0,1,1,0,1);
  4866.             }
  4867.             if(listitem == 5)
  4868.             {
  4869.                 format(string, sizeof(string), "* %s bebeu suco.", sendername);
  4870.                 GivePlayerMoneyEx(playerid, -1);
  4871.                 SetPlayerHealth(playerid, health + 10);
  4872.                 ApplyAnimation(playerid,"VENDING","VEND_Drink_P",4.1,0,1,1,0,1);
  4873.             }
  4874.             ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
  4875.         }
  4876.     }
  4877. //FIM Sistema de Cofre ORG
  4878.     return 1;
  4879. }
  4880.  
Advertisement
Add Comment
Please, Sign In to add comment