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

9/30/2020

CharaDa_Fox

[Lançamento] Hora e Data Simples

 FilterScript Hora e Data.


Estou postando aqui um filterscript que eu tinha postado no fórum samp antes dele cair.

Sobre ele não tem muito o que falar, é um textdraw mostrando hora e data do lado direito do mapa.

Pastebin            AMX (MediaFire)            PWN (MediaFire)

Caso algum link estiver off, favor avisar neste tópico.

[Imagem: sa-mp-031.png]
--- Meus Trabalhos ---

[FilterScript] Hora e Data Simples
CharaDa_Fox

[Lançamento] Sistema Banco/Caixa Eletrônico

 Olá galera, hoje venho trazer um FS para RP/G que talvez poderá diferenciar seu servidor se o mesmo estiver criatividade.


       Esse FS é de Banco/Caixa Eletrônico poderá ter bugs
                              Obs: A versão v.2.0 estará disponível em breve aqui.

Havia postado no fórum antigo mas foi excluído..


Código:
#include <DOF2>
#include <zcmd>
#include <cpstream>

#define PASTA_CONTAS "Banco/%s.ini"
#define DIALOG_BANCO 1001
#define DIALOG_BANCO_SALDO 2001
#define DIALOG_BANCO_SAQUE 3001
#define DIALOG_BANCO_DEPOSITO 4001

public OnFilterScriptInit()
{
 print("\n---------------------------------------------------------------");
 print(" Filterscripter Banco by LuanRosa#7777 (RosaScripter)");
 print("---------------------------------------------------------------\n");
    DisableInteriorEnterExits();
}

public OnFilterScriptExit()
{
    DOF2_Exit();
 return 1;
}

public OnPlayerSpawn(playerid) {
    new aname[MAX_PLAYER_NAME], file[80];
    GetPlayerName(playerid, aname, sizeof(aname));
    format(file, sizeof(file), PASTA_CONTAS, aname);
    if(!DOF2_FileExists(file)) {
        DOF2_CreateFile(file);
        DOF2_SetInt(file, "Saldo", 500);
        GivePlayerMoney(playerid, 300);
        DOF2_SaveFile();
    }
 return 1;
}

public OnPlayerKeyStateChange(playerid, newkeys, oldkeys) {
    if(newkeys == KEY_YES) {//Apertando Y
        if(IsPlayerInRangeOfPoint(playerid, 3.0, Float:x, Float:y, Float:z)) {//Menu Banco
            ShowPlayerDialog(playerid, DIALOG_BANCO, DIALOG_STYLE_LIST, "{2fcc38}Banco", "Saldo\nSacar\nDepositar\n", "Selecionar", "Cancelar");
        }
    }
 return 1;
}

