Novidades
Mostrando postagens com marcador rp. Mostrar todas as postagens
Mostrando postagens com marcador rp. Mostrar todas as postagens

1/30/2022

CharaDa_Fox

[VAZAMENTO] Gamemode Nacional Player 2022 Atualizada!

 Bom os scripters da NACIONAL PLAYER disponibilizaram a gamemode atualizada, porém estava faltando algumas pastas, então eu adicionei oque estava faltando, agora só ligar e jogar.


Se quiserem ver print, pesquisem pelo nome do servidor no youtube.
VirusTotal

Download Gamemode


- MAPAS EXCLUSIVOS
- VOIP LOCAL/RADIO/CELULAR
- SISTEMAS EXCLUSIVOS



9/13/2020

CharaDa_Fox

[FilterScript] Sistema de auto escola para samp mobile

 No topo do Game Mode


pawn Код:
#include <a_samp>
#include <cpstream>

#define DIALOG_AUTOESCOLA       0

new InAutoEscola[MAX_PLAYERS];
new carroauto[MAX_PLAYERS];
new CPAutoEscola;

new point[MAX_PLAYERS];
new Float:AutoPoints[8][3] = //Cordenadas dos Race Checkpoints
{
     {566.0122,-1240.4834,16.9812},
     {647.4115,-1202.2354,17.8508},
     {794.5209,-1061.8385,24.4309},
     {797.8555,-1255.2906,13.2295},
     {782.1776,-1318.7532,13.1247},
     {632.7460,-1290.5117,15.1381},
     {595.6362,-1228.1689,17.5915},
     {561.3011,-1279.6729,16.9883}
};

public OnGameModeInit()

pawn Код:
CPAutoEscola = CPS_AddCheckpoint(545.2621,-1284.9412,17.2482,2.0,80);

public OnPlayerDeath(playerid, killerid, reason)

pawn Код:
if(InAutoEscola[playerid] == 1)
    {
        new currentveh;
        currentveh = GetPlayerVehicleID(playerid);
        DestroyVehicle(currentveh);
        InAutoEscola[playerid] = 0;
        DisablePlayerRaceCheckpoint(playerid);
    }

public OnPlayerEnterCheckpoint(playerid)

pawn Код:
if(CPS_IsPlayerInCheckpoint(playerid,CPAutoEscola))
    {
        if(pDados[playerid][Carteira] == 0)
        {
            ShowPlayerDialog(playerid,DIALOG_AUTOESCOLA,DIALOG_STYLE_MSGBOX,"AUTO ESCOLA","Voce gostaria de comeзar os teste da Auto Escola?","Sim","Nao");
            return 1;
        }else return SendClientMessage(playerid,-1,"(AUTO ESCOLA) Voce ja possui Carteira.");
    }

public OnPlayerEnterRaceCheckpoint(playerid)

pawn Код:
switch(point[playerid])
     {
         case 1:
         {
              DisablePlayerRaceCheckpoint(playerid);
              SetPlayerRaceCheckpoint(playerid, 0, AutoPoints[1][0], AutoPoints[1][1], AutoPoints[1][2],AutoPoints[2][0], AutoPoints[2][1], AutoPoints[2][2], 10);
              point[playerid] = 2;
              return 1;
         }
         case 2:
         {
              DisablePlayerRaceCheckpoint(playerid);
              SetPlayerRaceCheckpoint(playerid, 0, AutoPoints[2][0], AutoPoints[2][1], AutoPoints[2][2],AutoPoints[3][0], AutoPoints[3][1], AutoPoints[3][2], 10);
              point[playerid] = 3;
              return 1;
         }
         case 3:
         {
              DisablePlayerRaceCheckpoint(playerid);
              SetPlayerRaceCheckpoint(playerid, 0, AutoPoints[3][0], AutoPoints[3][1], AutoPoints[3][2],AutoPoints[4][0], AutoPoints[4][1], AutoPoints[4][2], 10);
              point[playerid] = 4;
              return 1;
         }
         case 4:
         {
              DisablePlayerRaceCheckpoint(playerid);
              SetPlayerRaceCheckpoint(playerid, 0, AutoPoints[4][0], AutoPoints[4][1], AutoPoints[4][2],AutoPoints[5][0], AutoPoints[5][1], AutoPoints[5][2], 10);
              point[playerid] = 5;
              return 1;
         }
         case 5:
         {
              DisablePlayerRaceCheckpoint(playerid);
              SetPlayerRaceCheckpoint(playerid, 0, AutoPoints[5][0], AutoPoints[5][1], AutoPoints[5][2],AutoPoints[6][0], AutoPoints[6][1], AutoPoints[6][2], 10);
              point[playerid] = 6;
              return 1;
         }
         case 6:
         {
              DisablePlayerRaceCheckpoint(playerid);
              SetPlayerRaceCheckpoint(playerid, 0, AutoPoints[6][0], AutoPoints[6][1], AutoPoints[6][2],AutoPoints[7][0], AutoPoints[7][1], AutoPoints[7][2], 10);
              point[playerid] = 7;
              return 1;
         }
         case 7:
         {
              DisablePlayerRaceCheckpoint(playerid);
              SetPlayerRaceCheckpoint(playerid, 0, AutoPoints[7][0], AutoPoints[7][1], AutoPoints[7][2],AutoPoints[7][0], AutoPoints[7][1], AutoPoints[7][2], 10);
              point[playerid] = 8;
              return 1;
         }
         case 8:
         {
            if(IsPlayerInVehicle(playerid, carroauto[playerid]))
            {
              new Float:lataria;
              GetVehicleHealth(carroauto[playerid], lataria);
              if(lataria < 87)
              {
                DisablePlayerRaceCheckpoint(playerid);
                new currentveh;
                currentveh = GetPlayerVehicleID(playerid);
                DestroyVehicle(currentveh);
                SendClientMessage(playerid,-1,"(AUTO ESCOLA) Reprovado!! Voce danificou muito a lataria do veiculo.");
                return 1;
              }
              DisablePlayerRaceCheckpoint(playerid);
              GameTextForPlayer(playerid, "AUTO ESCOLA COMPLETA", 3000, 1);
              pDados[playerid][Carteira] = 1;
              InAutoEscola[playerid] = 0;
              new currentveh;
              currentveh = GetPlayerVehicleID(playerid);
              DestroyVehicle(currentveh);
              return 1;
            }
            else
            {
                DisablePlayerRaceCheckpoint(playerid);
                new currentveh;
                currentveh = GetPlayerVehicleID(playerid);
                DestroyVehicle(currentveh);
                SendClientMessage(playerid,-1,"(AUTO ESCOLA) Reprovado!! Voce nao estao em um veiculo da Auto Escola.");
                return 1;
            }
         }
     }

