| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604 |
- #include <a_samp>
- public OnFilterScriptInit()
- {
- new tmpobjid;
- tmpobjid = CreateObject(19447, -3254.824707, -498.777862, 45.847000, -0.000007, 180.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.160156, -498.777770, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3250.097412, -503.679840, 45.847023, 0.000000, 180.000000, 450.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.201416, -503.679809, 45.847023, 0.000000, 180.000000, 89.999931, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3230.834716, -503.679840, 45.847023, 0.000000, 180.000000, 450.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
- tmpobjid = CreateObject(19447, -3240.465576, -503.679840, 45.847023, 0.000000, 180.000000, 450.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
- tmpobjid = CreateObject(19447, -3201.938720, -503.679809, 45.847023, 0.000000, 180.000000, 89.999931, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3211.569580, -503.679809, 45.847023, 0.000000, 180.000000, 89.999931, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.661621, -498.777770, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.012939, -498.777862, 45.847000, -0.000007, 180.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.823730, -498.777862, 45.847000, -0.000007, 180.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3254.824707, -498.777862, 49.341033, -0.000007, 180.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3247.595947, -499.377899, 45.847000, -0.000007, 180.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
- tmpobjid = CreateObject(19447, -3268.358398, -472.443145, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3255.637939, -431.787628, 46.864955, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3247.595947, -499.377899, 49.344032, -0.000007, 180.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
- tmpobjid = CreateObject(18762, -3253.823242, -494.451171, 48.588497, 0.000000, 0.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "breezewall", 0x00000000);
- tmpobjid = CreateObject(18762, -3254.821533, -494.451171, 48.588497, 0.000000, 0.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "breezewall", 0x00000000);
- tmpobjid = CreateObject(18762, -3247.979248, -494.451171, 48.588497, 0.000000, 0.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "breezewall", 0x00000000);
- tmpobjid = CreateObject(18762, -3248.977539, -494.451171, 48.588497, 0.000000, 0.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "breezewall", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.201416, -503.679809, 49.341056, 0.000000, 180.000000, 89.999931, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3201.938720, -503.679809, 49.341056, 0.000000, 180.000000, 89.999931, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3211.569580, -503.679809, 49.341056, 0.000000, 180.000000, 89.999931, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3195.979980, -501.090118, 45.847023, 0.000007, 180.000000, 134.999908, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3182.359375, -487.469329, 45.847023, 0.000007, 180.000000, 134.999908, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3250.097412, -503.679840, 49.341056, 0.000000, 180.000000, 450.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3189.169433, -494.279388, 45.847023, 0.000007, 180.000000, 134.999908, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3230.834716, -503.679840, 49.341056, 0.000000, 180.000000, 450.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
- tmpobjid = CreateObject(19447, -3240.465576, -503.679840, 49.341056, 0.000000, 180.000000, 450.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
- tmpobjid = CreateObject(19447, -3195.979980, -501.090118, 49.341056, 0.000007, 180.000000, 134.999908, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3182.359375, -487.469329, 49.341056, 0.000007, 180.000000, 134.999908, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.012939, -498.777862, 49.341033, -0.000007, 180.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.823730, -498.777862, 49.341033, -0.000007, 180.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3189.169433, -494.279388, 49.341056, 0.000007, 180.000000, 134.999908, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3180.169677, -480.911010, 45.847023, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3180.169677, -461.648437, 45.847023, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3180.169677, -471.279296, 45.847023, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3180.169677, -480.911010, 49.341056, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3180.169677, -461.648437, 49.341056, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3180.169677, -471.279296, 49.341056, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3180.169677, -452.019134, 45.847023, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3180.169677, -432.756561, 45.847023, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3180.169677, -442.387420, 45.847023, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3180.169677, -452.019134, 49.341056, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3180.169677, -432.756561, 49.341056, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3180.169677, -442.387420, 49.341056, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3246.361328, -498.777770, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14534, "ab_wooziea", "ab_tileDiamond", 0x00000000);
- tmpobjid = CreateObject(19447, -3270.979980, -487.577514, 45.847023, 0.000012, 180.000000, -135.000137, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3264.169921, -494.387542, 45.847023, 0.000012, 180.000000, -135.000137, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.862792, -498.777770, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14534, "ab_wooziea", "ab_tileDiamond", 0x00000000);
- tmpobjid = CreateObject(19447, -3270.979980, -487.577514, 49.341056, 0.000012, 180.000000, -135.000137, 300.00);
- SetObjectMaterial(tmpobjid, 0, 4830, "airport2", "sw_shedwall02", 0x00000000);
- tmpobjid = CreateObject(19447, -3264.169921, -494.387542, 49.341056, 0.000012, 180.000000, -135.000137, 300.00);
- SetObjectMaterial(tmpobjid, 0, 4830, "airport2", "sw_shedwall02", 0x00000000);
- tmpobjid = CreateObject(19447, -3259.538330, -494.387847, 45.847023, 0.000007, 180.000000, -90.000213, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3239.365234, -498.777770, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14534, "ab_wooziea", "ab_tileDiamond", 0x00000000);
- tmpobjid = CreateObject(19447, -3235.866699, -498.777770, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14534, "ab_wooziea", "ab_tileDiamond", 0x00000000);
- tmpobjid = CreateObject(19447, -3259.538330, -494.387847, 49.341056, 0.000007, 180.000000, -90.000213, 300.00);
- SetObjectMaterial(tmpobjid, 0, 4830, "airport2", "sw_shedwall02", 0x00000000);
- tmpobjid = CreateObject(19447, -3232.371826, -498.777770, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14534, "ab_wooziea", "ab_tileDiamond", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.873291, -498.777770, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14534, "ab_wooziea", "ab_tileDiamond", 0x00000000);
- tmpobjid = CreateObject(19447, -3273.169677, -461.756561, 45.847023, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3273.169677, -481.019134, 45.847023, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3273.169677, -471.388275, 45.847023, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3273.169677, -461.756561, 49.341056, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3273.169677, -481.019134, 49.341056, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 4830, "airport2", "sw_shedwall02", 0x00000000);
- tmpobjid = CreateObject(19447, -3273.169677, -471.388275, 49.341056, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3273.169677, -432.861816, 45.847023, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3273.169677, -452.124389, 45.847023, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3273.169677, -442.493530, 45.847023, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3273.169677, -432.861816, 49.341056, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3273.169677, -452.124389, 49.341056, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3273.169677, -442.493530, 49.341056, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3268.440185, -428.093078, 45.847023, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.177490, -428.093078, 45.847023, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3258.808349, -428.093078, 45.847023, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3268.440185, -428.093078, 49.341056, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.177490, -428.093078, 49.341056, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3258.808349, -428.093078, 49.341056, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3239.544189, -428.093078, 45.847023, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3220.281494, -428.093078, 45.847023, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3229.912353, -428.093078, 45.847023, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3239.544189, -428.093078, 49.341056, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3220.281494, -428.093078, 49.341056, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3229.912353, -428.093078, 49.341056, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3210.648925, -428.093078, 45.847023, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3191.386230, -428.093078, 45.847023, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3201.017089, -428.093078, 45.847023, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3210.648925, -428.093078, 49.341056, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3191.386230, -428.093078, 49.341056, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3201.017089, -428.093078, 49.341056, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3181.755371, -428.093078, 45.847023, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3181.755371, -428.093078, 49.341056, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3246.361328, -489.147033, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.862792, -489.147033, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3239.365234, -489.147033, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3235.866699, -489.147033, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3232.371826, -489.147033, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.873291, -489.147033, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3246.361328, -479.515075, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.862792, -479.515075, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3239.365234, -479.515075, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3235.866699, -479.515075, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3232.371826, -479.515075, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.873291, -479.515075, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3246.361328, -469.884338, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.862792, -469.884338, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3239.365234, -469.884338, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3235.866699, -469.884338, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3232.371826, -469.884338, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.873291, -469.884338, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3246.361328, -460.254028, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.862792, -460.254028, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3239.365234, -460.254028, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3235.866699, -460.254028, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3232.371826, -460.254028, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.873291, -460.254028, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3246.361328, -450.623291, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.862792, -450.623291, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3239.365234, -450.623291, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3235.866699, -450.623291, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3232.371826, -450.623291, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.873291, -450.623291, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3246.361328, -440.991333, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.862792, -440.991333, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3239.365234, -440.991333, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3235.866699, -440.991333, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3232.371826, -440.991333, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.873291, -440.991333, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3246.361328, -431.360595, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.862792, -431.360595, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3239.365234, -431.360595, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3235.866699, -431.360595, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3232.371826, -431.360595, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.873291, -431.360595, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3225.376953, -498.777770, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14534, "ab_wooziea", "ab_tileDiamond", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.878417, -498.777770, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3218.380859, -498.777770, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3214.882324, -498.777770, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3211.387451, -498.777770, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3207.888916, -498.777770, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3225.376953, -489.147033, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.878417, -489.147033, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3218.380859, -489.147033, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3214.882324, -489.147033, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3211.387451, -489.147033, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3207.888916, -489.147033, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3225.376953, -479.515075, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.878417, -479.515075, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3218.380859, -479.515075, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3214.882324, -479.515075, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3211.387451, -479.515075, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3207.888916, -479.515075, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3225.376953, -469.884338, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.878417, -469.884338, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3218.380859, -469.884338, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3214.882324, -469.884338, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3211.387451, -469.884338, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3207.888916, -469.884338, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3225.376953, -460.254028, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.878417, -460.254028, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3218.380859, -460.254028, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3214.882324, -460.254028, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3211.387451, -460.254028, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3207.888916, -460.254028, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3225.376953, -450.623291, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.878417, -450.623291, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3218.380859, -450.623291, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3214.882324, -450.623291, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3211.387451, -450.623291, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3207.888916, -450.623291, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3225.376953, -440.991333, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.878417, -440.991333, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3218.380859, -440.991333, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3214.882324, -440.991333, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3211.387451, -440.991333, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3207.888916, -440.991333, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3225.376953, -431.360595, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.878417, -431.360595, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3218.380859, -431.360595, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3214.882324, -431.360595, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3211.387451, -431.360595, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3207.888916, -431.360595, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3204.384765, -498.777770, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3200.886230, -498.777770, 46.862976, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3197.388671, -498.777770, 48.162952, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3193.890136, -498.777770, 48.162956, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3190.395263, -498.777770, 48.162952, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3235.866699, -479.515075, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3204.384765, -489.147033, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3200.886230, -489.147033, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3197.388671, -489.147033, 48.162952, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3193.890136, -489.147033, 48.162956, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3190.395263, -489.147033, 48.162952, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3186.896728, -489.147033, 48.162956, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3204.384765, -479.515075, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3200.886230, -479.515075, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3197.388671, -479.515075, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3193.890136, -479.515075, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3190.395263, -479.515075, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3186.896728, -479.515075, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3204.384765, -469.884338, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3200.886230, -469.884338, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3197.388671, -469.884338, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3193.890136, -469.884338, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3190.395263, -469.884338, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3186.896728, -469.884338, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3204.384765, -460.254028, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3200.886230, -460.254028, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3197.388671, -460.254028, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3193.890136, -460.254028, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3190.395263, -460.254028, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3186.896728, -460.254028, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3204.384765, -450.623291, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3200.886230, -450.623291, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3197.388671, -450.623291, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3193.890136, -450.623291, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3190.395263, -450.623291, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3186.896728, -450.623291, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3204.384765, -440.991333, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3200.886230, -440.991333, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3197.388671, -440.991333, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3193.890136, -440.991333, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3190.395263, -440.991333, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3186.896728, -440.991333, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3204.384765, -431.360595, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3200.886230, -431.360595, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3197.388671, -431.360595, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3193.890136, -431.360595, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3190.395263, -431.360595, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3186.896728, -431.360595, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3232.371826, -479.515075, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.873291, -479.515075, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3246.361328, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.862792, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3239.365234, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3235.866699, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3183.400390, -489.147033, 48.162952, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3179.901855, -489.147033, 48.162956, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3232.371826, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.873291, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3246.361328, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.862792, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3183.400390, -479.515075, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3179.901855, -479.515075, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3239.365234, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3235.866699, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3232.371826, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.862792, -488.035888, 50.830928, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3183.400390, -469.884338, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3179.901855, -469.884338, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
- tmpobjid = CreateObject(19447, -3239.365234, -488.034881, 50.832927, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3246.361328, -488.035858, 50.832927, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3235.866699, -479.515075, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3232.371826, -479.515075, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3183.400390, -460.254028, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3179.901855, -460.254028, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.873291, -479.515075, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3246.361328, -469.884338, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.862792, -469.884338, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3239.365234, -469.884338, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3183.400390, -450.623291, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3179.901855, -450.623291, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3235.866699, -469.884338, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3232.371826, -469.884338, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.873291, -469.884338, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3246.361328, -460.254028, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3183.400390, -440.991333, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3179.901855, -440.991333, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3242.862792, -460.254028, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3239.365234, -460.254028, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3235.866699, -460.254028, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3232.371826, -460.254028, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3183.400390, -431.360595, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3179.901855, -431.360595, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3228.873291, -460.254028, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3246.361328, -450.623291, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.862792, -450.623291, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3239.365234, -450.623291, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3235.866699, -450.623291, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3232.371826, -450.623291, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.873291, -450.623291, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3246.361328, -440.991333, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.862792, -440.991333, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3239.365234, -440.991333, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3235.866699, -440.991333, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3232.371826, -440.991333, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.873291, -440.991333, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3246.361328, -431.360595, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3274.340820, -489.147033, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15046, "svcunthoose", "csGarageTrolley01psd", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3273.171142, -489.144866, 46.864959, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15046, "svcunthoose", "csGarageTrolley01psd", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3242.862792, -431.360595, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3239.365234, -431.360595, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3235.866699, -431.360595, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3232.371826, -431.360595, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3274.340820, -479.515075, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15046, "svcunthoose", "csGarageTrolley01psd", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3270.842285, -479.515075, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15046, "svcunthoose", "csGarageTrolley01psd", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3228.873291, -431.360595, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.873291, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3246.361328, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.862792, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3256.851318, -469.884338, 46.859962, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3270.842285, -469.884338, 46.860961, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3230.412841, -478.401916, 45.847000, -0.000007, 180.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3230.412841, -478.401916, 49.341033, -0.000007, 180.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3184.689941, -484.419769, 46.347015, 0.000000, 180.000000, 450.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "AH_wdpanscum", 0x00000000);
- tmpobjid = CreateObject(19447, -3239.365234, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3274.340820, -460.254028, 46.859958, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3270.842285, -460.254028, 46.859962, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3235.866699, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3232.371826, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3194.320800, -484.419769, 46.347015, 0.000000, 180.000000, 450.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "AH_wdpanscum", 0x00000000);
- tmpobjid = CreateObject(19447, -3199.050537, -489.325134, 46.347015, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "AH_wdpanscum", 0x00000000);
- tmpobjid = CreateObject(19447, -3274.340820, -450.623291, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3270.842285, -450.623291, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3199.050537, -498.955993, 46.347015, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "AH_wdpanscum", 0x00000000);
- tmpobjid = CreateObject(19447, -3225.376953, -479.515075, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.878417, -479.515075, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3218.380859, -479.515075, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3258.727539, -472.443145, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3273.123779, -431.787628, 46.864959, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3180.169677, -471.279296, 52.839080, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3180.169677, -480.911010, 52.839080, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3182.359375, -487.469329, 52.839080, 0.000007, 180.000000, 134.999908, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3225.376953, -469.884338, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3268.358398, -472.443145, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3258.727539, -472.443145, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.878417, -469.884338, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3218.380859, -469.884338, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3189.169433, -494.279388, 52.839080, 0.000007, 180.000000, 134.999908, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3195.979980, -501.090118, 52.839080, 0.000007, 180.000000, 134.999908, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3201.938720, -503.679809, 52.839080, 0.000000, 180.000000, 89.999931, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3225.376953, -460.254028, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3269.674804, -489.146820, 46.864955, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15046, "svcunthoose", "csGarageTrolley01psd", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3266.176269, -489.647064, 46.864959, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15046, "svcunthoose", "csGarageTrolley01psd", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3262.678710, -489.647064, 46.864955, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14651, "ab_trukstpd", "Bow_bar_flooring", 0x00000000);
- tmpobjid = CreateObject(19447, -3259.180175, -489.647064, 46.864959, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14651, "ab_trukstpd", "Bow_bar_flooring", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.356445, -489.147033, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.857910, -489.147033, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3267.345947, -479.515075, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15046, "svcunthoose", "csGarageTrolley01psd", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3266.176269, -480.015106, 46.864959, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15046, "svcunthoose", "csGarageTrolley01psd", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3262.678710, -480.015106, 46.864955, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14651, "ab_trukstpd", "Bow_bar_flooring", 0x00000000);
- tmpobjid = CreateObject(19447, -3259.180175, -480.015106, 46.864959, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14651, "ab_trukstpd", "Bow_bar_flooring", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.356445, -479.515075, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.857910, -479.515075, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3267.345947, -469.884338, 46.861957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3263.847412, -469.884338, 46.859962, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3260.349853, -469.884338, 46.859958, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3256.851318, -469.884338, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.356445, -469.884338, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.857910, -469.884338, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3267.345947, -460.254028, 46.859958, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3263.847412, -460.254028, 46.859962, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3260.349853, -460.254028, 46.859958, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3256.851318, -460.254028, 46.859962, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.356445, -460.254028, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.857910, -460.254028, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3267.345947, -450.623291, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3263.847412, -450.623291, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3260.349853, -450.623291, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3256.851318, -450.623291, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.356445, -450.623291, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.857910, -450.623291, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3269.627441, -431.787628, 46.864955, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3266.128906, -431.787628, 46.864959, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3262.631347, -431.787628, 46.864955, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3259.132812, -431.787628, 46.864959, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.356445, -440.991333, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.857910, -440.991333, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3268.358398, -473.482360, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3258.727539, -473.482360, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3268.358398, -473.482360, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3258.727539, -473.482360, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.356445, -431.360595, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.857910, -431.360595, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.878417, -460.254028, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3218.380859, -460.254028, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3211.569580, -503.679809, 52.839080, 0.000000, 180.000000, 89.999931, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3216.631103, -498.895233, 52.839080, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3216.631103, -489.264373, 52.839080, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3225.376953, -450.623291, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.878417, -450.623291, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3218.380859, -450.623291, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3216.631103, -479.634429, 52.839080, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3216.631103, -470.003570, 52.839080, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3211.903320, -465.097320, 52.839080, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3225.376953, -440.991333, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.878417, -440.991333, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3218.380859, -440.991333, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3202.272460, -465.097320, 52.839080, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3192.640869, -465.097320, 52.839080, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3183.010009, -465.097320, 52.839080, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3225.376953, -431.360595, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.878417, -431.360595, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3218.380859, -431.360595, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3180.169677, -461.648437, 52.838081, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3216.805664, -480.911010, 52.538032, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3216.805664, -461.648437, 52.538032, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3216.805664, -471.279296, 52.538032, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3216.805664, -480.911010, 56.032066, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3216.805664, -461.648437, 56.032066, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3216.805664, -471.279296, 56.032066, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3216.805664, -452.019134, 52.538032, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3216.805664, -432.756561, 52.538032, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3216.805664, -442.387420, 52.538032, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3216.805664, -452.019134, 56.032066, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3216.805664, -432.756561, 56.032066, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3216.805664, -442.387420, 56.032066, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3262.198730, -461.756561, 52.537044, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3262.198730, -481.019134, 52.537044, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3262.198730, -471.388275, 52.537044, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3262.198730, -461.756561, 56.031078, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3262.198730, -481.019134, 56.031078, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3262.198730, -471.388275, 56.031078, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3262.198730, -432.861816, 52.537044, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3262.198730, -452.124389, 52.537044, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3262.198730, -442.493530, 52.537044, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3262.198730, -432.861816, 56.031078, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3262.198730, -452.124389, 56.031078, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3262.198730, -442.493530, 56.031078, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3269.540283, -428.093078, 52.537044, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3250.277587, -428.093078, 52.537044, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3259.908447, -428.093078, 52.537044, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3269.540283, -428.093078, 56.031078, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3250.277587, -428.093078, 56.031078, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3259.908447, -428.093078, 56.031078, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3240.644287, -428.093078, 52.537044, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.381591, -428.090057, 52.537044, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3231.012451, -428.093078, 52.537044, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3240.644287, -428.093078, 56.031078, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.381591, -428.093078, 56.031078, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3231.012451, -428.093078, 56.031078, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3269.543212, -483.128906, 52.537044, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3250.280517, -483.128906, 52.537044, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3259.911376, -483.128906, 52.537044, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3269.543212, -483.128906, 56.031078, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3250.280517, -483.128906, 56.031078, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3259.911376, -483.128906, 56.031078, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3240.647216, -483.128906, 52.537044, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.384521, -483.128906, 52.537044, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3231.015380, -483.128906, 52.537044, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3240.647216, -483.128906, 56.031078, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.384521, -483.128906, 56.031078, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3231.015380, -483.128906, 56.031078, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.873291, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3246.361328, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.862792, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3239.365234, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3235.866699, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3232.371826, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.873291, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3246.361328, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.862792, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3239.365234, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3235.866699, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3232.371826, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.873291, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3225.376953, -479.515075, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.878417, -479.515075, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3218.380859, -479.515075, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3225.376953, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3248.198730, -479.519104, 52.537044, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3248.198730, -479.519104, 56.031078, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3246.198730, -479.519104, 52.537044, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3246.198730, -479.519104, 56.031078, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3240.198730, -479.519104, 52.537044, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3240.198730, -479.519104, 56.031078, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3237.708984, -479.519104, 52.537044, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3237.708984, -479.519104, 56.031078, -0.000003, 180.000000, -0.000209, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(18762, -3246.785156, -475.195922, 53.388515, 0.000000, 0.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(18762, -3247.618408, -475.197937, 53.388515, 0.000000, 0.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3246.361328, -479.513244, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.861816, -479.513244, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.878417, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3218.380859, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3225.376953, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.878417, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3218.380859, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3225.376953, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3239.364257, -479.511230, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(18762, -3246.785156, -475.198944, 58.188522, 0.000000, 0.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3260.349853, -479.515075, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3256.851318, -479.515075, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.356445, -479.515075, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.857910, -479.515075, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(18762, -3247.618408, -475.200958, 58.188522, 0.000000, 0.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(18762, -3238.779785, -475.195922, 53.388515, 0.000000, 0.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3260.349853, -469.884338, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3256.851318, -469.884338, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.356445, -469.884338, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.857910, -469.884338, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(18762, -3239.613037, -475.197937, 53.388515, 0.000000, 0.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(18762, -3238.779785, -475.198944, 58.188522, 0.000000, 0.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3260.349853, -460.254028, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3256.851318, -460.254028, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.356445, -460.254028, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.857910, -460.254028, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(18762, -3239.613037, -475.200958, 58.188522, 0.000000, 0.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(18762, -3238.297607, -475.193908, 53.388515, 0.000000, 0.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3260.349853, -450.623291, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3256.851318, -450.623291, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.356445, -450.623291, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.857910, -450.623291, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(18762, -3238.297607, -475.196929, 58.188522, 0.000000, 0.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3228.427734, -494.225494, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
- tmpobjid = CreateObject(19447, -3260.349853, -440.991333, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3256.851318, -440.991333, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.356445, -440.991333, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.857910, -440.991333, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.427734, -494.225494, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
- tmpobjid = CreateObject(19447, -3238.059082, -494.225494, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
- tmpobjid = CreateObject(19447, -3260.349853, -431.360595, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3256.851318, -431.360595, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.356445, -431.360595, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.857910, -431.360595, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.160156, -498.777770, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.661621, -498.777770, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3246.361328, -498.777770, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.862792, -498.777770, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3239.365234, -498.777770, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3235.866699, -498.777770, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3232.371826, -498.777770, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.873291, -498.777770, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3246.361328, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.862792, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3239.365234, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3235.866699, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3232.371826, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.873291, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3247.858642, -479.515075, 50.830928, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.878417, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3238.530517, -479.515075, 50.829929, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3235.866699, -479.515075, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3232.371826, -479.515075, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.873291, -479.515075, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3246.361328, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.862792, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3239.365234, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3235.866699, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3232.371826, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.873291, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3246.361328, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.862792, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3239.365234, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3235.866699, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3232.371826, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.873291, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3246.361328, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.862792, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3239.365234, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3235.866699, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3232.371826, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.873291, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3246.361328, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.862792, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3239.365234, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3235.866699, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3232.371826, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.873291, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3246.361328, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.862792, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3239.365234, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3235.866699, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3232.371826, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.873291, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3225.376953, -498.777770, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.878417, -498.777770, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3218.380859, -498.777770, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3214.882324, -498.777770, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3211.387451, -498.777770, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3207.888916, -498.777770, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3225.376953, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.878417, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3218.380859, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3214.882324, -489.147033, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3211.387451, -489.147033, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3207.888916, -489.147033, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3225.376953, -479.515075, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.878417, -479.515075, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3218.380859, -479.515075, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3214.882324, -479.515075, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3211.387451, -479.515075, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3207.888916, -479.515075, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3225.376953, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.878417, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3218.380859, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3214.882324, -469.884338, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3211.387451, -469.884338, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3207.888916, -469.884338, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3225.376953, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.878417, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3218.380859, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3214.882324, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3211.387451, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3207.888916, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3225.376953, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.878417, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3218.380859, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3214.882324, -450.623291, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3211.387451, -450.623291, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3207.888916, -450.623291, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3225.376953, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.878417, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3218.380859, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3214.882324, -440.991333, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3211.387451, -440.991333, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3207.888916, -440.991333, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3225.376953, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.878417, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3218.380859, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3214.882324, -431.360595, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3211.387451, -431.360595, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3207.888916, -431.360595, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3204.384765, -498.777770, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3200.886230, -498.777770, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3197.388671, -498.777770, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3193.890136, -498.777770, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3190.395263, -498.777770, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3204.384765, -489.147033, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3200.886230, -489.147033, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3197.388671, -489.147033, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3193.890136, -489.147033, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3190.395263, -489.147033, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3186.896728, -489.147033, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3204.384765, -479.515075, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3200.886230, -479.515075, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3197.388671, -479.515075, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3193.890136, -479.515075, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3190.395263, -479.515075, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3186.896728, -479.515075, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3204.384765, -469.884338, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3200.886230, -469.884338, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3197.388671, -469.884338, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3193.890136, -469.884338, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3190.395263, -469.884338, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3186.896728, -469.884338, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3204.384765, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3200.886230, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3197.388671, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3193.890136, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3190.395263, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3186.896728, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3204.384765, -450.623291, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3200.886230, -450.623291, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3197.388671, -450.623291, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3193.890136, -450.623291, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3190.395263, -450.623291, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3186.896728, -450.623291, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3204.384765, -440.991333, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3200.886230, -440.991333, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3197.388671, -440.991333, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3193.890136, -440.991333, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3190.395263, -440.991333, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3186.896728, -440.991333, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3204.384765, -431.360595, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3200.886230, -431.360595, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3197.388671, -431.360595, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3193.890136, -431.360595, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3190.395263, -431.360595, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3186.896728, -431.360595, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3183.400390, -489.147033, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3179.901855, -489.147033, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3183.400390, -479.515075, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3179.901855, -479.515075, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3183.400390, -469.884338, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3179.901855, -469.884338, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3183.400390, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3179.901855, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3183.400390, -450.623291, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3179.901855, -450.623291, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3183.400390, -440.991333, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3179.901855, -440.991333, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3183.400390, -431.360595, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3179.901855, -431.360595, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3274.340820, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3270.842285, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3274.340820, -479.515075, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3270.842285, -479.515075, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3274.340820, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3270.842285, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3274.340820, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3270.842285, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3274.340820, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3270.842285, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3274.340820, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3270.842285, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3274.340820, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3270.842285, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3267.345947, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3263.847412, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3260.349853, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3256.851318, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.356445, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.857910, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3267.345947, -479.515075, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3263.847412, -479.515075, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3260.349853, -479.515075, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3256.851318, -479.515075, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.356445, -479.515075, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.857910, -479.515075, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3267.345947, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3263.847412, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3260.349853, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3256.851318, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.356445, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.857910, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3267.345947, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3263.847412, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3260.349853, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3256.851318, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.356445, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.857910, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3267.345947, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3263.847412, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3260.349853, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3256.851318, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.356445, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.857910, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3267.345947, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3263.847412, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3260.349853, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3256.851318, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.356445, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.857910, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3267.345947, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3263.847412, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3260.349853, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3256.851318, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.356445, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.857910, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(14877, -3244.622070, -478.251678, 49.010276, 0.000000, 0.000000, 90.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14652, "ab_trukstpa", "CJ_WOOD6", 0xFFFFFFFF);
- SetObjectMaterial(tmpobjid, 1, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(14877, -3241.622802, -478.251678, 49.010276, 0.000000, 0.000000, 90.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14652, "ab_trukstpa", "CJ_WOOD6", 0xFFFFFFFF);
- SetObjectMaterial(tmpobjid, 1, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.824951, -432.995452, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.824951, -442.626312, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.824951, -432.995452, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.824951, -442.626312, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.824951, -459.123474, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.824951, -468.754333, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.824951, -459.123474, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.824951, -468.754333, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3271.571533, -454.396057, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3258.727539, -454.396057, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3271.571533, -454.396057, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3258.727539, -454.396057, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3271.571533, -455.436462, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3258.727539, -455.436462, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3271.573486, -455.436462, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3258.727539, -455.436462, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3271.569824, -446.315795, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3258.727539, -446.315795, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3271.571777, -446.315795, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3258.725585, -446.315795, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3271.569824, -447.355010, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3258.727539, -447.355010, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3271.569824, -447.355010, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3258.727539, -447.355010, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3259.132812, -441.419586, 46.864959, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3255.637939, -441.419586, 46.864955, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3262.631347, -441.419586, 46.864955, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3266.128906, -441.419586, 46.864959, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3269.627441, -441.419586, 46.864955, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.824951, -478.384277, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3273.123779, -441.419586, 46.864959, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3254.999755, -478.383331, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 4830, "airport2", "sw_shedwall02", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.824951, -478.384277, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3268.358398, -477.137939, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3258.727539, -477.137939, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3268.358398, -477.137939, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 4830, "airport2", "sw_shedwall02", 0x00000000);
- tmpobjid = CreateObject(19447, -3258.727539, -477.137939, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 4830, "airport2", "sw_shedwall02", 0x00000000);
- tmpobjid = CreateObject(19447, -3254.998535, -478.384338, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3256.851318, -450.623291, 46.859962, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.356445, -450.623291, 46.859958, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3263.847412, -450.623291, 46.859962, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3260.349853, -450.623291, 46.859958, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3267.345947, -450.623291, 46.859958, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3270.842285, -450.623291, 46.859962, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3274.340820, -450.623291, 46.859958, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.356445, -460.254028, 46.859958, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.356445, -469.884338, 46.859958, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(18762, -3263.046630, -454.961212, 48.588497, 0.000000, 0.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3267.345947, -469.884338, 46.859958, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3270.842285, -469.884338, 46.859962, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
- tmpobjid = CreateObject(19447, -3274.340820, -469.884338, 46.859958, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19447, -3255.125244, -459.123474, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3255.125244, -468.754333, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3255.125244, -459.123474, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3255.125244, -468.754333, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(18762, -3267.253662, -454.961212, 48.588497, 0.000000, 0.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(18762, -3263.047607, -446.791229, 48.588497, 0.000000, 0.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(18762, -3267.250732, -446.791229, 48.588497, 0.000000, 0.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3255.685302, -480.015106, 46.864955, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14651, "ab_trukstpd", "Bow_bar_flooring", 0x00000000);
- tmpobjid = CreateObject(19447, -3255.685302, -489.647064, 46.864955, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14651, "ab_trukstpd", "Bow_bar_flooring", 0x00000000);
- tmpobjid = CreateObject(19447, -3264.434814, -494.874084, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 4830, "airport2", "sw_shedwall02", 0x00000000);
- tmpobjid = CreateObject(19447, -3264.433593, -494.871063, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3264.434814, -485.245330, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 4830, "airport2", "sw_shedwall02", 0x00000000);
- tmpobjid = CreateObject(19447, -3264.433593, -485.242309, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19353, -3216.635498, -492.474273, 51.195766, 0.000000, 180.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3216.631103, -498.895233, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19353, -3216.625732, -489.263183, 49.339756, 0.000000, 180.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3216.631103, -498.895233, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3216.631103, -470.003570, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3216.631103, -479.634429, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3216.631103, -470.003570, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3216.631103, -479.634429, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3216.631103, -450.740692, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3192.640869, -465.097320, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3216.631103, -450.740692, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3183.010009, -465.097320, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3216.631103, -431.478881, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3216.631103, -441.109741, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3216.631103, -431.478881, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3216.631103, -441.109741, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3211.731201, -455.449249, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3202.100341, -455.449249, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3211.731201, -455.449249, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3202.100341, -455.449249, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3211.903320, -465.097320, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3202.272460, -465.097320, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3211.903320, -465.097320, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3202.272460, -465.097320, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3192.640869, -465.097320, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3183.010009, -465.097320, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3186.066162, -455.449249, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3176.435302, -455.449249, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3186.066162, -455.449249, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3176.435302, -455.449249, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(1537, -3197.888427, -428.199005, 46.942939, 0.000000, 0.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- tmpobjid = CreateObject(14394, -3212.541259, -429.272033, 47.687648, 0.000000, 0.000000, 90.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14652, "ab_trukstpa", "CJ_WOOD6", 0x00000000);
- tmpobjid = CreateObject(14394, -3192.544921, -429.272033, 47.687648, 0.000000, 0.000000, 90.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14652, "ab_trukstpa", "CJ_WOOD6", 0x00000000);
- tmpobjid = CreateObject(14394, -3204.544921, -454.247161, 47.687648, 0.000007, -0.000007, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14652, "ab_trukstpa", "CJ_WOOD6", 0x00000000);
- tmpobjid = CreateObject(14394, -3212.541015, -454.247161, 47.687648, 0.000007, -0.000007, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14652, "ab_trukstpa", "CJ_WOOD6", 0x00000000);
- tmpobjid = CreateObject(947, -3193.473632, -441.775299, 49.103691, 0.000000, 0.000000, 90.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- SetObjectMaterial(tmpobjid, 4, 3080, "adjumpx", "gen_chrome", 0x00000000);
- tmpobjid = CreateObject(19447, -3188.533447, -447.344970, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3188.533447, -447.344970, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3188.533447, -428.083160, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3188.533447, -437.714019, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3188.533447, -428.083160, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(947, -3212.473632, -441.775299, 49.103691, 0.000000, 0.000000, 270.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- SetObjectMaterial(tmpobjid, 4, 3080, "adjumpx", "gen_chrome", 0x00000000);
- tmpobjid = CreateObject(14394, -3204.544921, -429.272033, 47.687648, 0.000000, 0.000000, 90.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14652, "ab_trukstpa", "CJ_WOOD6", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.427734, -494.049713, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.427734, -494.049713, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3238.059082, -494.049713, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3246.195800, -478.400543, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3238.059082, -494.049713, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3246.195800, -478.400543, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3223.541503, -498.778564, 45.847000, -0.000007, 180.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3223.540283, -498.777557, 49.341033, -0.000007, 180.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3247.495849, -478.400543, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3247.495849, -478.400543, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3247.495849, -459.138732, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3247.495849, -468.769592, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3247.495849, -459.138732, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3247.495849, -468.769592, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3247.523681, -432.995452, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3247.523681, -442.626312, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3247.523681, -432.995452, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3247.523681, -442.626312, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3218.380859, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3225.376953, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.632324, -447.353942, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3233.001464, -447.353942, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.632324, -447.353942, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3233.001464, -447.353942, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.878417, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3218.380859, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.632324, -454.411041, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3233.001464, -454.411041, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.632324, -454.411041, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3233.001464, -454.411041, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3225.376953, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3221.878417, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.588134, -472.443084, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3232.957275, -472.443084, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.588134, -472.443084, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3232.957275, -472.443084, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3240.193603, -478.400543, 45.847011, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3240.193603, -478.400543, 49.341045, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3218.380859, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3235.318847, -483.129089, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3274.340820, -479.515075, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3235.318847, -483.129089, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3270.842285, -479.515075, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3274.340820, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3270.842285, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3274.340820, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3270.842285, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3274.340820, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3270.842285, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3274.340820, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3270.842285, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3274.340820, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3270.842285, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3267.345947, -479.515075, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3263.847412, -479.515075, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3260.349853, -479.515075, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3256.851318, -479.515075, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.356445, -479.515075, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.857910, -479.515075, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3267.345947, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3263.847412, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3260.349853, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3256.851318, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.356445, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.857910, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3267.345947, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3263.847412, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3260.349853, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3256.851318, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.356445, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.857910, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3267.345947, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3263.847412, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3260.349853, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3256.851318, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.356445, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.857910, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3267.345947, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3263.847412, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3260.349853, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3256.851318, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.356445, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.857910, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3267.345947, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3263.847412, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3260.349853, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3256.851318, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.356445, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3249.857910, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.097900, -459.138732, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.097900, -468.769592, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.097900, -459.138732, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.097900, -468.769592, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(18762, -3254.412597, -482.700256, 48.588497, 0.000000, 0.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(1472, -3183.007568, -484.559204, 47.661853, 0.000000, 0.000000, 180.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(1472, -3183.007568, -483.559265, 46.887847, 0.000000, 0.000000, 180.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(1472, -3184.511230, -484.559204, 47.661853, 0.000000, 0.000000, 180.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(1472, -3184.511230, -483.559265, 46.887847, 0.000000, 0.000000, 180.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
- tmpobjid = CreateObject(19383, -3265.149658, -446.316436, 48.701278, 0.000000, 0.000007, 89.999969, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3221.201416, -503.679809, 52.837066, 0.000000, 180.000000, 89.999931, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19353, -3216.625732, -489.263183, 45.840770, 0.000000, 0.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0xFFFFFFFF);
- tmpobjid = CreateObject(19383, -3253.846435, -484.753021, 48.698261, 0.000000, 0.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(19353, -3216.635498, -486.054138, 51.195766, 0.000000, 180.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0xFFFFFFFF);
- tmpobjid = CreateObject(1557, -3216.619628, -487.675628, 46.952999, 0.000000, 0.000000, 90.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- tmpobjid = CreateObject(1557, -3216.619628, -484.433563, 46.952999, 0.000000, 0.000000, 270.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3232.957275, -473.496154, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19383, -3265.149658, -455.426513, 48.701278, 0.000000, 0.000007, 89.999969, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3232.957275, -473.496154, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19476, -3216.502685, -486.051269, 46.881557, 90.000000, 360.000000, 360.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3216.502685, -486.051269, 47.911571, 90.000000, 360.000000, 360.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3216.502685, -486.051269, 48.938571, 90.000000, 360.000000, 360.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3216.623046, -485.931091, 46.881557, 89.999992, 514.439758, -64.439773, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3216.623046, -485.931091, 47.911571, 89.999992, 514.439758, -64.439773, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3216.623046, -485.931091, 48.938571, 89.999992, 514.439758, -64.439773, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3216.744140, -486.053131, 46.881557, 89.999992, 495.000000, 44.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3216.744140, -486.053131, 47.911571, 89.999992, 495.000000, 44.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3216.744140, -486.053131, 48.938571, 89.999992, 495.000000, 44.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3216.624023, -486.173248, 46.881557, 89.999992, 570.824584, 59.175354, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3216.624023, -486.173248, 47.911571, 89.999992, 570.824584, 59.175354, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3216.624023, -486.173248, 48.938571, 89.999992, 570.824584, 59.175354, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(1557, -3216.619628, -494.093811, 46.952999, 0.000000, 0.000000, 90.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- tmpobjid = CreateObject(1557, -3216.619628, -490.851745, 46.952999, 0.000000, 0.000000, 270.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- tmpobjid = CreateObject(19476, -3216.502685, -492.469451, 46.881557, 90.000000, 360.000000, 360.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3216.502685, -492.469451, 47.911571, 90.000000, 360.000000, 360.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3216.502685, -492.469451, 48.938571, 90.000000, 360.000000, 360.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3216.623046, -492.349273, 46.881557, 89.999992, 514.439758, -64.439773, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3216.623046, -492.349273, 47.911571, 89.999992, 514.439758, -64.439773, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3216.623046, -492.349273, 48.938571, 89.999992, 514.439758, -64.439773, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3216.744140, -492.471313, 46.881557, 89.999992, 495.000000, 44.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3216.744140, -492.471313, 47.911571, 89.999992, 495.000000, 44.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3216.744140, -492.471313, 48.938571, 89.999992, 495.000000, 44.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3216.624023, -492.591430, 46.881557, 89.999992, 570.824584, 59.175354, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3216.624023, -492.591430, 47.911571, 89.999992, 570.824584, 59.175354, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3216.624023, -492.591430, 48.938571, 89.999992, 570.824584, 59.175354, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19426, -3188.532958, -437.685943, 49.344390, 360.000000, 180.000000, 360.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3180.169677, -452.019134, 52.838069, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3180.169677, -432.756561, 52.838069, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3180.169677, -442.387420, 52.838069, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3211.725830, -428.093078, 52.838069, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3192.463134, -428.093078, 52.838069, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3202.093994, -428.093078, 52.838069, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3182.832275, -428.093078, 52.838069, -0.000003, 180.000000, 89.999763, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3216.631103, -450.740692, 52.838069, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3216.631103, -431.478881, 52.838069, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3216.631103, -441.109741, 52.838069, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3211.731201, -455.449249, 52.838069, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3202.100341, -455.449249, 52.838069, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3192.469482, -455.449249, 52.838069, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3182.838867, -455.449249, 52.836067, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3188.533935, -451.823425, 52.838069, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3188.533935, -432.560852, 52.838069, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3188.533935, -442.191711, 52.838069, 0.000012, 180.000000, 179.999862, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(1557, -3194.060058, -455.435760, 46.952999, 0.000007, 0.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- tmpobjid = CreateObject(1557, -3197.302001, -455.435760, 46.952999, -0.000007, 0.000000, -0.000007, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- tmpobjid = CreateObject(19476, -3195.684326, -455.318817, 46.881557, 89.999992, 450.000000, -0.000022, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3195.684326, -455.318817, 47.911571, 89.999992, 450.000000, -0.000022, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3195.684326, -455.318817, 48.938571, 89.999992, 450.000000, -0.000022, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3195.804443, -455.439178, 46.881557, 89.999992, 526.613586, 13.386374, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3195.804443, -455.439178, 47.911571, 89.999992, 526.613586, 13.386374, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3195.804443, -455.439178, 48.938571, 89.999992, 526.613586, 13.386374, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3195.682373, -455.560272, 46.881557, 89.999992, 585.000000, 44.999935, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3195.682373, -455.560272, 47.911571, 89.999992, 585.000000, 44.999935, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3195.682373, -455.560272, 48.938571, 89.999992, 585.000000, 44.999935, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3195.562255, -455.440155, 46.881557, 89.999992, 660.824584, 59.175319, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3195.562255, -455.440155, 47.911571, 89.999992, 660.824584, 59.175319, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19476, -3195.562255, -455.440155, 48.938571, 89.999992, 660.824584, 59.175319, 300.00);
- SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
- tmpobjid = CreateObject(19353, -3195.693359, -455.455383, 51.197769, 0.000000, 180.000000, 90.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0xFFFFFFFF);
- tmpobjid = CreateObject(19353, -3192.485839, -455.448364, 49.345752, 0.000000, 180.000000, 90.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0xFFFFFFFF);
- tmpobjid = CreateObject(19353, -3192.485839, -455.448364, 45.846725, 0.000000, 180.000000, 90.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0xFFFFFFFF);
- tmpobjid = CreateObject(19353, -3188.537597, -453.767395, 52.193782, 0.000000, 180.000000, 180.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(19383, -3188.531982, -453.758697, 48.699279, 0.000000, 0.000007, 179.999969, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(19353, -3188.529785, -453.767395, 52.193782, 0.000000, 180.000000, 180.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(19353, -3265.147949, -446.317199, 52.188785, 0.000000, 180.000000, 270.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(19353, -3253.846191, -484.752960, 52.188785, 0.000000, 180.000000, 360.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(19353, -3265.147949, -455.427001, 52.188785, 0.000000, 180.000000, 270.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3253.824951, -491.173065, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(19447, -3254.999755, -491.172119, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 4830, "airport2", "sw_shedwall02", 0x00000000);
- tmpobjid = CreateObject(19447, -3253.824951, -491.173065, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
- tmpobjid = CreateObject(19447, -3254.998535, -491.173126, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
- tmpobjid = CreateObject(18762, -3254.412597, -486.857360, 48.588497, 0.000000, 0.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(19383, -3264.432617, -478.827056, 48.698261, 0.000000, 0.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(19353, -3264.432373, -478.826995, 52.188785, 0.000000, 180.000000, 360.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(18762, -3246.611816, -482.700256, 48.588497, 0.000000, 0.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(18762, -3247.012207, -482.700256, 48.588497, 0.000000, 0.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(19353, -3251.406982, -503.676208, 48.640747, 0.000000, 0.000000, 270.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 8391, "ballys01", "vgncorpdoor1_512", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3238.059082, -494.225494, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
- tmpobjid = CreateObject(19447, -3225.541503, -499.128234, 45.847000, -0.000007, 180.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
- tmpobjid = CreateObject(19447, -3225.540283, -499.127227, 49.341033, -0.000007, 180.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
- tmpobjid = CreateObject(2412, -3249.839599, -494.076385, 47.028198, 0.000000, 0.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- tmpobjid = CreateObject(2412, -3252.258056, -494.076385, 47.028198, 0.000000, 0.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- tmpobjid = CreateObject(19447, -3242.898193, -503.674896, 49.341056, 0.000000, 180.000000, 450.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.896728, -503.674896, 49.341056, 0.000000, 180.000000, 450.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
- tmpobjid = CreateObject(19447, -3228.896728, -503.674896, 45.841049, 0.000000, 180.000000, 450.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
- tmpobjid = CreateObject(19447, -3242.898193, -503.674896, 45.841049, 0.000000, 180.000000, 450.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
- tmpobjid = CreateObject(19383, -3244.479003, -494.049041, 48.698261, 0.000000, 0.000007, 89.999969, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(19353, -3244.479003, -494.048797, 52.188785, -0.000000, 180.000000, 89.999969, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(19383, -3253.846435, -484.928924, 48.698261, 0.000000, 0.000000, 0.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(19353, -3253.846191, -484.928863, 52.188785, 0.000000, 180.000000, 360.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(19383, -3244.479003, -494.224945, 48.698261, 0.000000, 0.000007, 89.999969, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(19353, -3244.479003, -494.224700, 52.188785, -0.000000, 180.000000, 89.999969, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
- tmpobjid = CreateObject(19353, -3246.925048, -494.052093, 49.339756, 0.000000, 180.000000, 89.999969, 300.00);
- SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0xFFFFFFFF);
- tmpobjid = CreateObject(19353, -3246.925048, -494.052093, 45.839771, 0.000000, 0.000007, 89.999969, 300.00);
- SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0xFFFFFFFF);
- tmpobjid = CreateObject(19353, -3246.925048, -494.221008, 49.339756, 0.000000, 180.000000, 89.999969, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0xFFFFFFFF);
- tmpobjid = CreateObject(19353, -3246.925048, -494.221008, 45.845767, 0.000000, 180.000000, 89.999969, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0xFFFFFFFF);
- tmpobjid = CreateObject(19353, -3196.631835, -429.083190, 46.763759, 0.000007, 180.000000, 179.999923, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14652, "ab_trukstpa", "CJ_WOOD6", 0x00000000);
- tmpobjid = CreateObject(19353, -3200.459472, -429.083190, 46.763759, 0.000007, 180.000000, 179.999923, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14652, "ab_trukstpa", "CJ_WOOD6", 0x00000000);
- tmpobjid = CreateObject(19353, -3200.459472, -454.340209, 46.763759, 0.000007, 180.000000, 179.999923, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14652, "ab_trukstpa", "CJ_WOOD6", 0x00000000);
- tmpobjid = CreateObject(19353, -3208.631835, -429.083190, 46.763759, 0.000007, 180.000000, 179.999923, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14652, "ab_trukstpa", "CJ_WOOD6", 0x00000000);
- tmpobjid = CreateObject(19353, -3208.459472, -454.340209, 46.763759, 0.000007, 180.000000, 179.999923, 300.00);
- SetObjectMaterial(tmpobjid, 0, 14652, "ab_trukstpa", "CJ_WOOD6", 0x00000000);
- tmpobjid = CreateObject(19353, -3220.136718, -503.676208, 48.640747, 0.000000, 0.000000, 630.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 8391, "ballys01", "vgncorpdoor1_512", 0xFFFFFFFF);
- tmpobjid = CreateObject(19353, -3180.173828, -460.276245, 48.640747, 0.000000, 0.000000, 720.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 8391, "ballys01", "vgncorpdoor1_512", 0xFFFFFFFF);
- tmpobjid = CreateObject(19353, -3273.166748, -450.776214, 48.640747, 0.000000, 0.000000, 900.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 8391, "ballys01", "vgncorpdoor1_512", 0xFFFFFFFF);
- tmpobjid = CreateObject(19353, -3250.647216, -428.097198, 48.640747, 0.000000, 0.000000, 1170.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, 8391, "ballys01", "vgncorpdoor1_512", 0xFFFFFFFF);
- tmpobjid = CreateObject(1714, -3272.115966, -430.860198, 46.942527, 0.000000, 0.000000, 405.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- tmpobjid = CreateObject(1963, -3271.764404, -435.479064, 47.337482, 0.000000, 0.000000, 180.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- SetObjectMaterial(tmpobjid, 1, 14385, "trailerkb", "tr_kit_3a", 0x00000000);
- SetObjectMaterial(tmpobjid, 2, 14385, "trailerkb", "tr_wood1", 0x00000000);
- tmpobjid = CreateObject(1963, -3267.264404, -435.479064, 47.337482, 0.000000, 0.000000, 180.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- SetObjectMaterial(tmpobjid, 1, 14385, "trailerkb", "tr_kit_3a", 0x00000000);
- SetObjectMaterial(tmpobjid, 2, 14385, "trailerkb", "tr_wood1", 0x00000000);
- tmpobjid = CreateObject(1963, -3262.764404, -435.479064, 47.337482, 0.000000, 0.000000, 180.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- SetObjectMaterial(tmpobjid, 1, 14385, "trailerkb", "tr_kit_3a", 0x00000000);
- SetObjectMaterial(tmpobjid, 2, 14385, "trailerkb", "tr_wood1", 0x00000000);
- tmpobjid = CreateObject(1963, -3262.764404, -438.479064, 47.337482, 0.000000, 0.000000, 180.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- SetObjectMaterial(tmpobjid, 1, 14385, "trailerkb", "tr_kit_3a", 0x00000000);
- SetObjectMaterial(tmpobjid, 2, 14385, "trailerkb", "tr_wood1", 0x00000000);
- tmpobjid = CreateObject(1963, -3262.764404, -441.479064, 47.337482, 0.000000, 0.000000, 180.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- SetObjectMaterial(tmpobjid, 1, 14385, "trailerkb", "tr_kit_3a", 0x00000000);
- SetObjectMaterial(tmpobjid, 2, 14385, "trailerkb", "tr_wood1", 0x00000000);
- tmpobjid = CreateObject(1963, -3267.264404, -441.479064, 47.337482, 0.000000, 0.000000, 180.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- SetObjectMaterial(tmpobjid, 1, 14385, "trailerkb", "tr_kit_3a", 0x00000000);
- SetObjectMaterial(tmpobjid, 2, 14385, "trailerkb", "tr_wood1", 0x00000000);
- tmpobjid = CreateObject(1963, -3271.764404, -441.479064, 47.337482, 0.000000, 0.000000, 180.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- SetObjectMaterial(tmpobjid, 1, 14385, "trailerkb", "tr_kit_3a", 0x00000000);
- SetObjectMaterial(tmpobjid, 2, 14385, "trailerkb", "tr_wood1", 0x00000000);
- tmpobjid = CreateObject(1963, -3271.764404, -438.479064, 47.337482, 0.000000, 0.000000, 180.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- SetObjectMaterial(tmpobjid, 1, 14385, "trailerkb", "tr_kit_3a", 0x00000000);
- SetObjectMaterial(tmpobjid, 2, 14385, "trailerkb", "tr_wood1", 0x00000000);
- tmpobjid = CreateObject(1963, -3267.264404, -438.479064, 47.337482, 0.000000, 0.000000, 180.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- SetObjectMaterial(tmpobjid, 1, 14385, "trailerkb", "tr_kit_3a", 0x00000000);
- SetObjectMaterial(tmpobjid, 2, 14385, "trailerkb", "tr_wood1", 0x00000000);
- tmpobjid = CreateObject(1714, -3256.133789, -469.478942, 46.942527, 0.000010, 0.000000, -135.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- tmpobjid = CreateObject(1963, -3256.485351, -464.860290, 47.337482, -0.000007, -0.000007, 0.000007, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- SetObjectMaterial(tmpobjid, 1, 14385, "trailerkb", "tr_kit_3a", 0x00000000);
- SetObjectMaterial(tmpobjid, 2, 14385, "trailerkb", "tr_wood1", 0x00000000);
- tmpobjid = CreateObject(1963, -3260.985351, -464.860290, 47.337482, -0.000007, -0.000007, 0.000007, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- SetObjectMaterial(tmpobjid, 1, 14385, "trailerkb", "tr_kit_3a", 0x00000000);
- SetObjectMaterial(tmpobjid, 2, 14385, "trailerkb", "tr_wood1", 0x00000000);
- tmpobjid = CreateObject(1963, -3260.985351, -458.860290, 47.337482, -0.000007, -0.000007, 0.000007, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- SetObjectMaterial(tmpobjid, 1, 14385, "trailerkb", "tr_kit_3a", 0x00000000);
- SetObjectMaterial(tmpobjid, 2, 14385, "trailerkb", "tr_wood1", 0x00000000);
- tmpobjid = CreateObject(1963, -3256.485351, -458.860290, 47.337482, -0.000007, -0.000007, 0.000007, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- SetObjectMaterial(tmpobjid, 1, 14385, "trailerkb", "tr_kit_3a", 0x00000000);
- SetObjectMaterial(tmpobjid, 2, 14385, "trailerkb", "tr_wood1", 0x00000000);
- tmpobjid = CreateObject(1963, -3256.485351, -461.860290, 47.337482, -0.000007, -0.000007, 0.000007, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- SetObjectMaterial(tmpobjid, 1, 14385, "trailerkb", "tr_kit_3a", 0x00000000);
- SetObjectMaterial(tmpobjid, 2, 14385, "trailerkb", "tr_wood1", 0x00000000);
- tmpobjid = CreateObject(1963, -3260.985351, -461.860290, 47.337482, -0.000007, -0.000007, 0.000007, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- SetObjectMaterial(tmpobjid, 1, 14385, "trailerkb", "tr_kit_3a", 0x00000000);
- SetObjectMaterial(tmpobjid, 2, 14385, "trailerkb", "tr_wood1", 0x00000000);
- tmpobjid = CreateObject(2165, -3254.388427, -428.650329, 46.949092, 0.000000, 0.000000, 630.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- tmpobjid = CreateObject(2165, -3254.388427, -431.150329, 46.949092, 0.000000, 0.000000, 270.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- tmpobjid = CreateObject(2165, -3254.388427, -433.650329, 46.949092, 0.000000, 0.000000, 270.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- tmpobjid = CreateObject(2165, -3254.388427, -436.150329, 46.949092, 0.000000, 0.000000, 270.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- tmpobjid = CreateObject(2165, -3254.388427, -438.650329, 46.949092, 0.000000, 0.000000, 270.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- tmpobjid = CreateObject(2165, -3254.388427, -441.150329, 46.949092, 0.000000, 0.000000, 270.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- tmpobjid = CreateObject(2165, -3254.388427, -443.650329, 46.949092, 0.000000, 0.000000, 270.000000, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- tmpobjid = CreateObject(2165, -3272.607666, -471.890716, 46.949092, -0.000007, 0.000007, 89.999961, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- tmpobjid = CreateObject(2165, -3272.607666, -469.390716, 46.949092, -0.000007, 0.000007, 89.999961, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- tmpobjid = CreateObject(2165, -3272.607666, -466.890716, 46.949092, -0.000007, 0.000007, 89.999961, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- tmpobjid = CreateObject(2165, -3272.607666, -464.390716, 46.949092, -0.000007, 0.000007, 89.999961, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- tmpobjid = CreateObject(2165, -3272.607666, -461.890716, 46.949092, -0.000007, 0.000007, 89.999961, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- tmpobjid = CreateObject(2165, -3272.607666, -459.390716, 46.949092, -0.000007, 0.000007, 89.999961, 300.00);
- SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
- /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
- tmpobjid = CreateObject(11729, -3253.492187, -463.558959, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -464.218627, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -462.239135, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -462.899078, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -460.919067, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -461.578735, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -459.599243, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -460.259155, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -471.475799, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -472.135742, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -470.155731, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -470.815399, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -468.835906, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -469.495819, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -458.281372, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -458.941040, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -456.961517, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -457.621215, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -455.641479, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -456.301147, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -467.518035, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -468.177703, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -466.198181, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -466.857879, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -464.878143, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -465.537811, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -480.975799, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -481.635742, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -479.655731, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -480.315399, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -478.335906, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -478.995819, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -464.218200, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -463.558532, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -465.538024, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -464.878112, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -466.858093, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -466.198425, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -468.177917, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -467.518005, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -456.301452, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -455.641540, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -457.621520, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -456.961853, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -458.941345, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -458.281433, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -469.495788, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -468.836120, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -470.815612, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -470.155944, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -472.135681, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -471.476013, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -460.259216, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -459.599548, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -461.579040, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -460.919372, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -462.899108, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -462.239440, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -481.364013, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -480.704345, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -482.023925, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -473.447265, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -472.787353, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -474.767333, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -474.107666, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -476.087158, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -475.427246, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -477.405029, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -476.745361, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -478.724853, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -478.065185, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -480.044921, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -479.385253, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -438.218200, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -437.558532, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -439.538024, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -438.878112, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -440.858093, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -440.198425, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -442.177917, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -441.518005, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -430.301452, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -429.641540, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -431.621520, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -430.961853, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -432.941345, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -432.281433, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -443.495788, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -442.836120, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -444.815612, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -444.155944, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -446.135681, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -445.476013, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -434.259216, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -433.599548, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -435.579040, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -434.919372, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -436.899108, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3247.819824, -436.239440, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -437.559020, 46.763698, 0.000000, 0.000006, 89.999778, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -438.218688, 46.763702, 0.000000, 0.000006, 89.999778, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -436.239196, 46.763702, 0.000000, 0.000006, 89.999778, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -436.899108, 46.763698, 0.000000, 0.000006, 89.999778, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -434.919128, 46.763698, 0.000000, 0.000006, 89.999778, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -435.578796, 46.763698, 0.000000, 0.000006, 89.999778, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -433.599304, 46.763702, 0.000000, 0.000006, 89.999778, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -434.259216, 46.763702, 0.000000, 0.000006, 89.999778, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -445.475769, 46.763702, 0.000000, 0.000006, 89.999778, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -446.135681, 46.763698, 0.000000, 0.000006, 89.999778, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -444.155700, 46.763698, 0.000000, 0.000006, 89.999778, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -444.815368, 46.763698, 0.000000, 0.000006, 89.999778, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -442.835876, 46.763702, 0.000000, 0.000006, 89.999778, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -443.495788, 46.763702, 0.000000, 0.000006, 89.999778, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -432.281433, 46.763706, 0.000000, 0.000006, 89.999778, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -432.941101, 46.763706, 0.000000, 0.000006, 89.999778, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -430.961608, 46.763706, 0.000000, 0.000006, 89.999778, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -431.621276, 46.763698, 0.000000, 0.000006, 89.999778, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -429.641540, 46.763702, 0.000000, 0.000006, 89.999778, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -430.301208, 46.763706, 0.000000, 0.000006, 89.999778, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -441.518005, 46.763706, 0.000000, 0.000006, 89.999778, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -442.177673, 46.763706, 0.000000, 0.000006, 89.999778, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -440.198181, 46.763706, 0.000000, 0.000006, 89.999778, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -440.857849, 46.763698, 0.000000, 0.000006, 89.999778, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -438.878112, 46.763702, 0.000000, 0.000006, 89.999778, 300.00);
- tmpobjid = CreateObject(11729, -3253.492187, -439.537780, 46.763706, 0.000000, 0.000006, 89.999778, 300.00);
- tmpobjid = CreateObject(3034, -3213.225341, -503.591766, 52.556037, 0.000000, 0.000000, 180.000000, 300.00);
- tmpobjid = CreateObject(3034, -3208.081542, -503.591766, 52.556037, 0.000000, 0.000000, 180.000000, 300.00);
- tmpobjid = CreateObject(3034, -3202.938720, -503.591766, 52.556037, 0.000000, 0.000000, 180.000000, 300.00);
- tmpobjid = CreateObject(3034, -3180.258056, -478.798950, 52.556037, 0.000000, -0.000007, -90.000137, 300.00);
- tmpobjid = CreateObject(3034, -3180.258056, -473.655120, 52.556037, 0.000000, -0.000007, -90.000137, 300.00);
- tmpobjid = CreateObject(3034, -3180.258056, -468.512298, 52.556037, 0.000000, -0.000007, -90.000137, 300.00);
- tmpobjid = CreateObject(1649, -3188.620849, -435.119232, 47.756046, 0.000000, 0.000000, 270.000000, 300.00);
- tmpobjid = CreateObject(1649, -3188.446044, -435.119232, 47.756046, 0.000000, 0.000000, 450.000000, 300.00);
- tmpobjid = CreateObject(1649, -3188.620849, -440.313262, 47.756046, 0.000000, 0.000000, 270.000000, 300.00);
- tmpobjid = CreateObject(1649, -3188.446044, -440.313262, 47.756046, 0.000000, 0.000000, 450.000000, 300.00);
- tmpobjid = CreateObject(1649, -3188.620849, -435.119232, 51.087043, 0.000000, 0.000000, 270.000000, 300.00);
- tmpobjid = CreateObject(1649, -3188.446044, -435.119232, 51.087043, 0.000000, 0.000000, 450.000000, 300.00);
- tmpobjid = CreateObject(1649, -3188.620849, -440.313262, 51.087043, 0.000000, 0.000000, 270.000000, 300.00);
- tmpobjid = CreateObject(1649, -3188.446044, -440.313262, 51.087043, 0.000000, 0.000000, 450.000000, 300.00);
- tmpobjid = CreateObject(11729, -3207.810058, -455.768493, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3208.469726, -455.768493, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3206.490234, -455.768493, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3207.150146, -455.768493, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3205.170166, -455.768493, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3205.829833, -455.768493, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3203.850341, -455.768493, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3204.510253, -455.768493, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3216.967041, -475.476959, 46.763698, 0.000007, -0.000000, -90.000259, 300.00);
- tmpobjid = CreateObject(11729, -3216.967041, -474.817291, 46.763702, 0.000007, -0.000000, -90.000259, 300.00);
- tmpobjid = CreateObject(11729, -3214.406738, -455.768493, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3215.066406, -455.768493, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3213.086914, -455.768493, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3213.746826, -455.768493, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3202.532470, -455.768493, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3203.192138, -455.768493, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3201.212646, -455.768493, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3201.872314, -455.768493, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3199.892578, -455.768493, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3200.552246, -455.768493, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3211.769042, -455.768493, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3212.428710, -455.768493, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3210.449218, -455.768493, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3211.108886, -455.768493, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3209.129150, -455.768493, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3209.788818, -455.768493, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3183.680419, -455.768493, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3184.340087, -455.768493, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3182.360595, -455.768493, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3183.020507, -455.768493, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3181.700195, -455.768493, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3190.276855, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3191.597167, -455.768493, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3192.257080, -455.768493, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3190.277099, -455.768493, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3190.936767, -455.768493, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3188.957275, -455.768493, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3189.617187, -455.768493, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3189.617187, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3191.596679, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3190.936523, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3192.256835, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3182.359863, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3181.700195, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3187.639404, -455.768493, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3188.299072, -455.768493, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3186.319580, -455.768493, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3186.979248, -455.768493, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3184.999511, -455.768493, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3185.659179, -455.768493, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3183.680175, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3183.020507, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3185.000000, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3184.339843, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3186.317871, -464.778625, 46.763706, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3185.658203, -464.778625, 46.763706, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3187.637695, -464.778625, 46.763706, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3186.978027, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3188.957519, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3188.297851, -464.778625, 46.763706, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3201.491455, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3200.831787, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3202.811279, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3202.151123, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3203.471435, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3193.574462, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3192.914794, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3194.894775, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3194.235107, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3196.214599, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3195.554443, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3197.532470, -464.778625, 46.763706, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3196.872802, -464.778625, 46.763706, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3198.852294, -464.778625, 46.763706, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3198.192626, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3200.172119, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3199.512451, -464.778625, 46.763706, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3212.705810, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3212.046142, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3214.025634, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3213.365478, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3214.685791, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3204.788818, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3204.129150, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3206.109130, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3205.449462, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3207.428955, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3206.768798, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3208.746826, -464.778625, 46.763706, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3208.087158, -464.778625, 46.763706, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3210.066650, -464.778625, 46.763706, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3209.406982, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3211.386474, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3210.726806, -464.778625, 46.763706, 0.000007, 0.000007, 179.999725, 300.00);
- tmpobjid = CreateObject(11729, -3216.967041, -476.796783, 46.763702, 0.000007, -0.000000, -90.000259, 300.00);
- tmpobjid = CreateObject(11729, -3216.967041, -476.136627, 46.763698, 0.000007, -0.000000, -90.000259, 300.00);
- tmpobjid = CreateObject(11729, -3216.967041, -477.456939, 46.763698, 0.000007, -0.000000, -90.000259, 300.00);
- tmpobjid = CreateObject(11729, -3216.967041, -467.559967, 46.763702, 0.000007, -0.000000, -90.000259, 300.00);
- tmpobjid = CreateObject(11729, -3216.967041, -466.900299, 46.763698, 0.000007, -0.000000, -90.000259, 300.00);
- tmpobjid = CreateObject(11729, -3216.967041, -468.880279, 46.763698, 0.000007, -0.000000, -90.000259, 300.00);
- tmpobjid = CreateObject(11729, -3216.967041, -468.220611, 46.763698, 0.000007, -0.000000, -90.000259, 300.00);
- tmpobjid = CreateObject(11729, -3216.967041, -470.200103, 46.763702, 0.000007, -0.000000, -90.000259, 300.00);
- tmpobjid = CreateObject(11729, -3216.967041, -469.539947, 46.763702, 0.000007, -0.000000, -90.000259, 300.00);
- tmpobjid = CreateObject(11729, -3216.967041, -471.517974, 46.763706, 0.000007, -0.000000, -90.000259, 300.00);
- tmpobjid = CreateObject(11729, -3216.967041, -470.858306, 46.763706, 0.000007, -0.000000, -90.000259, 300.00);
- tmpobjid = CreateObject(11729, -3216.967041, -472.837799, 46.763706, 0.000007, -0.000000, -90.000259, 300.00);
- tmpobjid = CreateObject(11729, -3216.967041, -472.178131, 46.763698, 0.000007, -0.000000, -90.000259, 300.00);
- tmpobjid = CreateObject(11729, -3216.967041, -474.157623, 46.763702, 0.000007, -0.000000, -90.000259, 300.00);
- tmpobjid = CreateObject(11729, -3216.967041, -473.497955, 46.763706, 0.000007, -0.000000, -90.000259, 300.00);
- tmpobjid = CreateObject(11729, -3261.389648, -447.668548, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3230.078857, -480.728332, 46.763702, 0.000000, 0.000006, 89.999702, 300.00);
- tmpobjid = CreateObject(11729, -3230.078857, -481.388000, 46.763698, 0.000000, 0.000006, 89.999702, 300.00);
- tmpobjid = CreateObject(11729, -3230.078857, -479.408020, 46.763698, 0.000000, 0.000006, 89.999702, 300.00);
- tmpobjid = CreateObject(11729, -3230.078857, -480.067687, 46.763698, 0.000000, 0.000006, 89.999702, 300.00);
- tmpobjid = CreateObject(11729, -3230.078857, -478.088195, 46.763702, 0.000000, 0.000006, 89.999702, 300.00);
- tmpobjid = CreateObject(11729, -3230.078857, -478.748352, 46.763702, 0.000000, 0.000006, 89.999702, 300.00);
- tmpobjid = CreateObject(11729, -3230.078857, -476.770324, 46.763706, 0.000000, 0.000006, 89.999702, 300.00);
- tmpobjid = CreateObject(11729, -3230.078857, -477.429992, 46.763706, 0.000000, 0.000006, 89.999702, 300.00);
- tmpobjid = CreateObject(11729, -3230.078857, -475.450500, 46.763706, 0.000000, 0.000006, 89.999702, 300.00);
- tmpobjid = CreateObject(11729, -3230.078857, -476.110168, 46.763698, 0.000000, 0.000006, 89.999702, 300.00);
- tmpobjid = CreateObject(11729, -3262.049804, -447.668548, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3230.078857, -474.790344, 46.763706, 0.000000, 0.000006, 89.999702, 300.00);
- tmpobjid = CreateObject(11729, -3255.451904, -454.078704, 46.763702, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3254.791992, -454.078704, 46.763698, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3256.771972, -454.078704, 46.763698, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3256.112304, -454.078704, 46.763698, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3258.091796, -454.078704, 46.763702, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3257.431884, -454.078704, 46.763702, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3260.069824, -447.668548, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3260.729492, -447.668548, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3258.750000, -447.668548, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3259.409667, -447.668548, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3257.432128, -447.668548, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3258.091796, -447.668548, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3259.409667, -454.078704, 46.763706, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3258.750000, -454.078704, 46.763706, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3260.729492, -454.078704, 46.763706, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3260.069824, -454.078704, 46.763698, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3262.049560, -454.078704, 46.763702, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3261.389892, -454.078704, 46.763706, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3256.112304, -447.668548, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3256.771972, -447.668548, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3254.791992, -447.668548, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3255.451660, -447.668548, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3237.832275, -454.098632, 46.763698, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3237.172607, -454.098632, 46.763702, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3239.152099, -454.098632, 46.763702, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3238.492187, -454.098632, 46.763698, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3240.472167, -454.098632, 46.763698, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3239.812500, -454.098632, 46.763698, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3241.791992, -454.098632, 46.763702, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3241.132080, -454.098632, 46.763702, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3229.915527, -454.098632, 46.763702, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3237.833007, -447.668609, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3231.235595, -454.098632, 46.763698, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3230.575927, -454.098632, 46.763698, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3232.555419, -454.098632, 46.763702, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3231.895507, -454.098632, 46.763702, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3243.109863, -454.098632, 46.763706, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3242.450195, -454.098632, 46.763706, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3244.429687, -454.098632, 46.763706, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3243.770019, -454.098632, 46.763698, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3245.749755, -454.098632, 46.763702, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3245.090087, -454.098632, 46.763706, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3233.873291, -454.098632, 46.763706, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3233.213623, -454.098632, 46.763706, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3235.193115, -454.098632, 46.763706, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3234.533447, -454.098632, 46.763698, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3236.513183, -454.098632, 46.763702, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3235.853515, -454.098632, 46.763706, 0.000007, 0.000007, 179.999801, 300.00);
- tmpobjid = CreateObject(11729, -3238.492675, -447.668609, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3236.513183, -447.668609, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3237.172851, -447.668609, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3235.192871, -447.668609, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3235.852539, -447.668609, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3233.873046, -447.668609, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3234.533203, -447.668609, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3245.749511, -447.668609, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3244.429687, -447.668609, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3245.089355, -447.668609, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3243.109863, -447.668609, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3243.769531, -447.668609, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3232.555175, -447.668609, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3233.214843, -447.668609, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3231.235351, -447.668609, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3231.895019, -447.668609, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3229.915527, -447.668609, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3230.575195, -447.668609, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3241.791992, -447.668609, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3242.451660, -447.668609, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3240.472167, -447.668609, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3241.131835, -447.668609, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3239.151855, -447.668609, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3239.811523, -447.668609, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
- tmpobjid = CreateObject(11729, -3227.786376, -463.658966, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3227.786376, -464.318634, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3227.786376, -462.339141, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3227.786376, -462.999084, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3227.786376, -461.019073, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3227.786376, -461.678741, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3227.786376, -459.699249, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3227.786376, -460.359161, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3227.786376, -471.575805, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3227.786376, -472.235748, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3227.786376, -470.255737, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3227.786376, -470.915405, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3227.786376, -468.935913, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3227.786376, -469.595825, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3227.786376, -458.381378, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3227.786376, -459.041046, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3227.786376, -457.061523, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3227.786376, -457.721221, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3227.786376, -455.741485, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3227.786376, -456.401153, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3227.786376, -467.618041, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3227.786376, -468.277709, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3227.786376, -466.298187, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3227.786376, -466.957885, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3227.786376, -464.978149, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(11729, -3227.786376, -465.637817, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
- tmpobjid = CreateObject(2205, -3271.204833, -431.860137, 46.915061, 0.000000, 0.000000, 180.000000, 300.00);
- tmpobjid = CreateObject(2205, -3257.044921, -468.479187, 46.915061, -0.000007, -0.000007, 0.000007, 300.00);
- tmpobjid = CreateObject(1811, -3271.546386, -436.444305, 47.534145, 0.000000, 0.000000, 270.000000, 300.00);
- tmpobjid = CreateObject(1811, -3267.046386, -436.444305, 47.534145, 0.000000, 0.000000, 270.000000, 300.00);
- tmpobjid = CreateObject(1811, -3262.546386, -436.444305, 47.534145, 0.000000, 0.000000, 270.000000, 300.00);
- tmpobjid = CreateObject(1811, -3262.546386, -439.444305, 47.534145, 0.000000, 0.000000, 270.000000, 300.00);
- tmpobjid = CreateObject(1811, -3262.546386, -442.444305, 47.534145, 0.000000, 0.000000, 270.000000, 300.00);
- tmpobjid = CreateObject(1811, -3267.046386, -442.444305, 47.534145, 0.000000, 0.000000, 270.000000, 300.00);
- tmpobjid = CreateObject(1811, -3271.546386, -442.444305, 47.534145, 0.000000, 0.000000, 270.000000, 300.00);
- tmpobjid = CreateObject(1811, -3271.546386, -439.444305, 47.534145, 0.000000, 0.000000, 270.000000, 300.00);
- tmpobjid = CreateObject(1811, -3267.046386, -439.444305, 47.534145, 0.000000, 0.000000, 270.000000, 300.00);
- tmpobjid = CreateObject(1806, -3255.197509, -429.218780, 46.944095, 0.000000, 0.000000, 270.000000, 300.00);
- tmpobjid = CreateObject(1806, -3255.197509, -431.718780, 46.944095, 0.000000, 0.000000, 270.000000, 300.00);
- tmpobjid = CreateObject(1806, -3255.197509, -434.218780, 46.944095, 0.000000, 0.000000, 270.000000, 300.00);
- tmpobjid = CreateObject(1806, -3255.197509, -436.718780, 46.944095, 0.000000, 0.000000, 270.000000, 300.00);
- tmpobjid = CreateObject(1806, -3255.197509, -439.218780, 46.944095, 0.000000, 0.000000, 270.000000, 300.00);
- tmpobjid = CreateObject(1806, -3255.197509, -441.718780, 46.944095, 0.000000, 0.000000, 270.000000, 300.00);
- tmpobjid = CreateObject(1806, -3255.197509, -444.218780, 46.944095, 0.000000, 0.000000, 270.000000, 300.00);
- tmpobjid = CreateObject(1806, -3271.798583, -471.322357, 46.944095, -0.000007, 0.000007, 89.999961, 300.00);
- tmpobjid = CreateObject(1806, -3271.798583, -468.822357, 46.944095, -0.000007, 0.000007, 89.999961, 300.00);
- tmpobjid = CreateObject(1806, -3271.798583, -466.322357, 46.944095, -0.000007, 0.000007, 89.999961, 300.00);
- tmpobjid = CreateObject(1806, -3271.798583, -463.822357, 46.944095, -0.000007, 0.000007, 89.999961, 300.00);
- tmpobjid = CreateObject(1806, -3271.798583, -461.322357, 46.944095, -0.000007, 0.000007, 89.999961, 300.00);
- tmpobjid = CreateObject(1806, -3271.798583, -458.822357, 46.944095, -0.000007, 0.000007, 89.999961, 300.00);
- tmpobjid = CreateObject(1811, -3261.246093, -457.934295, 47.534145, 0.000000, 0.000000, 450.000000, 300.00);
- tmpobjid = CreateObject(1811, -3256.746093, -457.934295, 47.534145, 0.000000, 0.000000, 450.000000, 300.00);
- tmpobjid = CreateObject(1811, -3256.746093, -460.934295, 47.534145, 0.000000, 0.000000, 450.000000, 300.00);
- tmpobjid = CreateObject(1811, -3256.746093, -463.934295, 47.534145, 0.000000, 0.000000, 450.000000, 300.00);
- tmpobjid = CreateObject(1811, -3261.246093, -463.934295, 47.534145, 0.000000, 0.000000, 450.000000, 300.00);
- tmpobjid = CreateObject(1811, -3261.246093, -460.934295, 47.534145, 0.000000, 0.000000, 450.000000, 300.00);
- tmpobjid = CreateObject(3034, -3222.938720, -428.181732, 53.726001, -0.000007, -0.000007, 0.000007, 300.00);
- tmpobjid = CreateObject(3034, -3228.082519, -428.181732, 53.726001, -0.000007, -0.000007, 0.000007, 300.00);
- tmpobjid = CreateObject(3034, -3233.225341, -428.181732, 53.726001, -0.000007, -0.000007, 0.000007, 300.00);
- tmpobjid = CreateObject(3034, -3238.438720, -428.181732, 53.726001, -0.000007, -0.000007, 0.000007, 300.00);
- tmpobjid = CreateObject(3034, -3243.582519, -428.181732, 53.726001, -0.000007, -0.000007, 0.000007, 300.00);
- tmpobjid = CreateObject(3034, -3248.725341, -428.181732, 53.726001, -0.000007, -0.000007, 0.000007, 300.00);
- tmpobjid = CreateObject(3034, -3253.938720, -428.181732, 53.726001, -0.000007, -0.000007, 0.000007, 300.00);
- tmpobjid = CreateObject(3034, -3259.082519, -428.181732, 53.726001, -0.000007, -0.000007, 0.000007, 300.00);
- tmpobjid = CreateObject(3034, -3262.108642, -431.519744, 53.726001, -0.000007, 0.000000, 89.999977, 300.00);
- tmpobjid = CreateObject(3034, -3262.108642, -436.663543, 53.726001, -0.000007, 0.000000, 89.999977, 300.00);
- tmpobjid = CreateObject(3034, -3262.108642, -442.019744, 53.726001, -0.000007, 0.000000, 89.999977, 300.00);
- tmpobjid = CreateObject(3034, -3262.108642, -447.163543, 53.726001, -0.000007, 0.000000, 89.999977, 300.00);
- tmpobjid = CreateObject(3034, -3262.108642, -452.519744, 53.726001, -0.000007, 0.000000, 89.999977, 300.00);
- tmpobjid = CreateObject(3034, -3262.108642, -457.663543, 53.726001, -0.000007, 0.000000, 89.999977, 300.00);
- return 1;
- }
|