public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[]) {
    if(dialogid == DIALOG_BANCO) {
        switch(listitem) {
            case 0: { // Saldo
                if(response) {
                    new aname[MAX_PLAYER_NAME], file[80], string[200], Hora, Minuto, Segundo, Dia, Mes, Ano;
                    gettime(Hora, Minuto, Segundo);
                    getdate(Ano, Mes, Dia);
                    GetPlayerName(playerid, aname, sizeof(aname));
                    format(file, sizeof(file), PASTA_CONTAS, aname);
                    format(string, sizeof(string), "{FFFFFF}Banco {0fbefe}Nome Server\n\n\n{FFFFFF}Saldo em Conta {2fcc38}$%d \n\n{FFFFFF}Hora: {8de990}%02d:%02d:%02d \n\n{FFFFFF}Data: {8de990}%02d/%02d/%d", DOF2_GetInt(file, "Saldo"), Hora, Minuto, Segundo, Dia, Mes, Ano);
                    ShowPlayerDialog(playerid, DIALOG_BANCO_SALDO, DIALOG_STYLE_MSGBOX, "{FFFFFF}Extrato", string, "Sair", "");
                    return 1;
                }
            }
            case 1: { //Saque
                if(response) {
                    ShowPlayerDialog(playerid, DIALOG_BANCO_SAQUE, DIALOG_STYLE_INPUT, "{2fca38}Saque", "{FFFFFF}Digite a quantia em que você quer sacar", "Sacar", "Cancelar");
                }
            }
            case 2: { //Deposito
                if(response) {
                    ShowPlayerDialog(playerid, DIALOG_BANCO_DEPOSITO, DIALOG_STYLE_INPUT, "{2fca38}Deposito", "{FFFFFF}Digite a quantia em que você quer depositar", "Depositar", "Cancelar");
                }
            }
        }
        return 1;
    }
    if(dialogid == DIALOG_BANCO_SAQUE) {
        if(response) {
            new aname[MAX_PLAYER_NAME], file[80], string[250], Hora, Minuto, Segundo, Dia, Mes, Ano;
            gettime(Hora, Minuto, Segundo);
            getdate(Ano, Mes, Dia);
            GetPlayerName(playerid, aname, sizeof(aname));
            format(file, sizeof(file), PASTA_CONTAS, aname);
            if(strval(inputtext) == 0) return SendClientMessage(playerid, -1, "[x] {FF0000}Você tentou sacar 0 R$ de sua conta!");
            if(strval(inputtext) > DOF2_GetInt(file, "Saldo")) return SendClientMessage(playerid, -1, "[x] {FF0000}Você não possui saldo suficiente para saque desta quantia!");
            GivePlayerMoney(playerid, strval(inputtext));
            DOF2_SetInt(file, "Saldo", (DOF2_GetInt(file, "Saldo")-strval(inputtext)));
            DOF2_SaveFile();
            format(string, sizeof(string), "{FFFFFF}Banco {0fbefe}Nome Server\n\n\n{FFFFFF}Você sacou {2fcc38}$%d \n\n{FFFFFF}Saldo em Conta {2fcc38}$%d \n\n{FFFFFF}Hora: {8de990}%02d:%02d:%02d \n\n{FFFFFF}Data: {8de990}%02d/%02d/%d", strval(inputtext), DOF2_GetInt(file, "Saldo"), Hora, Minuto, Segundo, Dia, Mes, Ano);
            ShowPlayerDialog(playerid, DIALOG_BANCO_SALDO, DIALOG_STYLE_MSGBOX, "{FFFFFF}Saque", string, "Sair", "");
            return 1;
        }
        return 1;
    }
    if(dialogid == DIALOG_BANCO_DEPOSITO) {
        if(response) {
            new aname[MAX_PLAYER_NAME], file[80], string[250], Hora, Minuto, Segundo, Dia, Mes, Ano;
            gettime(Hora, Minuto, Segundo);
            getdate(Ano, Mes, Dia);
            GetPlayerName(playerid, aname, sizeof(aname));
            format(file, sizeof(file), PASTA_CONTAS, aname);
            if(strval(inputtext) == 0) return SendClientMessage(playerid, -1, "[x] {FF0000}Você tentou depositar 0 R$ em sua conta!");
            if(strval(inputtext) > GetPlayerMoney(playerid)) return SendClientMessage(playerid, -1, "[x] {FF0000}Você não possui está quantia em mãos para depositar!");
            GivePlayerMoney(playerid, -strval(inputtext));
            DOF2_SetInt(file, "Saldo", (DOF2_GetInt(file, "Saldo")+strval(inputtext)));
            DOF2_SaveFile();
            format(string, sizeof(string), "{FFFFFF}Banco {0fbefe}Nome Server\n\n\n{FFFFFF}Você depositou {2fcc38}$%d \n\n{FFFFFF}Saldo em Conta {2fcc38}$%d \n\n{FFFFFF}Hora: {8de990}%02d:%02d:%02d \n\n{FFFFFF}Data: {8de990}%02d/%02d/%d", strval(inputtext), DOF2_GetInt(file, "Saldo"), Hora, Minuto, Segundo, Dia, Mes, Ano);
            ShowPlayerDialog(playerid, DIALOG_BANCO_SALDO, DIALOG_STYLE_MSGBOX, "{FFFFFF}Deposito", string, "Sair", "");
            return 1;
        }
        return 1;
    }
 return 1;
}


CharaDa_Fox

[Lançamento] [FS] Sistema De Salvar Armas

 Dentro Desse Arquivo Estará Salvo Todos Slots De Arma E Munição


Sugestão: Aconselho A Mover O Fs Para Sua Gm O Código Esta Totalmente Limpo E Fácil De Adaptar Ao Seu Gamemode

OBS: O Fs Salva As armas Automaticamente Ao Deslogar E Carrega Ao Logar

Requisitos: Antes De Usar Localize Sua Pasta ( Scritpfiles ) E crie Uma Pasta Dentro Dela Chamada ( Contas )

Estarei Hospedando No Pastebin Pois Acho Melhor E Mais Fácil Para Visualização Do Código Antes Mesmo De Baixa-lo..

[FS] Aqui