public OnPlayerDialogResponse

pawn Код:
if(dialogid == DIALOG_AUTOESCOLA)
    {
        if(response == 1)
        {
            InAutoEscola[playerid] = 1;
            new Float:X,Float:Y,Float:Z;
            GetPlayerPos(playerid,X,Y,Z);
            carroauto[playerid] = CreateVehicle(466, X,Y,Z,297.6633, 0, 0, -1);
            PutPlayerInVehicle(playerid, carroauto[playerid], 0);
            SendClientMessage(playerid,-1,"(AUTO ESCOLA) Voce iniciou a auto escola,siga as setas.");
            SetPlayerRaceCheckpoint(playerid, 0, AutoPoints[0][0], AutoPoints[0][1], AutoPoints[0][2],AutoPoints[1][0], AutoPoints[1][1], AutoPoints[1][2], 10);
            point[playerid] = 1;
            GivePlayerMoney(playerid, -200);
            return 1;
        }
        if(response == 0)
        {
            SendClientMessage(playerid,-1,"(AUTO ESCOLA) Voce desistiu da auto escola.");
            GivePlayerMoney(playerid, -200);
            return 1;
        }

    }

7/26/2020

CharaDa_Fox

SISTEMA DE ROUBO A BANCO PARA SAMP MOBILE

CharaDa_Fox

FILTERSCRIPT EMPREGO DE MACUMBEIRO PROFISSAO SA MP

CharaDa_Fox

Filterscript Pick Ups para Pegar Veiculos

CharaDa_Fox

FILTERSCRIPT EMPREGO Profissão Terrorista v2.0

CharaDa_Fox

FILTERSCRIPT EMPREGO Profissão Leiteiro v1

CharaDa_Fox

FILTERSCRIPT EMPREGO Profissão Fabricante v1


///includes///
#include <a_samp>
#include <zcmd>
///includes///

///Defines///
#define FILTERSCRIPT
#define COR_TEXTOS 0xFFFFFF88
#define VERMELHO 0xFB0000FF
#define AMARELO 0xFFFF00FF
#define AZUL_CLARO 0x00C2ECFF
#define VERDE 0x9ACD32AA
#define DialogBoxEx 1
///Defines///

///news///
new EntradaPickup; 
new SaidaPickup; 
new fab[MAX_PLAYERS]; 
new UsouComando[MAX_PLAYERS];
new funcdomes;
new vigarista;
new chefe;
new Fabricante[MAX_PLAYERS];  
new FabricanteTrabalhando[MAX_PLAYERS];
new CarFab[4];
///news///

public OnFilterScriptInit()
{
 Create3DTextLabel("{FFFFFF}aperte a tecla {30E7F8}F{FFFFFF} para entrar",COR_TEXTOS, 1779.0621,-1662.8247,14.4381+1, 15, 0);
 Create3DTextLabel("{FFFFFF}aperte a tecla {30E7F8}F{FFFFFF} para sair",COR_TEXTOS, 1062.2560,2077.3176,10.8203+1, 15, 0);
 Create3DTextLabel("{FFFFFF}Ola, Eu Sou o {30E7F8}Nathan {FFFFFF}Funcionario do Mes\nDicas?!?, Aperte F aqui..",COR_TEXTOS, 1077.9709,2086.6970,12.6279+1, 15, 0);
 Create3DTextLabel("{FFFFFF}Ola, Eu Sou o {30E7F8}Daniel {FFFFFF}Quer Saber por que Não sou o Funcionario do Mes?\nAperte F aqui..",COR_TEXTOS, 1057.6287,2085.4500,10.8203+1, 15, 0);
 Create3DTextLabel("{FFFFFF}Ola, Eu Sou o {30E7F8}Juliano {FFFFFF}Seu CHEFE\nVejamos Quantos Voce Ganhou...",COR_TEXTOS, 1086.4468,2121.7532,15.3504+1, 15, 0);
 Create3DTextLabel("{FFA500}Emprego Fabrica\n{FFFFFF}Digite /empregofabrica",0xFFA500AA,1773.0682,-1660.6495,14.4254,10.0,0);
 CarFab[0] = AddStaticVehicle(543,1760.5476,-1660.5618,13.3748,89.1338,1,1);
 CarFab[1] = AddStaticVehicle(543,1760.6503,-1663.5511,13.3736,90.8183,1,1);
 CarFab[2] = AddStaticVehicle(461,1760.6465,-1665.9012,13.1429,90.8826,1,1);
 AddStaticPickup(1210, 23, 1773.0682,-1660.6495,14.4254);
 EntradaPickup = CreatePickup(1318, 23, 1779.0621,-1662.8247,14.4381, -1);
 SaidaPickup = CreatePickup(1318, 23, 1062.2560,2077.3176,10.8203, -1);
 funcdomes = CreateActor (8, 1077.9709,2086.6970,12.6279,96.4708);
 ApplyActorAnimation(funcdomes, "ped","IDLE_chat", 4.1,1,0,0,1,0);
 vigarista = CreateActor (163, 1057.6287,2085.4500,10.8203,271.6024);
 ApplyActorAnimation(vigarista, "ped","IDLE_chat", 4.1,1,0,0,1,0);
 chefe = CreateActor (18, 1086.4468,2121.7532,15.3504,192.9545);
 ApplyActorAnimation(chefe, "ped","IDLE_chat", 4.1,1,0,0,1,0);
 return 1;
}

public OnFilterScriptExit()
{
 return 1;
}


main()
{
 print("\n----------------------------------");
 print("Certamente o Sistema ta Ligado!!");
 print("----------------------------------\n");
}


public OnPlayerConnect(playerid)
{
 Fabricante[playerid] = 0; FabricanteTrabalhando[playerid] = 0;
 return 1;
}

public OnPlayerDisconnect(playerid, reason)
{
    Fabricante[playerid] = 0; FabricanteTrabalhando[playerid] = 0;
 return 1;
}

public OnPlayerSpawn(playerid)
{
 SetPlayerPos(playerid, 1766.9008,-1667.1234,14.4103);
 return 1;
}

public OnPlayerStateChange(playerid, newstate, oldstate)
{
    new veiculo = GetPlayerVehicleID(playerid);
    if(veiculo == CarFab[0] || veiculo == CarFab[1] || veiculo == CarFab[2] || veiculo == CarFab[3])
 {
 if(Fabricante[playerid] == 0)
 {
 SendClientMessage(playerid,VERMELHO,"ERRO: Veiculo reservado para os Fabricantes");
 RemovePlayerFromVehicle(playerid);
 return 1;
 }
 else if(FabricanteTrabalhando[playerid] == 0) return SendClientMessage(playerid,VERDE,"INFO: Veiculo da Fabrica Quebrar, perdera Sua Casa!!!, Use com Cuidado");
 return 1;
 }
 return 1;
}

public OnPlayerEnterCheckpoint(playerid)
{
    if(fab[playerid] == 1) 
    {
//        ApplyAnimation(playerid, "BOMBER", "BOM_Plant", 4.1, 0, 1, 0, 0, -1);
        DisablePlayerCheckpoint(playerid); 
        fab[playerid] = 2; 
        SetPlayerCheckpoint(playerid, 1060.5924,2093.0979,10.8203, 2.0); 
        SendClientMessage(playerid, 0xFFFFFFFF, "Você Montou Uma Peça, vá para o próximo Checkpoint");
        return 1;
    }
    else if(fab[playerid] == 2) 
    {
        ApplyAnimation(playerid, "GANGS", "DEALER_DEAL", 10.1, 0, 1, 0, 0, -1);
        DisablePlayerCheckpoint(playerid); 
        fab[playerid] = 3; 
        SetPlayerCheckpoint(playerid, 1060.9850,2099.4604,10.8203, 2.0); 
        SendClientMessage(playerid, 0xFFFFFFFF, "Você Montou Uma Peça, vá para o próximo Checkpoint");
        return 1;
    }
    else if(fab[playerid] == 3) 
    {
        ApplyAnimation(playerid, "GANGS", "DEALER_DEAL", 10.1, 0, 1, 0, 0, -1);
        DisablePlayerCheckpoint(playerid); 
        fab[playerid] = 4; 
        SetPlayerCheckpoint(playerid, 1064.5771,2100.8745,10.8203, 2.0); 
        SendClientMessage(playerid, 0xFFFFFFFF, "Você Montou Uma Peça, vá para o próximo Checkpoint");
        return 1;
    }
    else if(fab[playerid] == 4) 
    {
        ApplyAnimation(playerid, "GANGS", "DEALER_DEAL", 10.1, 0, 1, 0, 0, -1);
        DisablePlayerCheckpoint(playerid); 
        fab[playerid] = 5; 
        SetPlayerCheckpoint(playerid, 1071.7848,2101.3376,10.8203, 2.0); 
        SendClientMessage(playerid, 0xFFFFFFFF, "Você Montou Uma Peça, vá para o próximo Checkpoint");
        return 1;
    }
    else if(fab[playerid] == 5) 
    {
        ApplyAnimation(playerid, "GANGS", "DEALER_DEAL", 10.1, 0, 1, 0, 0, -1);
        DisablePlayerCheckpoint(playerid); 
        fab[playerid] = 6; 
        SetPlayerCheckpoint(playerid, 1072.6425,2097.6826,10.8203, 2.0); 
        SendClientMessage(playerid, 0xFFFFFFFF, "Você Montou Uma Peça, vá para o próximo Checkpoint");
        return 1;
    }
    else if(fab[playerid] == 6) 
    {
        ApplyAnimation(playerid, "GANGS", "DEALER_DEAL", 10.1, 0, 1, 0, 0, -1);
        DisablePlayerCheckpoint(playerid); 
        fab[playerid] = 7; 
        SetPlayerCheckpoint(playerid, 1063.8796,2097.6338,10.8203, 2.0); 
        SendClientMessage(playerid, 0xFFFFFFFF, "Você Montou Uma Peça, vá para o próximo Checkpoint");
        return 1;
    }
    else if(fab[playerid] == 7) 
    {
        ApplyAnimation(playerid, "GANGS", "DEALER_DEAL", 10.1, 0, 1, 0, 0, -1);
        DisablePlayerCheckpoint(playerid); 
        fab[playerid] = 8; 
        SetPlayerCheckpoint(playerid, 1058.2371,2119.9094,10.8203, 2.0); 
        SendClientMessage(playerid, 0xFFFFFFFF, "Você Montou Uma Peça, vá para o próximo Checkpoint");
        return 1;
    }
    else if(fab[playerid] == 8) 
    {
        ApplyAnimation(playerid, "GANGS", "DEALER_DEAL", 10.1, 0, 1, 0, 0, -1);
        DisablePlayerCheckpoint(playerid); 
        fab[playerid] = 9; 
        SetPlayerCheckpoint(playerid, 1058.5020,2125.0527,10.8203, 2.0); 
        SendClientMessage(playerid, 0xFFFFFFFF, "Você Montou Uma Peça, vá para o próximo Checkpoint");
        return 1;
    }
    else if(fab[playerid] == 9) 
    {
        ApplyAnimation(playerid, "GANGS", "DEALER_DEAL", 10.1, 0, 1, 0, 0, -1);
        DisablePlayerCheckpoint(playerid); 
        fab[playerid] = 10; 
        SetPlayerCheckpoint(playerid, 1091.8154,2077.7617,15.3504, 2.0); 
        SendClientMessage(playerid, 0xFFFFFFFF, "Você Montou Uma Peça, vá para o próximo Checkpoint");
        return 1;
    }
    else if(fab[playerid] == 10)
    {
        ApplyAnimation(playerid, "GANGS", "DEALER_DEAL", 10.1, 0, 1, 0, 0, -1);
        DisablePlayerCheckpoint(playerid);
        fab[playerid] = 11; 
        SetPlayerCheckpoint(playerid, 1092.4624,2086.0024,15.3504, 2.0);
        SendClientMessage(playerid, 0xFFFFFFFF, "Você Montou Uma Peça, vá para o próximo Checkpoint");
        return 1;
    }
    else if(fab[playerid] == 11)
    {
        ApplyAnimation(playerid, "GANGS", "DEALER_DEAL", 10.1, 0, 1, 0, 0, -1);
        DisablePlayerCheckpoint(playerid); 
        fab[playerid] = 12; 
        SetPlayerCheckpoint(playerid, 1086.0305,2120.2253,15.3504, 2.0); 
        SendClientMessage(playerid, 0xFFFFFFFF, "Você Montou Uma Peça, vá para o próximo Checkpoint");
        return 1;
    }
    else if(fab[playerid] == 12) 
    {
        ApplyAnimation(playerid, "GANGS", "DEALER_DEAL", 10.1, 0, 1, 0, 0, -1);
        DisablePlayerCheckpoint(playerid);
        fab[playerid] = 13; 
        SetPlayerCheckpoint(playerid, 1086.7411,2120.1260,15.3504, 2.0); 
        SendClientMessage(playerid, 0xFFFFFFFF, "Você Montou Uma Peça, vá para o próximo Checkpoint");
        return 1;
    }
    if(fab[playerid] == 13) 
    {
        ApplyAnimation(playerid, "GANGS", "DEALER_DEAL", 10.1, 0, 1, 0, 0, -1);
        new reward, string[128];
        DisablePlayerCheckpoint(playerid); 
        fab[playerid] = 0;
        reward = GivePlayerMoney(playerid, GetPlayerMoney(playerid) + random(5000) + 1000);
        format(string, sizeof(string), "Voce Terminou a Produção de Joias");
        SendClientMessage(playerid, 0xFFFFFFFF, string);
    }
    return 1;
}