Bom, Espero Que Tenha Ajudado Em Algo Big Grin  Qualquer Erro Pode Mencionar Aqui, Aceito Críticas Construtivas Qualquer Dúvida só Chamar Pm Smile
CharaDa_Fox

[Lançamento] [FS]Arma nas costas

 ARMA NAS COSTAS


Bom acho que todos já conhecem este filterscript, como o proprio nome diz ele acrecenta arma nas costas do jogador (o jogador precisa ter a arma)

Estou postando ele apenas para complementar o forúm, pois acho este FS bem útil.



Download: http://www.mediafire.com/file/iqmi5p7sge6w1zb/file



Creditos: 
XxFaTaLxX
Alguns matam, alguns roubam e outros quebram seu coração...
CharaDa_Fox

[Lançamento] Texture Studio

 [Imagem: uc?export=view&id=1p5pCpHLN9d_juteNLX887_lqEQhsJvlz]

Agora, não há desculpas para mapas não texturizados.

O que é:
Bem, é apenas um editor de mapa do jogo que permitirá que você texture até índice de material 15 (16 materiais) como bem como definir a cor desse índice de material nos objetos.

Até agora, existem apenas alguns comandos básicos de edição, já que se destinam principalmente à texturização. A ideia é que você crie seus mapas em seu editor de mapas favorito, eles podem ser importados para o Texture Studio com o comando /importmap apenas com o código de objeto CreateObject() e CreateDynamicObject() linhas são atualmente aceitas. Basta colocar seus mapas em arquivos de texto localizados na pasta /tstudio/ImportMaps/.

Sim, você precisará do textureviewer que está incluso no lançamento o comando /mtextures in game e /mtset usa esses array ids

Você pode definir quantos objetos são editáveis o padrão é 10.000 o que deve ser bom para a maioria das pessoas, definindo um valor diferente requer um recompilar.

Você pode definir os slots de material mais altos do que o padrão sendo 16, você pode aumentar isso, mas tenho certeza de que não será capaz de abrir um mapa que foi salvo em uma compilação de 16 slots. Isso ocorre porque ele salva o array no banco de dados, tenha em mente também que o SAMP só oferece suporte à re-texturização do índice 0-15, mas se isso mudar no futuro, o Texture Studio é adaptável.

Introdução ao vídeo:
https://www.youtube.com/watch?v=yk9oKoRJdds
https://www.youtube.com/watch?v=Gjr2KxMfjvQ

Comandos:
Existem atualmente 114 comandos. Consulte /thelp para obter uma lista de comandos e documentação de cada comando. Uma lista dos principais comandos e descrições curtas pode ser encontrada no readme do github (ou página principal).

Créditos:
Pottus - Criador
Crayder - Novo desenvolvedor
Y_Less - sscanf - original object model sizes - YSI
Slice - strlib - sqlitei
JaTochNietDan - Filemanager
SDraw - 3D Menu include
codectile - Objectmetry functions

Download:
Todas as novas versões só poderão ser baixadas do github localizado aqui:
https://github.com/Crayder/Texture -Studio

Wiki:
Informações de comando, uso básico e muito mais podem ser encontrados no wiki:
https://github.com/Crayder/Texture-Studio/wiki
CharaDa_Fox

[Lançamento] iFood Los Santos

 Download [1.1][/font]

Link do pastebin:[/font]
https://pastebin.com/3BRuT9zr[/font]

Download [1.0][/font]
Link do pastebin:[/font]
https://pastebin.com/TrAg8EMJ[/font]

Update 1.1:[/font]
PHP код:[/font]
Código:
+Janela de notificaзгo ('textdraw')
+Som de notificaзгo ('audiostream')
+Opзгo de aceitar corrida ('keystate') 

Comandos:[/font]
PHP код:[/font]
Código:
/ifood - habilita o 'emprego' para si prуprio/ligarapp - habilita para receber corridas/desligarapp - desabilita o recebimento de corridas/motoca - apenas para gerar a moto de entregas (config. p/ id 448, mas й modular
CharaDa_Fox

[Lançamento] Sistema de Taser

 Olá galera, hoje venho trazer um FS para RP/G que talvez poderá diferenciar seu servidor se o mesmo estiver criatividade.


       Esse FS é de Taser poderá ter bugs
                              Obs: A versão v.2.0 estará disponível em breve aqui.

Havia postado no fórum antigo mas foi excluído..
Vídeo: https://youtu.be/mke7BZbLHe4 < Final do vídeo
Código:
#define FILTERSCRIPT

#include <a_samp>
#include <zcmd>
#include <foreach>

#define TEMPO_EFEITO 10000 //10s O tempo durante o qual o jogador atingido está sob o efeito do taser.
#define TEMPO_RECARREGAR 2000 //2s O tempo após o qual o taser será dado novamente.
#define ARMA_TASER WEAPON_SILENCED // A arma que funcionará como um taser.
#define ARMA_SLOTS 2 // O slot da arma escolhida.
#define OBJETO_TASER 347 // O ID do objeto da arma escolhida.

new bool:taser[MAX_PLAYERS];
new GiveTaserAgainTimer[MAX_PLAYERS];
new lastWeapon[MAX_PLAYERS];

public OnPlayerConnect(playerid)
{
 taser[playerid] = false;
 GiveTaserAgainTimer[playerid] = 0;
 lastWeapon[playerid] = 0;

 // Pré-carregue as bibliotecas de animação usadas.
 ApplyAnimation(playerid, "SWORD", "null", 0.0, 0, 0, 0, 0, 0);
 ApplyAnimation(playerid, "CRACK", "null", 0.0, 0, 0, 0, 0, 0);
    SendClientMessage(playerid, -1, "Esse Servidor Usa Sistema De Taser De {00FF80} Rosascripter");
 return 1;
}

public OnPlayerDeath(playerid, killerid, reason)
{
 taser[playerid] = false;
 GiveTaserAgainTimer[playerid] = 0;
 lastWeapon[playerid] = 0;
    return 1;
}

public OnPlayerUpdate(playerid)
{
 new w = GetPlayerWeapon(playerid);
 if (w != lastWeapon[playerid]) OnPlayerChangeWeapon(playerid, w, lastWeapon[playerid]);
 lastWeapon[playerid] = w;
 return 1;
}

forward OnPlayerChangeWeapon(playerid, newWeap, oldWeap);
public OnPlayerChangeWeapon(playerid, newWeap, oldWeap)
{
 if (IsPlayerAttachedObjectSlotUsed(playerid, 0) && taser[playerid]) SetPlayerArmedWeapon(playerid, 0);
 return 1;
}

public OnPlayerTakeDamage(playerid, issuerid, Float:amount, weaponid, bodypart)
{
 if (weaponid == ARMA_TASER)
 {
  if (taser[issuerid])
  {
   new Float:health;
   GetPlayerHealth(playerid, health);
   SetPlayerHealth(playerid, health+amount);
  }
 }
 return 1;
}

public OnPlayerWeaponShot(playerid, weaponid, hittype, hitid, Float:fX, Float:fY, Float:fZ)
{
 if (weaponid == ARMA_TASER)
 {
  if (taser[playerid])
  {
   GiveTaserAgainTimer[playerid] = SetTimerEx("GiveTaserAgain", TEMPO_RECARREGAR, 0, "i", playerid);
   ApplyAnimation(playerid, "SWORD", "sword_block", 50.0, 0, 1, 0, 1, 1, 1);
   SetPlayerAttachedObject(playerid, 0, OBJETO_TASER, 6);
   SetPlayerArmedWeapon(playerid, 0);

   if (hittype == BULLET_HIT_TYPE_PLAYER) {
    new Float:x, Float:y, Float:z;
    GetPlayerPos(hitid, x, y, z);
    foreach(Player, i) if(IsPlayerInRangeOfPoint(i, 30.0, x, y, z)) PlayAudioStreamForPlayer(i, "https://a.clyp.it/b0w3dcsr.mp3", x, y, z, 30.0, 1);
    ApplyAnimation(hitid, "CRACK", "crckdeth2", 4.1, 0, 1, 1, 1, TEMPO_EFEITO, 1);
    SetPlayerDrunkLevel(hitid, 5000);
    SetTimerEx("EndTaserEffect", TEMPO_EFEITO, 0, "i", hitid);
   }
  }
 }
 return 1;
}

forward EndTaserEffect(playerid);
public EndTaserEffect(playerid)
{
 new skin = GetPlayerSkin(playerid);
 SetPlayerSkin(playerid, skin);
 ClearAnimations(playerid, 1);
 SetPlayerDrunkLevel(playerid, 0);
 return 1;
}

7/19/2020

CharaDa_Fox

[GAMEMODE] Z Nation – DayZ & Battle Royale (0.3DL) – [2020]

Z Nation – DayZ & Battle Royale

É uma gamemode de DayZ & Battle Royale muito épica multilíngue (Português Brazil, Inglês e Espanhol)!
Esse gamemode está na versão 0.3-DL, contém alguns bugs, mas nada complicado de se resolver, qualquer duvida ou problema de utilização é só pedir informação nos comentários.
É uma gamemode perfeita para quem gosta de servidor de sobrevivencia, etc…
Possui sistemas únicos e dinâmicos.

Baixem o SAMP 0.3DL para conseguir entrar na gamemode, “CLIQUE AQUI”.
AVISO: MANTENHA OS CRÉDITOS, O ESFORÇO NÃO FOI SEU, SEU ZÉ RUELA! 😉
Sistema
  • Registro e Login em SQLite
  • Zombie Dinâmico
  • Inventário em Texdrawn(PERSON)
  • Criação e Invasão de Bases
  • Grupo
  • Craft
  • Spawn
  • Aleatório
  • Loja de Skin’s
  • Áreas Radioativas
  • Plantação de Árvore Dinâmica com Frutas para Alimentação
  • Mineração e ETC

Comandos admins
  • Trabalhar como admin – > ‘/atrabalhoex’
  • Virar admin com RCON – > ‘/getadmin’
  • Dar admin ‘/daradmin’
Para mais comandos olhe as pastas > ‘modulos/comandos’

Imagens

Download

https://www.acesselink.com/gnZPU6er1b

Créditos

Criado por: dimmy_scarface
Proprietário real: Andriel Schulz
CharaDa_Fox

[Game-Mode]Brasil Play Slayers

Olá, hoje estou trazendo uma das melhores game-modes atualmente do SA:MP RPG, espero que gostem, bom uso da mesma.
           

Informações:

Sistema de inventario
Sistema de contrato hospitalar
Sistema de caixinha
Sistema de fome e sede
Sistema /menucash
Chat noob
/Admins /helpers /lideres /sublideres em dialog

Imagens:





Download:

https://www.acesselink.com/fVYsU3GKx7

CharaDa_Fox

[FILTERSCRIPT]NOVO SISTEMA DE WHITELIST - SAMP ANDROID RP [FS]

Muito Obrigado Por Assistir Comente e Deixe o Like Se escreve no Canal
[💎FOX] Meu Discord: https://discord.gg/bjC3Cwv
[💎FOX] Blog: https://portalfoxoficial.blogspot.com/ :D
[💎FOX] Filterscript do Sistema : https://www.acesselink.com/RSzr0cvUjv
[💎FOX] Inscreva-se Para novos conteudos 😉

7/15/2020

CharaDa_Fox

[GAMEMODE] Nova Base – RPG / RP

RPG de base / RP


Essa é uma boa base, realmente ta bem estruturada, tem profissões, tem como missões da profissão.
Quem deseja um servidor é uma boa base para o administrador.

Sistemas

Sistema de autenticação
Sistema de empregos
Niveis de Admin
Sistema de habilitação pela auto escola
Loja de utilitários
Sistema de banco e caixas eletrônicas
Sistema de compra e venda de imóveis
Sistema de radares
Sistema de combustível

Profissões (que possuem sistemas)

Gari
Pizza Boy
MecânicoMoto BoyPescador
Correios
Moto Táxi
Entregador
Taxistas
Policia Militar

Comandos

/ setadmin> use antes “/ rcon login admin”
/ setlevel
/ setskin
/ setmoney
/ setprocurado

Imagens





https://www.sendspace.com/file/ve8w4b

6/14/2020

CharaDa_Fox

NOVO APK COM TEXTDRAW AUDIOSTREAM


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
CharaDa_Fox

A MELHOR DATA MODIFICADA LEVE PRA CIVIS , ANT CRASH SEM LAG !!!




DATA ADRENO
DATA MALI

DATA POWER VR

se fica dando bug de textura só coloca isso mod gráfico
https://www.youtube.com/channel/UCj34BYp4uYjVkyleBhbQF1g

6/10/2020

CharaDa_Fox

NOVO APK UNIVERSAL TEXTDRAW BOTOES SUPORTE PARA TEXTDRAW


TRAZENDO NOVO APK PARA VOCÊS GALERA UNIVERSAL COMPARTIVEL COM QUALQUER CELULAR ATUALIZADO  E DESBUGADO  BAIXEM ANTES QUE DERUBEM

https://www.mediafire.com/file/zrlibcpdqeox7m1/SAMPOPTIMIZER.zip/file

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