public OnPlayerPickUpPickup(playerid, pickupid)
{
if(pickupid == EntradaPickup)
{
// SetPlayerInterior(playerid, 11); // Interior Do Local que Será Setado.
// SetPlayerPos(playerid, 932.6444,2150.4995,1011.0234); // Setando ele Para Dentro do Interior.
}
if(pickupid == SaidaPickup)
{
//     SetPlayerInterior(playerid, 0); // Interior Do Local que Será Setado.
//     SetPlayerPos(playerid, 1779.0621,-1662.8247,14.4381); // Setando ele Para Fóra Ou Seja Saindo do Interior.
}
 return 1;
}

public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
if ((newkeys==KEY_SECONDARY_ATTACK)) // Key ( F / Enter )
{
    cmd_entrarfabrica(playerid); // Ao Apertar "F" Funcionará o Comando Do Lado.
 cmd_sairfabrica(playerid); // Ao Apertar "F" Funcionará o Comando Do Lado.
 cmd_ajudafabrica(playerid); // Ao Apertar "F" Funcionará o Comando Do Lado.
 cmd_troll(playerid); // Ao Apertar "F" Funcionará o Comando Do Lado.
   //Se Quiser Colocar mais, a vontade.
}
 return 1;
}

///Comandos///
CMD:entrarfabrica(playerid)
{
   if(IsPlayerInRangeOfPoint(playerid, 2.0, 1779.0621,-1662.8247,14.4381))
   {
       SetPlayerInterior(playerid, 0); 
       SetPlayerPos(playerid, 1062.2560,2077.3176,10.8203);
   }
   return true; // Returnando a 1
}

CMD:sairfabrica(playerid)
{
   if(IsPlayerInRangeOfPoint(playerid, 2.0, 1062.2560,2077.3176,10.8203))
   {
      SetPlayerInterior(playerid, 0); // Setando o Interior ao Sair.
      SetPlayerPos(playerid, 1779.0621,-1662.8247,14.4381); // Setado Para Aqui ( TELE )
   }
   return true; // Returnando a 1
}
CMD:comecar(playerid, cmdtext)
{
 if(Fabricante[playerid] == 0) return SendClientMessage(playerid,VERMELHO,"ERRO: Você não é um Fabricante, Pegue a Profissão!");
 if(!IsPlayerInRangeOfPoint(playerid, 2.0, 1062.2560,2077.3176,10.8203)) return SendClientMessage(playerid,0xE74C3CFF,"ERRO: Você não está no local correto!");
 if(UsouComando[playerid] > gettime()) return SendClientMessage(playerid, -1,  "Você usou este comando recentemente. Aguarde algum tempo para usá-lo novamente.");
    fab[playerid] = 1; 
    SetPlayerCheckpoint(playerid, 1060.5924,2093.0979,10.8203, 2.0); 
    UsouComando[playerid] = gettime() + 240;
    SendClientMessage(playerid, 0xFFFFFFFF, "Você Começou a Montagem de Joias, Vá até o CheckPoint para Iniciar!!");
    SetPlayerSkin(playerid, 8);
    return 1;
}
CMD:fabrica(playerid)
{
 SetPlayerPos(playerid, 1761.3630,-1663.6487,13.5593);
 return 1;
}
CMD:ajudafabrica(playerid)
{
 if(Fabricante[playerid] == 0) return SendClientMessage(playerid,VERMELHO,"ERRO: Você não é um Fabricante!");
 if(IsPlayerInRangeOfPoint(playerid, 2.0, 375.5736,-68.2086,1001.5151)) return SendClientMessage(playerid,VERMELHO,"ERRO: Você não é um Fabricante!");
 new str[512];
 format(str, sizeof(str), "Digite /comecar perto da porta de entrada para iniciar seu trabalho na Fabrica.\n Cuidado Em quem voce confia aqui na fabrica, eles podem te passar a perna, Inclusive o Tal do ""Daniel"" \n Os Valores Finais são aleatorios, as vezes Bom, as vezes Ruin, Boa Sorte Novato", playerid);
 ShowPlayerDialog(playerid, DialogBoxEx, DIALOG_STYLE_MSGBOX, "Instruções", str, "Ok", "Cancelar");
 return 1;
}
CMD:empregofabrica(playerid)
{
    if(!IsPlayerInRangeOfPoint(playerid, 2.0, 1773.0682,-1660.6495,14.4254)) return SendClientMessage(playerid,VERMELHO,"ERRO: Você não está no local correto!");
    if(Fabricante[playerid] == 1) return SendClientMessage(playerid,VERMELHO,"ERRO: Você já é um Fabricante!");
 SendClientMessage(playerid,AZUL_CLARO,"INFO: Parabéns, vocé virou um Fabricante!Converse com o Funcionario do Mes para ver seus comandos");
 Fabricante[playerid] = 1; SetPlayerSkin(playerid, 8);
 return 1;
}
CMD:troll(playerid)
{
 if(!IsPlayerInRangeOfPoint(playerid, 2.0, 1057.6287,2085.4500,10.8203))
 SetPlayerInterior(playerid, 0);
 SetPlayerPos(playerid, 1548.5536,-1354.3528,329.4686);
 SendClientMessage(playerid,0xE74C3CFF,"POR CAUSA DISSO!!! +1 ENGANADO KKKKKKKKKKKKKKKKKKKKKK");
 return 1;
}

6/13/2020

CharaDa_Fox

[FilterScript] [FS] SISTEMA DE DINHEIRO SUJO PARA ANDROID [EMPREGOS/CORP]

▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ ⬇sᴏʙʀᴇ ᴏ ᴠɪ́ᴅᴇᴏ⬇ Link do Arquivo: https://www.sendspace.com/file/rujhsm Comandos: /entregari, /rota, /dsujo, /dards
Amx : https://www.sendspace.com/file/s1ttbr ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬

6/12/2020

CharaDa_Fox

[FilterScript] [FS] | Sistema Taser | Android/PC | ~CharaDa~| ROLEPLAY

⬇sᴏʙʀᴇ ᴏ ᴠɪ́ᴅᴇᴏ⬇
Link do Arquivo: https://www.sendspace.com/file/nhnib4 Comandos: /taser - pega um taser

6/09/2020

CharaDa_Fox

[Map] Auto Escola

salve lsave galera hoje to trazendo pra voces um mapa exterior da auto escola, um pouco parecido com a vida real, o mapa e otimopra RPG e RP....
public OnGameModeInit()
{
    //Remove Buildings///////////////////////////////////////////////////////////////////////////////////////////////
    RemoveBuildingForPlayer(playerid, 671, 1530.890, -2251.421, 12.609, 0.250);
    RemoveBuildingForPlayer(playerid, 620, 1531.085, -2250.382, 11.296, 0.250);
    RemoveBuildingForPlayer(playerid, 712, 1534.234, -2273.937, 21.648, 0.250);
    RemoveBuildingForPlayer(playerid, 1226, 1536.828, -2282.289, 16.242, 0.250);
    RemoveBuildingForPlayer(playerid, 1226, 1478.796, -2228.289, 16.312, 0.250);
    RemoveBuildingForPlayer(playerid, 1290, 1558.726, -2211.515, 18.718, 0.250);
    RemoveBuildingForPlayer(playerid, 1290, 1560.937, -2231.562, 18.718, 0.250);

    //Objects////////////////////////////////////////////////////////////////////////////////////////////////////////
    new AutoEscolaEtx;
    AutoEscolaEtx = CreateObject(19449, 1538.191284, -2271.721191, 11.895230, 0.000000, 0.000000, 359.606231);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1538.277709, -2262.255615, 11.886879, 0.000000, 0.000000, 359.606201);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1538.334594, -2252.848388, 11.872200, 0.000000, 0.000000, 359.606201);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1538.393920, -2243.982177, 11.873999, 0.000000, 0.000000, 359.606201);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1538.437866, -2237.717529, 11.885399, 0.000000, 0.000000, 359.606201);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1533.730957, -2232.843017, 11.882300, 0.000000, 0.000000, 88.371696);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1524.195678, -2232.574707, 11.908499, 0.000000, 0.000000, 88.371696);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1514.673828, -2232.288574, 11.943499, 0.000000, 0.000000, 88.371696);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1505.212646, -2232.035888, 11.908699, 0.000000, 0.000000, 88.371696);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1498.702636, -2231.877197, 11.911919, 0.000000, 0.000000, 88.572731);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1489.199462, -2231.140380, 11.851499, 0.000000, 0.000000, 82.539802);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1484.499511, -2225.795898, 11.975600, 0.000000, 0.000000, 0.012269);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1484.458251, -2216.443847, 11.996000, 0.000000, 0.000000, 0.012299);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1484.461425, -2209.418457, 11.988699, 0.000000, 0.000000, 0.012299);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1489.251342, -2204.667968, 11.964099, 0.000000, 0.000000, 90.203697);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1498.781738, -2204.636962, 11.926400, 0.000000, 0.000000, 90.203697);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1508.336425, -2204.646972, 11.971260, 0.000000, 0.000000, 90.203689);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1517.950683, -2204.592773, 11.918299, 0.000000, 0.000000, 90.203697);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1527.403564, -2204.561279, 11.859800, 0.000000, 0.000000, 90.203697);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1537.003295, -2204.523193, 11.786999, 0.000000, 0.000000, 90.203697);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1546.516357, -2204.514404, 11.800580, 0.000000, 0.000000, 90.203689);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1555.995849, -2204.468994, 11.769539, 0.000000, 0.000000, 90.203689);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1561.268920, -2204.458984, 11.757399, 0.000000, 0.000000, 90.203697);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1566.068481, -2209.148925, 11.800580, 0.000000, 0.000000, 0.034820);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1566.078247, -2218.669433, 11.745699, 0.000000, 0.000000, 0.034800);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1566.094482, -2228.230468, 11.725199, 0.000000, 0.000000, 0.034800);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1566.093994, -2237.832275, 11.793439, 0.000000, 0.000000, 0.034820);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1566.093872, -2247.373535, 11.794199, 0.000000, 0.000000, 0.034800);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1566.118041, -2256.927978, 11.760700, 0.000000, 0.000000, 0.034800);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1566.118774, -2266.355957, 11.790499, 0.000000, 0.000000, 0.034800);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1566.096191, -2271.887451, 11.773799, 0.000000, 0.000000, 0.034800);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(19449, 1561.364013, -2276.675781, 11.941100, 0.000000, 0.000000, 90.203697);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "ws_ irongate", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1538.172729, -2276.542480, 11.494350, 0.000000, 0.000000, 0.582090);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1538.225463, -2266.826416, 11.494350, 0.000000, 0.000000, 0.582090);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1538.302978, -2257.300781, 11.494350, 0.000000, 0.000000, 0.582090);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1538.352783, -2248.342773, 11.494350, 0.000000, 0.000000, 0.582090);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1538.416137, -2242.140625, 11.494350, 0.000000, 0.000000, 0.000059);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1538.465454, -2233.002685, 11.494350, 0.000000, 0.000000, 0.000059);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1528.534179, -2232.728027, 11.494350, 0.000000, 0.000000, 358.505310);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1519.062133, -2232.363037, 11.494350, 0.000000, 0.000000, 358.505310);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1509.636840, -2232.170166, 11.494350, 0.000000, 0.000000, 358.505310);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1503.249023, -2231.999267, 11.494350, 0.000000, 0.000000, 358.505310);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1493.671020, -2231.671630, 11.494350, 0.000000, 0.000000, 352.168731);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1484.497924, -2230.474121, 11.494350, 0.000000, 0.000000, 359.876464);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1484.492065, -2221.000000, 11.494350, 0.000000, 0.000000, 358.505310);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1484.516845, -2213.884277, 11.494350, 0.000000, 0.000000, 358.505310);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1484.574218, -2204.700195, 11.494350, 0.000000, 0.000000, 358.505310);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1494.362304, -2204.741455, 11.494350, 0.000000, 0.000000, 358.505310);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1503.943237, -2204.633300, 11.494350, 0.000000, 0.000000, 0.000059);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1513.246093, -2204.751953, 11.494350, 0.000000, 0.000000, 0.000059);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1522.791137, -2204.543212, 11.494350, 0.000000, 0.000000, 0.000059);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1532.452514, -2204.483886, 11.494350, 0.000000, 0.000000, 0.000059);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1542.025024, -2204.559814, 11.494350, 0.000000, 0.000000, 0.000059);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1551.366333, -2204.535156, 11.494350, 0.000000, 0.000000, 0.000059);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1560.906738, -2204.507080, 11.494350, 0.000000, 0.000000, 0.000059);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1566.066162, -2204.534179, 11.494350, 0.000000, 0.000000, 0.000059);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1566.036254, -2214.182617, 11.494350, 0.000000, 0.000000, 0.000059);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1566.086181, -2223.566894, 11.494350, 0.000000, 0.000000, 0.000059);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1566.036987, -2233.357421, 11.494350, 0.000000, 0.000000, 0.000059);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1566.094726, -2242.660888, 11.494350, 0.000000, 0.000000, 0.000059);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1566.031250, -2252.407470, 11.494350, 0.000000, 0.000000, 0.000059);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1566.011840, -2261.869873, 11.494350, 0.000000, 0.000000, 0.000059);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1566.138183, -2270.801025, 11.494350, 0.000000, 0.000000, 0.000059);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1566.103515, -2276.687011, 11.494350, 0.000000, 0.000000, 0.000059);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1556.331909, -2276.677734, 11.494350, 0.000000, 0.000000, 0.000059);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1555.321777, -2231.863037, 15.110549, 0.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1555.353271, -2228.845214, 12.370289, -90.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1555.346557, -2223.889648, 12.370300, -90.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1555.352050, -2218.906738, 12.370300, -90.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1555.302368, -2224.061767, 15.110549, 0.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1555.301391, -2216.757324, 15.110549, 0.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1555.250854, -2229.791748, 16.861499, -90.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1555.244506, -2224.867919, 16.861499, -90.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1555.189575, -2220.059326, 16.861499, -90.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1547.698242, -2216.608398, 15.110549, 0.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1547.433227, -2214.551269, 16.861499, -90.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1547.726440, -2213.851806, 12.370300, -90.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1547.710815, -2211.711181, 15.110549, 0.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1549.441528, -2211.543945, 16.861499, -90.000000, 0.000000, 90.406791);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1549.777343, -2211.718261, 12.366299, -90.000000, 0.000000, 90.406799);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1552.626220, -2211.667236, 15.030599, 0.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1554.386840, -2211.573974, 16.861499, -90.000000, 0.000000, 90.406791);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1559.166015, -2211.525146, 16.861499, -90.000000, 0.000000, 90.406791);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1556.740356, -2211.677490, 15.110549, 0.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1555.550048, -2211.653076, 12.486300, -90.000000, 0.000000, 90.406799);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1561.344604, -2211.673095, 15.110549, 0.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1561.319946, -2214.552490, 12.370300, -90.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1561.389404, -2216.943603, 15.110549, 0.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1561.461181, -2213.514648, 16.861499, -90.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1561.443481, -2220.110351, 16.861499, -90.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1561.341674, -2219.808837, 12.370300, -90.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1561.336181, -2221.308837, 15.110549, 0.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1561.438476, -2223.370361, 16.861499, -90.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1561.352661, -2224.739501, 12.370300, -90.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1561.334960, -2225.998291, 15.110549, 0.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1561.358398, -2229.690917, 12.370300, -90.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1561.441040, -2228.338134, 16.861499, -90.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1558.194702, -2231.845214, 12.446299, -90.000000, 0.000000, 90.406799);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1560.981079, -2231.799804, 15.110549, 0.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1559.444580, -2231.828857, 12.446299, -90.000000, 0.000000, 90.406799);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1557.223876, -2231.914306, 16.861499, -90.000000, 0.000000, 90.406791);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1561.454833, -2229.813476, 16.841499, -90.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1559.454345, -2231.911132, 16.861499, -90.000000, 0.000000, 90.406799);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18766, 1555.579589, -2227.096191, 13.892109, 0.000000, 0.000000, 269.985626);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0xFF000000);
    AutoEscolaEtx = CreateObject(18766, 1553.192749, -2211.941650, 13.892109, 0.000000, 0.000000, 180.042282);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0xFF000000);
    AutoEscolaEtx = CreateObject(18766, 1560.828002, -2226.331787, 13.892109, 0.000000, 0.000000, 269.985626);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0xFF000000);
    AutoEscolaEtx = CreateObject(18766, 1560.919311, -2216.488525, 13.892109, 0.000000, 0.000000, 269.985626);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0xFF000000);
    AutoEscolaEtx = CreateObject(18766, 1560.859375, -2216.458251, 13.892109, 0.000000, 0.000000, 269.985626);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0xFF000000);
    AutoEscolaEtx = CreateObject(18766, 1555.590087, -2222.120605, 13.892109, 0.000000, 0.000000, 269.985626);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0xFF000000);
    AutoEscolaEtx = CreateObject(18766, 1553.182006, -2216.402343, 13.892109, 0.000000, 0.000000, 180.042282);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0xFF000000);
    AutoEscolaEtx = CreateObject(18766, 1555.917480, -2211.941162, 13.892109, 0.000000, 0.000000, 180.042282);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0xFF000000);
    AutoEscolaEtx = CreateObject(18762, 1549.477783, -2217.099609, 16.861499, -90.000000, 0.000000, 90.406791);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1554.405883, -2217.046875, 16.861499, -90.000000, 0.000000, 90.406791);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(19355, 1559.392333, -2232.004150, 14.228750, 0.000000, 0.000000, 270.241241);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0xFF000000);
    AutoEscolaEtx = CreateObject(19355, 1557.010009, -2231.980224, 14.228750, 0.000000, 0.000000, 270.241241);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0xFF000000);
    AutoEscolaEtx = CreateObject(19355, 1557.024658, -2231.966552, 14.832759, 0.000000, 0.000000, 270.241241);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0xFF000000);
    AutoEscolaEtx = CreateObject(19355, 1559.693969, -2231.934814, 14.832759, 0.000000, 0.000000, 270.241241);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0xFF000000);
    AutoEscolaEtx = CreateObject(18762, 1561.456176, -2216.695800, 16.841499, -90.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18762, 1559.244873, -2211.724853, 12.486300, -90.000000, 0.000000, 89.854431);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(19355, 1547.419921, -2215.372558, 12.132659, 0.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0xFF000000);
    AutoEscolaEtx = CreateObject(19355, 1547.419067, -2215.392578, 15.603839, 0.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0xFF000000);
    AutoEscolaEtx = CreateObject(19355, 1547.429687, -2213.290283, 12.132659, 0.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0xFF000000);
    AutoEscolaEtx = CreateObject(19355, 1547.449707, -2213.289062, 14.701169, 0.000000, 0.000000, 359.794952);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0xFF000000);
    AutoEscolaEtx = CreateObject(18766, 1557.283813, -2227.391601, 17.180500, 90.000000, 0.000000, 270.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18766, 1559.430664, -2227.386474, 17.160499, 90.000000, 0.000000, 270.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18766, 1559.400024, -2217.426025, 17.160499, 90.000000, 0.000000, 270.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18766, 1559.447875, -2216.058593, 17.110498, 90.000000, 0.000000, 270.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18766, 1551.960083, -2213.588378, 17.160499, 90.000000, 0.000000, 179.932434);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18766, 1552.018432, -2215.038330, 17.140499, 90.000000, 0.000000, 179.932403);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(18766, 1557.294189, -2220.588378, 17.200500, 90.000000, 0.000000, 270.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0x00000000);
    AutoEscolaEtx = CreateObject(19355, 1554.310302, -2215.303466, 10.943329, 0.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0xFF003300);
    AutoEscolaEtx = CreateObject(19355, 1554.310302, -2215.303466, 14.379599, 0.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0xFF003300);
    AutoEscolaEtx = CreateObject(19355, 1548.405395, -2215.302978, 10.897299, 0.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0xFF003300);
    AutoEscolaEtx = CreateObject(19355, 1548.405395, -2215.302978, 14.382300, 0.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0xFF003300);
    AutoEscolaEtx = CreateObject(19355, 1550.238037, -2215.305908, 16.048700, 0.000000, 90.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0xFF003300);
    AutoEscolaEtx = CreateObject(19355, 1552.493408, -2215.316650, 16.048700, 0.000000, 90.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0xFF003300);
    AutoEscolaEtx = CreateObject(19355, 1549.285522, -2215.315185, 13.652000, 0.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0xFF003300);
    AutoEscolaEtx = CreateObject(19355, 1551.111694, -2215.306884, 15.316049, 0.000000, 90.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0xFF003300);
    AutoEscolaEtx = CreateObject(19355, 1553.502929, -2215.311523, 13.652000, 0.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0xFF003300);
    AutoEscolaEtx = CreateObject(19355, 1551.832275, -2215.309082, 15.316049, 0.000000, 90.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0xFF003300);
    AutoEscolaEtx = CreateObject(19355, 1551.331909, -2215.310058, 13.472000, 0.000000, 0.000000, 0.000000);
    SetObjectMaterial(AutoEscolaEtx, 0, 3820, "boxhses_sfsx", "stonewall_la", 0xFF003300);
    AutoEscolaEtx = CreateObject(1237, 1546.177856, -2253.498291, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1546.350219, -2250.355224, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1546.484008, -2247.050048, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1546.514770, -2243.860107, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1546.512573, -2240.518798, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1546.365966, -2237.139648, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1546.260131, -2233.503173, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1546.255004, -2230.423339, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1546.292724, -2226.980468, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1546.330078, -2223.536132, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1546.420776, -2220.531738, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1546.325195, -2217.432861, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1546.392700, -2213.327392, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1546.401367, -2208.723144, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1541.315063, -2253.258544, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1541.375732, -2250.686279, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1541.383178, -2247.435791, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1541.357543, -2243.950683, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1541.377685, -2240.370605, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1541.291381, -2236.804931, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1540.728759, -2234.443603, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1539.071655, -2224.815429, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1535.209716, -2224.788085, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1499.949096, -2227.044433, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1531.011474, -2224.531494, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1527.358276, -2224.438232, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1524.276489, -2224.410888, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1520.691040, -2224.197998, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1516.639160, -2224.086425, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1512.073730, -2223.966064, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1507.315307, -2223.877441, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1491.900756, -2215.327392, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1492.595336, -2225.169433, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1491.101806, -2225.405761, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1490.514404, -2223.955078, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1492.802368, -2223.608642, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1485.975341, -2216.348144, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1489.166748, -2216.525878, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1500.395141, -2230.190917, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1500.476928, -2223.213867, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1494.592529, -2215.426513, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1498.835937, -2207.315429, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1496.305053, -2214.821289, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1496.181640, -2212.010498, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1501.378540, -2214.668457, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1496.144409, -2208.570556, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1501.261718, -2208.445800, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1501.333618, -2211.572753, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1503.497436, -2214.798095, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1510.407226, -2207.568115, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1506.023193, -2214.894042, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1508.773559, -2214.479248, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1514.720214, -2209.262451, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1508.643432, -2211.750000, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1508.567871, -2208.964355, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1531.073730, -2209.095703, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1512.431152, -2207.448486, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1514.898315, -2214.521728, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1518.275512, -2214.637207, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1521.928955, -2214.637939, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1526.264648, -2214.737060, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1542.540283, -2208.521972, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1528.628784, -2211.922363, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1535.446411, -2208.730712, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1538.993774, -2208.599609, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19425, 1516.551757, -2226.681884, 12.560000, 0.000000, 0.000000, 90.000000);
    AutoEscolaEtx = CreateObject(19425, 1536.162597, -2230.460205, 12.560000, 0.000000, 0.000000, 90.000000);
    AutoEscolaEtx = CreateObject(19425, 1536.192138, -2227.209960, 12.560000, 0.000000, 0.000000, 90.000000);
    AutoEscolaEtx = CreateObject(19425, 1530.995971, -2227.096679, 12.560000, 0.000000, 0.000000, 90.000000);
    AutoEscolaEtx = CreateObject(19425, 1531.013061, -2230.256591, 12.560000, 0.000000, 0.000000, 90.000000);
    AutoEscolaEtx = CreateObject(19425, 1526.706665, -2230.146240, 12.560000, 0.000000, 0.000000, 90.000000);
    AutoEscolaEtx = CreateObject(19425, 1526.692260, -2226.960449, 12.560000, 0.000000, 0.000000, 90.000000);
    AutoEscolaEtx = CreateObject(19425, 1521.332031, -2226.630615, 12.560000, 0.000000, 0.000000, 90.000000);
    AutoEscolaEtx = CreateObject(19425, 1521.356811, -2229.766357, 12.560000, 0.000000, 0.000000, 90.000000);
    AutoEscolaEtx = CreateObject(19425, 1511.507202, -2226.530517, 12.560000, 0.000000, 0.000000, 90.000000);
    AutoEscolaEtx = CreateObject(19425, 1516.549804, -2229.890869, 12.560000, 0.000000, 0.000000, 90.000000);
    AutoEscolaEtx = CreateObject(19425, 1511.515625, -2229.819580, 12.560000, 0.000000, 0.000000, 90.000000);
    AutoEscolaEtx = CreateObject(1237, 1514.841186, -2211.578369, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1491.480834, -2222.849121, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1237, 1539.186035, -2233.181640, 12.522999, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(18762, 1555.209472, -2218.728271, 16.881500, -90.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1555.078125, -2230.215087, 13.512680, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1555.078125, -2230.215087, 15.495800, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1555.072265, -2227.949707, 15.495800, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1555.072265, -2227.949707, 13.529600, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1555.067016, -2225.688232, 13.529600, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1555.067016, -2225.688232, 15.484700, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1555.079101, -2222.446289, 15.484700, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1555.079101, -2222.446289, 13.527299, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1555.080566, -2220.184570, 13.527299, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1555.080566, -2220.184570, 15.483599, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1555.086181, -2217.922851, 15.483599, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1555.086181, -2217.922851, 13.520500, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1557.129516, -2232.108154, 13.810560, 0.000000, 0.000000, 89.815666);
    AutoEscolaEtx = CreateObject(19466, 1557.129516, -2232.108154, 15.768600, 0.000000, 0.000000, 89.815696);
    AutoEscolaEtx = CreateObject(19466, 1559.391601, -2232.119384, 15.768600, 0.000000, 0.000000, 89.815696);
    AutoEscolaEtx = CreateObject(19466, 1559.391601, -2232.119384, 13.799799, 0.000000, 0.000000, 89.815696);
    AutoEscolaEtx = CreateObject(19466, 1561.332763, -2230.266845, 13.512700, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1561.332763, -2230.266845, 15.477199, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1561.339721, -2227.997558, 13.512700, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1561.339721, -2227.997558, 15.472000, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1561.347534, -2225.712890, 15.472000, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1561.347534, -2225.712890, 13.510499, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1561.347534, -2225.712890, 13.510499, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1561.332519, -2223.431884, 15.472000, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1561.332519, -2223.431884, 13.513199, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1561.339721, -2221.150634, 15.472000, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1561.339721, -2221.150634, 13.502200, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1561.433471, -2219.743652, 15.472000, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1561.433471, -2219.743652, 13.503700, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1561.429687, -2217.474121, 13.503700, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1561.429687, -2217.474121, 15.475299, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1561.425537, -2215.190673, 13.503700, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1561.425537, -2215.190673, 15.465299, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1561.446899, -2212.928466, 15.465299, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1561.446899, -2212.928466, 13.506299, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1559.684082, -2211.430664, 13.810560, 0.000000, 0.000000, 89.815666);
    AutoEscolaEtx = CreateObject(19466, 1559.684082, -2211.430664, 15.769900, 0.000000, 0.000000, 89.815696);
    AutoEscolaEtx = CreateObject(19466, 1557.411254, -2211.428222, 15.769900, 0.000000, 0.000000, 89.815696);
    AutoEscolaEtx = CreateObject(19466, 1557.411254, -2211.428222, 13.814100, 0.000000, 0.000000, 89.815696);
    AutoEscolaEtx = CreateObject(19466, 1555.139038, -2211.432128, 13.814100, 0.000000, 0.000000, 89.815696);
    AutoEscolaEtx = CreateObject(19466, 1555.139038, -2211.432128, 15.775569, 0.000000, 0.000000, 89.815696);
    AutoEscolaEtx = CreateObject(19466, 1552.877197, -2211.431152, 15.775569, 0.000000, 0.000000, 89.815696);
    AutoEscolaEtx = CreateObject(19466, 1552.877197, -2211.431152, 13.817700, 0.000000, 0.000000, 89.815696);
    AutoEscolaEtx = CreateObject(19466, 1550.594238, -2211.436767, 13.817700, 0.000000, 0.000000, 89.815696);
    AutoEscolaEtx = CreateObject(19466, 1550.594238, -2211.436767, 15.774200, 0.000000, 0.000000, 89.815696);
    AutoEscolaEtx = CreateObject(19466, 1548.333740, -2211.425048, 15.774200, 0.000000, 0.000000, 89.815696);
    AutoEscolaEtx = CreateObject(19466, 1548.333740, -2211.425048, 13.825599, 0.000000, 0.000000, 89.815696);
    AutoEscolaEtx = CreateObject(19466, 1547.328369, -2215.022216, 13.527299, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1547.328369, -2215.022216, 15.497090, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1547.320678, -2212.750976, 13.534910, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(19466, 1547.329467, -2212.753662, 15.497090, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(1280, 1528.936035, -2270.345458, 12.746339, 0.000000, 0.000000, 11.730369);
    AutoEscolaEtx = CreateObject(1280, 1526.020629, -2259.632324, 12.746339, 0.000000, 0.000000, 25.515819);
    AutoEscolaEtx = CreateObject(1280, 1518.366943, -2248.091552, 12.746339, 0.000000, 0.000000, 39.046699);
    AutoEscolaEtx = CreateObject(1280, 1510.377319, -2240.362304, 12.746339, 0.000000, 0.000000, 54.025199);
    AutoEscolaEtx = CreateObject(1231, 1522.286499, -2252.675048, 15.254859, 0.000000, 0.000000, 287.260009);
    AutoEscolaEtx = CreateObject(1231, 1527.507690, -2265.754394, 15.254859, 0.000000, 0.000000, 270.806091);
    AutoEscolaEtx = CreateObject(1231, 1515.541748, -2244.757568, 15.254859, 0.000000, 0.000000, 318.021514);
    AutoEscolaEtx = CreateObject(1231, 1506.774291, -2238.355957, 15.254859, 0.000000, 0.000000, 318.021514);
    AutoEscolaEtx = CreateObject(1231, 1529.241455, -2275.131835, 15.254859, 0.000000, 0.000000, 270.806091);
    AutoEscolaEtx = CreateObject(669, 1517.927856, -2239.147460, 12.543950, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(669, 1528.541503, -2241.299560, 12.543950, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(669, 1530.308105, -2253.006103, 12.543950, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(669, 1531.574951, -2263.034912, 12.543950, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(669, 1510.704589, -2236.507324, 12.543950, 0.000000, 0.000000, 0.000000);
    AutoEscolaEtx = CreateObject(669, 1532.999267, -2271.598632, 12.543950, 0.000000, 0.000000, 0.000000);
    return 1;

}

[Mapa] Auto Escola