school.pwn 250 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604
  1. #include <a_samp>
  2. public OnFilterScriptInit()
  3. {
  4. new tmpobjid;
  5. tmpobjid = CreateObject(19447, -3254.824707, -498.777862, 45.847000, -0.000007, 180.000000, 0.000000, 300.00);
  6. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  7. tmpobjid = CreateObject(19447, -3253.160156, -498.777770, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  8. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  9. tmpobjid = CreateObject(19447, -3250.097412, -503.679840, 45.847023, 0.000000, 180.000000, 450.000000, 300.00);
  10. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  11. tmpobjid = CreateObject(19447, -3221.201416, -503.679809, 45.847023, 0.000000, 180.000000, 89.999931, 300.00);
  12. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  13. tmpobjid = CreateObject(19447, -3230.834716, -503.679840, 45.847023, 0.000000, 180.000000, 450.000000, 300.00);
  14. SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
  15. tmpobjid = CreateObject(19447, -3240.465576, -503.679840, 45.847023, 0.000000, 180.000000, 450.000000, 300.00);
  16. SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
  17. tmpobjid = CreateObject(19447, -3201.938720, -503.679809, 45.847023, 0.000000, 180.000000, 89.999931, 300.00);
  18. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  19. tmpobjid = CreateObject(19447, -3211.569580, -503.679809, 45.847023, 0.000000, 180.000000, 89.999931, 300.00);
  20. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  21. tmpobjid = CreateObject(19447, -3249.661621, -498.777770, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  22. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  23. tmpobjid = CreateObject(19447, -3249.012939, -498.777862, 45.847000, -0.000007, 180.000000, 0.000000, 300.00);
  24. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  25. tmpobjid = CreateObject(19447, -3253.823730, -498.777862, 45.847000, -0.000007, 180.000000, 0.000000, 300.00);
  26. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  27. tmpobjid = CreateObject(19447, -3254.824707, -498.777862, 49.341033, -0.000007, 180.000000, 0.000000, 300.00);
  28. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  29. tmpobjid = CreateObject(19447, -3247.595947, -499.377899, 45.847000, -0.000007, 180.000000, 0.000000, 300.00);
  30. SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
  31. tmpobjid = CreateObject(19447, -3268.358398, -472.443145, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  32. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  33. tmpobjid = CreateObject(19447, -3255.637939, -431.787628, 46.864955, 0.000000, 90.000000, 0.000000, 300.00);
  34. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  35. tmpobjid = CreateObject(19447, -3247.595947, -499.377899, 49.344032, -0.000007, 180.000000, 0.000000, 300.00);
  36. SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
  37. tmpobjid = CreateObject(18762, -3253.823242, -494.451171, 48.588497, 0.000000, 0.000000, 0.000000, 300.00);
  38. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "breezewall", 0x00000000);
  39. tmpobjid = CreateObject(18762, -3254.821533, -494.451171, 48.588497, 0.000000, 0.000000, 0.000000, 300.00);
  40. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "breezewall", 0x00000000);
  41. tmpobjid = CreateObject(18762, -3247.979248, -494.451171, 48.588497, 0.000000, 0.000000, 0.000000, 300.00);
  42. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "breezewall", 0x00000000);
  43. tmpobjid = CreateObject(18762, -3248.977539, -494.451171, 48.588497, 0.000000, 0.000000, 0.000000, 300.00);
  44. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "breezewall", 0x00000000);
  45. tmpobjid = CreateObject(19447, -3221.201416, -503.679809, 49.341056, 0.000000, 180.000000, 89.999931, 300.00);
  46. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  47. tmpobjid = CreateObject(19447, -3201.938720, -503.679809, 49.341056, 0.000000, 180.000000, 89.999931, 300.00);
  48. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  49. tmpobjid = CreateObject(19447, -3211.569580, -503.679809, 49.341056, 0.000000, 180.000000, 89.999931, 300.00);
  50. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  51. tmpobjid = CreateObject(19447, -3195.979980, -501.090118, 45.847023, 0.000007, 180.000000, 134.999908, 300.00);
  52. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  53. tmpobjid = CreateObject(19447, -3182.359375, -487.469329, 45.847023, 0.000007, 180.000000, 134.999908, 300.00);
  54. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  55. tmpobjid = CreateObject(19447, -3250.097412, -503.679840, 49.341056, 0.000000, 180.000000, 450.000000, 300.00);
  56. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  57. tmpobjid = CreateObject(19447, -3189.169433, -494.279388, 45.847023, 0.000007, 180.000000, 134.999908, 300.00);
  58. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  59. tmpobjid = CreateObject(19447, -3230.834716, -503.679840, 49.341056, 0.000000, 180.000000, 450.000000, 300.00);
  60. SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
  61. tmpobjid = CreateObject(19447, -3240.465576, -503.679840, 49.341056, 0.000000, 180.000000, 450.000000, 300.00);
  62. SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
  63. tmpobjid = CreateObject(19447, -3195.979980, -501.090118, 49.341056, 0.000007, 180.000000, 134.999908, 300.00);
  64. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  65. tmpobjid = CreateObject(19447, -3182.359375, -487.469329, 49.341056, 0.000007, 180.000000, 134.999908, 300.00);
  66. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  67. tmpobjid = CreateObject(19447, -3249.012939, -498.777862, 49.341033, -0.000007, 180.000000, 0.000000, 300.00);
  68. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  69. tmpobjid = CreateObject(19447, -3253.823730, -498.777862, 49.341033, -0.000007, 180.000000, 0.000000, 300.00);
  70. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  71. tmpobjid = CreateObject(19447, -3189.169433, -494.279388, 49.341056, 0.000007, 180.000000, 134.999908, 300.00);
  72. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  73. tmpobjid = CreateObject(19447, -3180.169677, -480.911010, 45.847023, 0.000012, 180.000000, 179.999862, 300.00);
  74. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  75. tmpobjid = CreateObject(19447, -3180.169677, -461.648437, 45.847023, 0.000012, 180.000000, 179.999862, 300.00);
  76. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  77. tmpobjid = CreateObject(19447, -3180.169677, -471.279296, 45.847023, 0.000012, 180.000000, 179.999862, 300.00);
  78. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  79. tmpobjid = CreateObject(19447, -3180.169677, -480.911010, 49.341056, 0.000012, 180.000000, 179.999862, 300.00);
  80. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  81. tmpobjid = CreateObject(19447, -3180.169677, -461.648437, 49.341056, 0.000012, 180.000000, 179.999862, 300.00);
  82. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  83. tmpobjid = CreateObject(19447, -3180.169677, -471.279296, 49.341056, 0.000012, 180.000000, 179.999862, 300.00);
  84. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  85. tmpobjid = CreateObject(19447, -3180.169677, -452.019134, 45.847023, 0.000012, 180.000000, 179.999862, 300.00);
  86. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  87. tmpobjid = CreateObject(19447, -3180.169677, -432.756561, 45.847023, 0.000012, 180.000000, 179.999862, 300.00);
  88. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  89. tmpobjid = CreateObject(19447, -3180.169677, -442.387420, 45.847023, 0.000012, 180.000000, 179.999862, 300.00);
  90. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  91. tmpobjid = CreateObject(19447, -3180.169677, -452.019134, 49.341056, 0.000012, 180.000000, 179.999862, 300.00);
  92. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  93. tmpobjid = CreateObject(19447, -3180.169677, -432.756561, 49.341056, 0.000012, 180.000000, 179.999862, 300.00);
  94. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  95. tmpobjid = CreateObject(19447, -3180.169677, -442.387420, 49.341056, 0.000012, 180.000000, 179.999862, 300.00);
  96. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  97. tmpobjid = CreateObject(19447, -3246.361328, -498.777770, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  98. SetObjectMaterial(tmpobjid, 0, 14534, "ab_wooziea", "ab_tileDiamond", 0x00000000);
  99. tmpobjid = CreateObject(19447, -3270.979980, -487.577514, 45.847023, 0.000012, 180.000000, -135.000137, 300.00);
  100. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  101. tmpobjid = CreateObject(19447, -3264.169921, -494.387542, 45.847023, 0.000012, 180.000000, -135.000137, 300.00);
  102. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  103. tmpobjid = CreateObject(19447, -3242.862792, -498.777770, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  104. SetObjectMaterial(tmpobjid, 0, 14534, "ab_wooziea", "ab_tileDiamond", 0x00000000);
  105. tmpobjid = CreateObject(19447, -3270.979980, -487.577514, 49.341056, 0.000012, 180.000000, -135.000137, 300.00);
  106. SetObjectMaterial(tmpobjid, 0, 4830, "airport2", "sw_shedwall02", 0x00000000);
  107. tmpobjid = CreateObject(19447, -3264.169921, -494.387542, 49.341056, 0.000012, 180.000000, -135.000137, 300.00);
  108. SetObjectMaterial(tmpobjid, 0, 4830, "airport2", "sw_shedwall02", 0x00000000);
  109. tmpobjid = CreateObject(19447, -3259.538330, -494.387847, 45.847023, 0.000007, 180.000000, -90.000213, 300.00);
  110. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  111. tmpobjid = CreateObject(19447, -3239.365234, -498.777770, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  112. SetObjectMaterial(tmpobjid, 0, 14534, "ab_wooziea", "ab_tileDiamond", 0x00000000);
  113. tmpobjid = CreateObject(19447, -3235.866699, -498.777770, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  114. SetObjectMaterial(tmpobjid, 0, 14534, "ab_wooziea", "ab_tileDiamond", 0x00000000);
  115. tmpobjid = CreateObject(19447, -3259.538330, -494.387847, 49.341056, 0.000007, 180.000000, -90.000213, 300.00);
  116. SetObjectMaterial(tmpobjid, 0, 4830, "airport2", "sw_shedwall02", 0x00000000);
  117. tmpobjid = CreateObject(19447, -3232.371826, -498.777770, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  118. SetObjectMaterial(tmpobjid, 0, 14534, "ab_wooziea", "ab_tileDiamond", 0x00000000);
  119. tmpobjid = CreateObject(19447, -3228.873291, -498.777770, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  120. SetObjectMaterial(tmpobjid, 0, 14534, "ab_wooziea", "ab_tileDiamond", 0x00000000);
  121. tmpobjid = CreateObject(19447, -3273.169677, -461.756561, 45.847023, -0.000003, 180.000000, -0.000209, 300.00);
  122. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  123. tmpobjid = CreateObject(19447, -3273.169677, -481.019134, 45.847023, -0.000003, 180.000000, -0.000209, 300.00);
  124. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  125. tmpobjid = CreateObject(19447, -3273.169677, -471.388275, 45.847023, -0.000003, 180.000000, -0.000209, 300.00);
  126. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  127. tmpobjid = CreateObject(19447, -3273.169677, -461.756561, 49.341056, -0.000003, 180.000000, -0.000209, 300.00);
  128. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  129. tmpobjid = CreateObject(19447, -3273.169677, -481.019134, 49.341056, -0.000003, 180.000000, -0.000209, 300.00);
  130. SetObjectMaterial(tmpobjid, 0, 4830, "airport2", "sw_shedwall02", 0x00000000);
  131. tmpobjid = CreateObject(19447, -3273.169677, -471.388275, 49.341056, -0.000003, 180.000000, -0.000209, 300.00);
  132. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  133. tmpobjid = CreateObject(19447, -3273.169677, -432.861816, 45.847023, -0.000003, 180.000000, -0.000209, 300.00);
  134. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  135. tmpobjid = CreateObject(19447, -3273.169677, -452.124389, 45.847023, -0.000003, 180.000000, -0.000209, 300.00);
  136. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  137. tmpobjid = CreateObject(19447, -3273.169677, -442.493530, 45.847023, -0.000003, 180.000000, -0.000209, 300.00);
  138. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  139. tmpobjid = CreateObject(19447, -3273.169677, -432.861816, 49.341056, -0.000003, 180.000000, -0.000209, 300.00);
  140. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  141. tmpobjid = CreateObject(19447, -3273.169677, -452.124389, 49.341056, -0.000003, 180.000000, -0.000209, 300.00);
  142. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  143. tmpobjid = CreateObject(19447, -3273.169677, -442.493530, 49.341056, -0.000003, 180.000000, -0.000209, 300.00);
  144. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  145. tmpobjid = CreateObject(19447, -3268.440185, -428.093078, 45.847023, -0.000003, 180.000000, 89.999763, 300.00);
  146. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  147. tmpobjid = CreateObject(19447, -3249.177490, -428.093078, 45.847023, -0.000003, 180.000000, 89.999763, 300.00);
  148. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  149. tmpobjid = CreateObject(19447, -3258.808349, -428.093078, 45.847023, -0.000003, 180.000000, 89.999763, 300.00);
  150. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  151. tmpobjid = CreateObject(19447, -3268.440185, -428.093078, 49.341056, -0.000003, 180.000000, 89.999763, 300.00);
  152. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  153. tmpobjid = CreateObject(19447, -3249.177490, -428.093078, 49.341056, -0.000003, 180.000000, 89.999763, 300.00);
  154. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  155. tmpobjid = CreateObject(19447, -3258.808349, -428.093078, 49.341056, -0.000003, 180.000000, 89.999763, 300.00);
  156. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  157. tmpobjid = CreateObject(19447, -3239.544189, -428.093078, 45.847023, -0.000003, 180.000000, 89.999763, 300.00);
  158. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  159. tmpobjid = CreateObject(19447, -3220.281494, -428.093078, 45.847023, -0.000003, 180.000000, 89.999763, 300.00);
  160. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  161. tmpobjid = CreateObject(19447, -3229.912353, -428.093078, 45.847023, -0.000003, 180.000000, 89.999763, 300.00);
  162. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  163. tmpobjid = CreateObject(19447, -3239.544189, -428.093078, 49.341056, -0.000003, 180.000000, 89.999763, 300.00);
  164. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  165. tmpobjid = CreateObject(19447, -3220.281494, -428.093078, 49.341056, -0.000003, 180.000000, 89.999763, 300.00);
  166. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  167. tmpobjid = CreateObject(19447, -3229.912353, -428.093078, 49.341056, -0.000003, 180.000000, 89.999763, 300.00);
  168. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  169. tmpobjid = CreateObject(19447, -3210.648925, -428.093078, 45.847023, -0.000003, 180.000000, 89.999763, 300.00);
  170. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  171. tmpobjid = CreateObject(19447, -3191.386230, -428.093078, 45.847023, -0.000003, 180.000000, 89.999763, 300.00);
  172. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  173. tmpobjid = CreateObject(19447, -3201.017089, -428.093078, 45.847023, -0.000003, 180.000000, 89.999763, 300.00);
  174. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  175. tmpobjid = CreateObject(19447, -3210.648925, -428.093078, 49.341056, -0.000003, 180.000000, 89.999763, 300.00);
  176. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  177. tmpobjid = CreateObject(19447, -3191.386230, -428.093078, 49.341056, -0.000003, 180.000000, 89.999763, 300.00);
  178. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  179. tmpobjid = CreateObject(19447, -3201.017089, -428.093078, 49.341056, -0.000003, 180.000000, 89.999763, 300.00);
  180. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  181. tmpobjid = CreateObject(19447, -3181.755371, -428.093078, 45.847023, -0.000003, 180.000000, 89.999763, 300.00);
  182. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  183. tmpobjid = CreateObject(19447, -3181.755371, -428.093078, 49.341056, -0.000003, 180.000000, 89.999763, 300.00);
  184. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  185. tmpobjid = CreateObject(19447, -3246.361328, -489.147033, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  186. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  187. tmpobjid = CreateObject(19447, -3242.862792, -489.147033, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  188. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  189. tmpobjid = CreateObject(19447, -3239.365234, -489.147033, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  190. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  191. tmpobjid = CreateObject(19447, -3235.866699, -489.147033, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  192. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  193. tmpobjid = CreateObject(19447, -3232.371826, -489.147033, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  194. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  195. tmpobjid = CreateObject(19447, -3228.873291, -489.147033, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  196. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  197. tmpobjid = CreateObject(19447, -3246.361328, -479.515075, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  198. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  199. tmpobjid = CreateObject(19447, -3242.862792, -479.515075, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  200. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  201. tmpobjid = CreateObject(19447, -3239.365234, -479.515075, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  202. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  203. tmpobjid = CreateObject(19447, -3235.866699, -479.515075, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  204. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  205. tmpobjid = CreateObject(19447, -3232.371826, -479.515075, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  206. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  207. tmpobjid = CreateObject(19447, -3228.873291, -479.515075, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  208. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  209. tmpobjid = CreateObject(19447, -3246.361328, -469.884338, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  210. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  211. tmpobjid = CreateObject(19447, -3242.862792, -469.884338, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  212. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  213. tmpobjid = CreateObject(19447, -3239.365234, -469.884338, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  214. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  215. tmpobjid = CreateObject(19447, -3235.866699, -469.884338, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  216. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  217. tmpobjid = CreateObject(19447, -3232.371826, -469.884338, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  218. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  219. tmpobjid = CreateObject(19447, -3228.873291, -469.884338, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  220. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  221. tmpobjid = CreateObject(19447, -3246.361328, -460.254028, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  222. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  223. tmpobjid = CreateObject(19447, -3242.862792, -460.254028, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  224. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  225. tmpobjid = CreateObject(19447, -3239.365234, -460.254028, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  226. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  227. tmpobjid = CreateObject(19447, -3235.866699, -460.254028, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  228. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  229. tmpobjid = CreateObject(19447, -3232.371826, -460.254028, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  230. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  231. tmpobjid = CreateObject(19447, -3228.873291, -460.254028, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  232. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  233. tmpobjid = CreateObject(19447, -3246.361328, -450.623291, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  234. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  235. tmpobjid = CreateObject(19447, -3242.862792, -450.623291, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  236. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  237. tmpobjid = CreateObject(19447, -3239.365234, -450.623291, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  238. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  239. tmpobjid = CreateObject(19447, -3235.866699, -450.623291, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  240. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  241. tmpobjid = CreateObject(19447, -3232.371826, -450.623291, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  242. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  243. tmpobjid = CreateObject(19447, -3228.873291, -450.623291, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  244. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  245. tmpobjid = CreateObject(19447, -3246.361328, -440.991333, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  246. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  247. tmpobjid = CreateObject(19447, -3242.862792, -440.991333, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  248. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  249. tmpobjid = CreateObject(19447, -3239.365234, -440.991333, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  250. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  251. tmpobjid = CreateObject(19447, -3235.866699, -440.991333, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  252. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  253. tmpobjid = CreateObject(19447, -3232.371826, -440.991333, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  254. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  255. tmpobjid = CreateObject(19447, -3228.873291, -440.991333, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  256. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  257. tmpobjid = CreateObject(19447, -3246.361328, -431.360595, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  258. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  259. tmpobjid = CreateObject(19447, -3242.862792, -431.360595, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  260. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  261. tmpobjid = CreateObject(19447, -3239.365234, -431.360595, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  262. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  263. tmpobjid = CreateObject(19447, -3235.866699, -431.360595, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  264. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  265. tmpobjid = CreateObject(19447, -3232.371826, -431.360595, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  266. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  267. tmpobjid = CreateObject(19447, -3228.873291, -431.360595, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  268. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  269. tmpobjid = CreateObject(19447, -3225.376953, -498.777770, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  270. SetObjectMaterial(tmpobjid, 0, 14534, "ab_wooziea", "ab_tileDiamond", 0x00000000);
  271. tmpobjid = CreateObject(19447, -3221.878417, -498.777770, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  272. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  273. tmpobjid = CreateObject(19447, -3218.380859, -498.777770, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  274. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  275. tmpobjid = CreateObject(19447, -3214.882324, -498.777770, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  276. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  277. tmpobjid = CreateObject(19447, -3211.387451, -498.777770, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  278. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  279. tmpobjid = CreateObject(19447, -3207.888916, -498.777770, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  280. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  281. tmpobjid = CreateObject(19447, -3225.376953, -489.147033, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  282. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  283. tmpobjid = CreateObject(19447, -3221.878417, -489.147033, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  284. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  285. tmpobjid = CreateObject(19447, -3218.380859, -489.147033, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  286. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  287. tmpobjid = CreateObject(19447, -3214.882324, -489.147033, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  288. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  289. tmpobjid = CreateObject(19447, -3211.387451, -489.147033, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  290. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  291. tmpobjid = CreateObject(19447, -3207.888916, -489.147033, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  292. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  293. tmpobjid = CreateObject(19447, -3225.376953, -479.515075, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  294. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  295. tmpobjid = CreateObject(19447, -3221.878417, -479.515075, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  296. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  297. tmpobjid = CreateObject(19447, -3218.380859, -479.515075, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  298. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  299. tmpobjid = CreateObject(19447, -3214.882324, -479.515075, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  300. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  301. tmpobjid = CreateObject(19447, -3211.387451, -479.515075, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  302. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  303. tmpobjid = CreateObject(19447, -3207.888916, -479.515075, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  304. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  305. tmpobjid = CreateObject(19447, -3225.376953, -469.884338, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  306. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  307. tmpobjid = CreateObject(19447, -3221.878417, -469.884338, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  308. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  309. tmpobjid = CreateObject(19447, -3218.380859, -469.884338, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  310. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  311. tmpobjid = CreateObject(19447, -3214.882324, -469.884338, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  312. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  313. tmpobjid = CreateObject(19447, -3211.387451, -469.884338, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  314. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  315. tmpobjid = CreateObject(19447, -3207.888916, -469.884338, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  316. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  317. tmpobjid = CreateObject(19447, -3225.376953, -460.254028, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  318. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  319. tmpobjid = CreateObject(19447, -3221.878417, -460.254028, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  320. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  321. tmpobjid = CreateObject(19447, -3218.380859, -460.254028, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  322. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  323. tmpobjid = CreateObject(19447, -3214.882324, -460.254028, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  324. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  325. tmpobjid = CreateObject(19447, -3211.387451, -460.254028, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  326. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  327. tmpobjid = CreateObject(19447, -3207.888916, -460.254028, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  328. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  329. tmpobjid = CreateObject(19447, -3225.376953, -450.623291, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  330. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  331. tmpobjid = CreateObject(19447, -3221.878417, -450.623291, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  332. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  333. tmpobjid = CreateObject(19447, -3218.380859, -450.623291, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  334. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  335. tmpobjid = CreateObject(19447, -3214.882324, -450.623291, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  336. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  337. tmpobjid = CreateObject(19447, -3211.387451, -450.623291, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  338. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  339. tmpobjid = CreateObject(19447, -3207.888916, -450.623291, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  340. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  341. tmpobjid = CreateObject(19447, -3225.376953, -440.991333, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  342. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  343. tmpobjid = CreateObject(19447, -3221.878417, -440.991333, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  344. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  345. tmpobjid = CreateObject(19447, -3218.380859, -440.991333, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  346. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  347. tmpobjid = CreateObject(19447, -3214.882324, -440.991333, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  348. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  349. tmpobjid = CreateObject(19447, -3211.387451, -440.991333, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  350. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  351. tmpobjid = CreateObject(19447, -3207.888916, -440.991333, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  352. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  353. tmpobjid = CreateObject(19447, -3225.376953, -431.360595, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  354. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  355. tmpobjid = CreateObject(19447, -3221.878417, -431.360595, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  356. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  357. tmpobjid = CreateObject(19447, -3218.380859, -431.360595, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  358. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  359. tmpobjid = CreateObject(19447, -3214.882324, -431.360595, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  360. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  361. tmpobjid = CreateObject(19447, -3211.387451, -431.360595, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  362. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  363. tmpobjid = CreateObject(19447, -3207.888916, -431.360595, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  364. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  365. tmpobjid = CreateObject(19447, -3204.384765, -498.777770, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  366. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  367. tmpobjid = CreateObject(19447, -3200.886230, -498.777770, 46.862976, 0.000000, 90.000000, 0.000000, 300.00);
  368. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  369. tmpobjid = CreateObject(19447, -3197.388671, -498.777770, 48.162952, 0.000000, 90.000000, 0.000000, 300.00);
  370. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  371. tmpobjid = CreateObject(19447, -3193.890136, -498.777770, 48.162956, 0.000000, 90.000000, 0.000000, 300.00);
  372. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  373. tmpobjid = CreateObject(19447, -3190.395263, -498.777770, 48.162952, 0.000000, 90.000000, 0.000000, 300.00);
  374. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  375. tmpobjid = CreateObject(19447, -3235.866699, -479.515075, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  376. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  377. tmpobjid = CreateObject(19447, -3204.384765, -489.147033, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  378. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  379. tmpobjid = CreateObject(19447, -3200.886230, -489.147033, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  380. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  381. tmpobjid = CreateObject(19447, -3197.388671, -489.147033, 48.162952, 0.000000, 90.000000, 0.000000, 300.00);
  382. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  383. tmpobjid = CreateObject(19447, -3193.890136, -489.147033, 48.162956, 0.000000, 90.000000, 0.000000, 300.00);
  384. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  385. tmpobjid = CreateObject(19447, -3190.395263, -489.147033, 48.162952, 0.000000, 90.000000, 0.000000, 300.00);
  386. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  387. tmpobjid = CreateObject(19447, -3186.896728, -489.147033, 48.162956, 0.000000, 90.000000, 0.000000, 300.00);
  388. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  389. tmpobjid = CreateObject(19447, -3204.384765, -479.515075, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  390. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  391. tmpobjid = CreateObject(19447, -3200.886230, -479.515075, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  392. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  393. tmpobjid = CreateObject(19447, -3197.388671, -479.515075, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  394. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  395. tmpobjid = CreateObject(19447, -3193.890136, -479.515075, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  396. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  397. tmpobjid = CreateObject(19447, -3190.395263, -479.515075, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  398. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  399. tmpobjid = CreateObject(19447, -3186.896728, -479.515075, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  400. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  401. tmpobjid = CreateObject(19447, -3204.384765, -469.884338, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  402. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  403. tmpobjid = CreateObject(19447, -3200.886230, -469.884338, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  404. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  405. tmpobjid = CreateObject(19447, -3197.388671, -469.884338, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  406. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  407. tmpobjid = CreateObject(19447, -3193.890136, -469.884338, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  408. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  409. tmpobjid = CreateObject(19447, -3190.395263, -469.884338, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  410. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  411. tmpobjid = CreateObject(19447, -3186.896728, -469.884338, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  412. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  413. tmpobjid = CreateObject(19447, -3204.384765, -460.254028, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  414. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  415. tmpobjid = CreateObject(19447, -3200.886230, -460.254028, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  416. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  417. tmpobjid = CreateObject(19447, -3197.388671, -460.254028, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  418. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  419. tmpobjid = CreateObject(19447, -3193.890136, -460.254028, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  420. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  421. tmpobjid = CreateObject(19447, -3190.395263, -460.254028, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  422. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  423. tmpobjid = CreateObject(19447, -3186.896728, -460.254028, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  424. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  425. tmpobjid = CreateObject(19447, -3204.384765, -450.623291, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  426. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  427. tmpobjid = CreateObject(19447, -3200.886230, -450.623291, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  428. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  429. tmpobjid = CreateObject(19447, -3197.388671, -450.623291, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  430. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  431. tmpobjid = CreateObject(19447, -3193.890136, -450.623291, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  432. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  433. tmpobjid = CreateObject(19447, -3190.395263, -450.623291, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  434. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  435. tmpobjid = CreateObject(19447, -3186.896728, -450.623291, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  436. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  437. tmpobjid = CreateObject(19447, -3204.384765, -440.991333, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  438. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  439. tmpobjid = CreateObject(19447, -3200.886230, -440.991333, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  440. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  441. tmpobjid = CreateObject(19447, -3197.388671, -440.991333, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  442. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  443. tmpobjid = CreateObject(19447, -3193.890136, -440.991333, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  444. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  445. tmpobjid = CreateObject(19447, -3190.395263, -440.991333, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  446. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  447. tmpobjid = CreateObject(19447, -3186.896728, -440.991333, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  448. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  449. tmpobjid = CreateObject(19447, -3204.384765, -431.360595, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  450. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  451. tmpobjid = CreateObject(19447, -3200.886230, -431.360595, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  452. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  453. tmpobjid = CreateObject(19447, -3197.388671, -431.360595, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  454. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  455. tmpobjid = CreateObject(19447, -3193.890136, -431.360595, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  456. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  457. tmpobjid = CreateObject(19447, -3190.395263, -431.360595, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  458. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  459. tmpobjid = CreateObject(19447, -3186.896728, -431.360595, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  460. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  461. tmpobjid = CreateObject(19447, -3232.371826, -479.515075, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  462. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  463. tmpobjid = CreateObject(19447, -3228.873291, -479.515075, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  464. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  465. tmpobjid = CreateObject(19447, -3246.361328, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  466. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  467. tmpobjid = CreateObject(19447, -3242.862792, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  468. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  469. tmpobjid = CreateObject(19447, -3239.365234, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  470. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  471. tmpobjid = CreateObject(19447, -3235.866699, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  472. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  473. tmpobjid = CreateObject(19447, -3183.400390, -489.147033, 48.162952, 0.000000, 90.000000, 0.000000, 300.00);
  474. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  475. tmpobjid = CreateObject(19447, -3179.901855, -489.147033, 48.162956, 0.000000, 90.000000, 0.000000, 300.00);
  476. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  477. tmpobjid = CreateObject(19447, -3232.371826, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  478. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  479. tmpobjid = CreateObject(19447, -3228.873291, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  480. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  481. tmpobjid = CreateObject(19447, -3246.361328, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  482. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  483. tmpobjid = CreateObject(19447, -3242.862792, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  484. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  485. tmpobjid = CreateObject(19447, -3183.400390, -479.515075, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  486. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  487. tmpobjid = CreateObject(19447, -3179.901855, -479.515075, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  488. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  489. tmpobjid = CreateObject(19447, -3239.365234, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  490. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  491. tmpobjid = CreateObject(19447, -3235.866699, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  492. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  493. tmpobjid = CreateObject(19447, -3232.371826, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  494. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  495. tmpobjid = CreateObject(19447, -3242.862792, -488.035888, 50.830928, 0.000000, 90.000000, 0.000000, 300.00);
  496. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  497. tmpobjid = CreateObject(19447, -3183.400390, -469.884338, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  498. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  499. tmpobjid = CreateObject(19447, -3179.901855, -469.884338, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  500. SetObjectMaterial(tmpobjid, 0, 6869, "vegastemp1", "vgnbarb_wall_128", 0x00000000);
  501. tmpobjid = CreateObject(19447, -3239.365234, -488.034881, 50.832927, 0.000000, 90.000000, 0.000000, 300.00);
  502. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  503. tmpobjid = CreateObject(19447, -3246.361328, -488.035858, 50.832927, 0.000000, 90.000000, 0.000000, 300.00);
  504. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  505. tmpobjid = CreateObject(19447, -3235.866699, -479.515075, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  506. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  507. tmpobjid = CreateObject(19447, -3232.371826, -479.515075, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  508. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  509. tmpobjid = CreateObject(19447, -3183.400390, -460.254028, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  510. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  511. tmpobjid = CreateObject(19447, -3179.901855, -460.254028, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  512. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  513. tmpobjid = CreateObject(19447, -3228.873291, -479.515075, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  514. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  515. tmpobjid = CreateObject(19447, -3246.361328, -469.884338, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  516. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  517. tmpobjid = CreateObject(19447, -3242.862792, -469.884338, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  518. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  519. tmpobjid = CreateObject(19447, -3239.365234, -469.884338, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  520. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  521. tmpobjid = CreateObject(19447, -3183.400390, -450.623291, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  522. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  523. tmpobjid = CreateObject(19447, -3179.901855, -450.623291, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  524. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  525. tmpobjid = CreateObject(19447, -3235.866699, -469.884338, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  526. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  527. tmpobjid = CreateObject(19447, -3232.371826, -469.884338, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  528. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  529. tmpobjid = CreateObject(19447, -3228.873291, -469.884338, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  530. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  531. tmpobjid = CreateObject(19447, -3246.361328, -460.254028, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  532. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  533. tmpobjid = CreateObject(19447, -3183.400390, -440.991333, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  534. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  535. tmpobjid = CreateObject(19447, -3179.901855, -440.991333, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  536. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  537. tmpobjid = CreateObject(19447, -3242.862792, -460.254028, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  538. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  539. tmpobjid = CreateObject(19447, -3239.365234, -460.254028, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  540. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  541. tmpobjid = CreateObject(19447, -3235.866699, -460.254028, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  542. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  543. tmpobjid = CreateObject(19447, -3232.371826, -460.254028, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  544. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  545. tmpobjid = CreateObject(19447, -3183.400390, -431.360595, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  546. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  547. tmpobjid = CreateObject(19447, -3179.901855, -431.360595, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  548. SetObjectMaterial(tmpobjid, 0, 2755, "ab_dojowall", "mp_apt1_roomfloor", 0xFFFFFFFF);
  549. tmpobjid = CreateObject(19447, -3228.873291, -460.254028, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  550. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  551. tmpobjid = CreateObject(19447, -3246.361328, -450.623291, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  552. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  553. tmpobjid = CreateObject(19447, -3242.862792, -450.623291, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  554. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  555. tmpobjid = CreateObject(19447, -3239.365234, -450.623291, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  556. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  557. tmpobjid = CreateObject(19447, -3235.866699, -450.623291, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  558. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  559. tmpobjid = CreateObject(19447, -3232.371826, -450.623291, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  560. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  561. tmpobjid = CreateObject(19447, -3228.873291, -450.623291, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  562. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  563. tmpobjid = CreateObject(19447, -3246.361328, -440.991333, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  564. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  565. tmpobjid = CreateObject(19447, -3242.862792, -440.991333, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  566. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  567. tmpobjid = CreateObject(19447, -3239.365234, -440.991333, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  568. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  569. tmpobjid = CreateObject(19447, -3235.866699, -440.991333, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  570. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  571. tmpobjid = CreateObject(19447, -3232.371826, -440.991333, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  572. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  573. tmpobjid = CreateObject(19447, -3228.873291, -440.991333, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  574. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  575. tmpobjid = CreateObject(19447, -3246.361328, -431.360595, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  576. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  577. tmpobjid = CreateObject(19447, -3274.340820, -489.147033, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  578. SetObjectMaterial(tmpobjid, 0, 15046, "svcunthoose", "csGarageTrolley01psd", 0xFFFFFFFF);
  579. tmpobjid = CreateObject(19447, -3273.171142, -489.144866, 46.864959, 0.000000, 90.000000, 0.000000, 300.00);
  580. SetObjectMaterial(tmpobjid, 0, 15046, "svcunthoose", "csGarageTrolley01psd", 0xFFFFFFFF);
  581. tmpobjid = CreateObject(19447, -3242.862792, -431.360595, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  582. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  583. tmpobjid = CreateObject(19447, -3239.365234, -431.360595, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  584. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  585. tmpobjid = CreateObject(19447, -3235.866699, -431.360595, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  586. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  587. tmpobjid = CreateObject(19447, -3232.371826, -431.360595, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  588. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  589. tmpobjid = CreateObject(19447, -3274.340820, -479.515075, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  590. SetObjectMaterial(tmpobjid, 0, 15046, "svcunthoose", "csGarageTrolley01psd", 0xFFFFFFFF);
  591. tmpobjid = CreateObject(19447, -3270.842285, -479.515075, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  592. SetObjectMaterial(tmpobjid, 0, 15046, "svcunthoose", "csGarageTrolley01psd", 0xFFFFFFFF);
  593. tmpobjid = CreateObject(19447, -3228.873291, -431.360595, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  594. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  595. tmpobjid = CreateObject(19447, -3228.873291, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  596. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  597. tmpobjid = CreateObject(19447, -3246.361328, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  598. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  599. tmpobjid = CreateObject(19447, -3242.862792, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  600. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  601. tmpobjid = CreateObject(19447, -3256.851318, -469.884338, 46.859962, 0.000000, 90.000000, 0.000000, 300.00);
  602. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  603. tmpobjid = CreateObject(19447, -3270.842285, -469.884338, 46.860961, 0.000000, 90.000000, 0.000000, 300.00);
  604. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  605. tmpobjid = CreateObject(19447, -3230.412841, -478.401916, 45.847000, -0.000007, 180.000000, 0.000000, 300.00);
  606. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  607. tmpobjid = CreateObject(19447, -3230.412841, -478.401916, 49.341033, -0.000007, 180.000000, 0.000000, 300.00);
  608. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  609. tmpobjid = CreateObject(19447, -3184.689941, -484.419769, 46.347015, 0.000000, 180.000000, 450.000000, 300.00);
  610. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "AH_wdpanscum", 0x00000000);
  611. tmpobjid = CreateObject(19447, -3239.365234, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  612. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  613. tmpobjid = CreateObject(19447, -3274.340820, -460.254028, 46.859958, 0.000000, 90.000000, 0.000000, 300.00);
  614. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  615. tmpobjid = CreateObject(19447, -3270.842285, -460.254028, 46.859962, 0.000000, 90.000000, 0.000000, 300.00);
  616. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  617. tmpobjid = CreateObject(19447, -3235.866699, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  618. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  619. tmpobjid = CreateObject(19447, -3232.371826, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  620. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  621. tmpobjid = CreateObject(19447, -3194.320800, -484.419769, 46.347015, 0.000000, 180.000000, 450.000000, 300.00);
  622. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "AH_wdpanscum", 0x00000000);
  623. tmpobjid = CreateObject(19447, -3199.050537, -489.325134, 46.347015, 0.000007, 180.000000, 179.999954, 300.00);
  624. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "AH_wdpanscum", 0x00000000);
  625. tmpobjid = CreateObject(19447, -3274.340820, -450.623291, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  626. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  627. tmpobjid = CreateObject(19447, -3270.842285, -450.623291, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  628. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  629. tmpobjid = CreateObject(19447, -3199.050537, -498.955993, 46.347015, 0.000007, 180.000000, 179.999954, 300.00);
  630. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "AH_wdpanscum", 0x00000000);
  631. tmpobjid = CreateObject(19447, -3225.376953, -479.515075, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  632. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  633. tmpobjid = CreateObject(19447, -3221.878417, -479.515075, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  634. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  635. tmpobjid = CreateObject(19447, -3218.380859, -479.515075, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  636. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  637. tmpobjid = CreateObject(19447, -3258.727539, -472.443145, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  638. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  639. tmpobjid = CreateObject(19447, -3273.123779, -431.787628, 46.864959, 0.000000, 90.000000, 0.000000, 300.00);
  640. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  641. tmpobjid = CreateObject(19447, -3180.169677, -471.279296, 52.839080, 0.000012, 180.000000, 179.999862, 300.00);
  642. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  643. tmpobjid = CreateObject(19447, -3180.169677, -480.911010, 52.839080, 0.000012, 180.000000, 179.999862, 300.00);
  644. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  645. tmpobjid = CreateObject(19447, -3182.359375, -487.469329, 52.839080, 0.000007, 180.000000, 134.999908, 300.00);
  646. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  647. tmpobjid = CreateObject(19447, -3225.376953, -469.884338, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  648. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  649. tmpobjid = CreateObject(19447, -3268.358398, -472.443145, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  650. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  651. tmpobjid = CreateObject(19447, -3258.727539, -472.443145, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  652. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  653. tmpobjid = CreateObject(19447, -3221.878417, -469.884338, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  654. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  655. tmpobjid = CreateObject(19447, -3218.380859, -469.884338, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  656. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  657. tmpobjid = CreateObject(19447, -3189.169433, -494.279388, 52.839080, 0.000007, 180.000000, 134.999908, 300.00);
  658. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  659. tmpobjid = CreateObject(19447, -3195.979980, -501.090118, 52.839080, 0.000007, 180.000000, 134.999908, 300.00);
  660. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  661. tmpobjid = CreateObject(19447, -3201.938720, -503.679809, 52.839080, 0.000000, 180.000000, 89.999931, 300.00);
  662. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  663. tmpobjid = CreateObject(19447, -3225.376953, -460.254028, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  664. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  665. tmpobjid = CreateObject(19447, -3269.674804, -489.146820, 46.864955, 0.000000, 90.000000, 0.000000, 300.00);
  666. SetObjectMaterial(tmpobjid, 0, 15046, "svcunthoose", "csGarageTrolley01psd", 0xFFFFFFFF);
  667. tmpobjid = CreateObject(19447, -3266.176269, -489.647064, 46.864959, 0.000000, 90.000000, 0.000000, 300.00);
  668. SetObjectMaterial(tmpobjid, 0, 15046, "svcunthoose", "csGarageTrolley01psd", 0xFFFFFFFF);
  669. tmpobjid = CreateObject(19447, -3262.678710, -489.647064, 46.864955, 0.000000, 90.000000, 0.000000, 300.00);
  670. SetObjectMaterial(tmpobjid, 0, 14651, "ab_trukstpd", "Bow_bar_flooring", 0x00000000);
  671. tmpobjid = CreateObject(19447, -3259.180175, -489.647064, 46.864959, 0.000000, 90.000000, 0.000000, 300.00);
  672. SetObjectMaterial(tmpobjid, 0, 14651, "ab_trukstpd", "Bow_bar_flooring", 0x00000000);
  673. tmpobjid = CreateObject(19447, -3253.356445, -489.147033, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  674. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  675. tmpobjid = CreateObject(19447, -3249.857910, -489.147033, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  676. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  677. tmpobjid = CreateObject(19447, -3267.345947, -479.515075, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  678. SetObjectMaterial(tmpobjid, 0, 15046, "svcunthoose", "csGarageTrolley01psd", 0xFFFFFFFF);
  679. tmpobjid = CreateObject(19447, -3266.176269, -480.015106, 46.864959, 0.000000, 90.000000, 0.000000, 300.00);
  680. SetObjectMaterial(tmpobjid, 0, 15046, "svcunthoose", "csGarageTrolley01psd", 0xFFFFFFFF);
  681. tmpobjid = CreateObject(19447, -3262.678710, -480.015106, 46.864955, 0.000000, 90.000000, 0.000000, 300.00);
  682. SetObjectMaterial(tmpobjid, 0, 14651, "ab_trukstpd", "Bow_bar_flooring", 0x00000000);
  683. tmpobjid = CreateObject(19447, -3259.180175, -480.015106, 46.864959, 0.000000, 90.000000, 0.000000, 300.00);
  684. SetObjectMaterial(tmpobjid, 0, 14651, "ab_trukstpd", "Bow_bar_flooring", 0x00000000);
  685. tmpobjid = CreateObject(19447, -3253.356445, -479.515075, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  686. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  687. tmpobjid = CreateObject(19447, -3249.857910, -479.515075, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  688. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  689. tmpobjid = CreateObject(19447, -3267.345947, -469.884338, 46.861957, 0.000000, 90.000000, 0.000000, 300.00);
  690. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  691. tmpobjid = CreateObject(19447, -3263.847412, -469.884338, 46.859962, 0.000000, 90.000000, 0.000000, 300.00);
  692. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  693. tmpobjid = CreateObject(19447, -3260.349853, -469.884338, 46.859958, 0.000000, 90.000000, 0.000000, 300.00);
  694. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  695. tmpobjid = CreateObject(19447, -3256.851318, -469.884338, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  696. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  697. tmpobjid = CreateObject(19447, -3253.356445, -469.884338, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  698. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  699. tmpobjid = CreateObject(19447, -3249.857910, -469.884338, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  700. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  701. tmpobjid = CreateObject(19447, -3267.345947, -460.254028, 46.859958, 0.000000, 90.000000, 0.000000, 300.00);
  702. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  703. tmpobjid = CreateObject(19447, -3263.847412, -460.254028, 46.859962, 0.000000, 90.000000, 0.000000, 300.00);
  704. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  705. tmpobjid = CreateObject(19447, -3260.349853, -460.254028, 46.859958, 0.000000, 90.000000, 0.000000, 300.00);
  706. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  707. tmpobjid = CreateObject(19447, -3256.851318, -460.254028, 46.859962, 0.000000, 90.000000, 0.000000, 300.00);
  708. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  709. tmpobjid = CreateObject(19447, -3253.356445, -460.254028, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  710. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  711. tmpobjid = CreateObject(19447, -3249.857910, -460.254028, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  712. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  713. tmpobjid = CreateObject(19447, -3267.345947, -450.623291, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  714. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  715. tmpobjid = CreateObject(19447, -3263.847412, -450.623291, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  716. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  717. tmpobjid = CreateObject(19447, -3260.349853, -450.623291, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  718. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  719. tmpobjid = CreateObject(19447, -3256.851318, -450.623291, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  720. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  721. tmpobjid = CreateObject(19447, -3253.356445, -450.623291, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  722. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  723. tmpobjid = CreateObject(19447, -3249.857910, -450.623291, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  724. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  725. tmpobjid = CreateObject(19447, -3269.627441, -431.787628, 46.864955, 0.000000, 90.000000, 0.000000, 300.00);
  726. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  727. tmpobjid = CreateObject(19447, -3266.128906, -431.787628, 46.864959, 0.000000, 90.000000, 0.000000, 300.00);
  728. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  729. tmpobjid = CreateObject(19447, -3262.631347, -431.787628, 46.864955, 0.000000, 90.000000, 0.000000, 300.00);
  730. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  731. tmpobjid = CreateObject(19447, -3259.132812, -431.787628, 46.864959, 0.000000, 90.000000, 0.000000, 300.00);
  732. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  733. tmpobjid = CreateObject(19447, -3253.356445, -440.991333, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  734. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  735. tmpobjid = CreateObject(19447, -3249.857910, -440.991333, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  736. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  737. tmpobjid = CreateObject(19447, -3268.358398, -473.482360, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  738. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  739. tmpobjid = CreateObject(19447, -3258.727539, -473.482360, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  740. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  741. tmpobjid = CreateObject(19447, -3268.358398, -473.482360, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  742. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  743. tmpobjid = CreateObject(19447, -3258.727539, -473.482360, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  744. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  745. tmpobjid = CreateObject(19447, -3253.356445, -431.360595, 46.862957, 0.000000, 90.000000, 0.000000, 300.00);
  746. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  747. tmpobjid = CreateObject(19447, -3249.857910, -431.360595, 46.862960, 0.000000, 90.000000, 0.000000, 300.00);
  748. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  749. tmpobjid = CreateObject(19447, -3221.878417, -460.254028, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  750. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  751. tmpobjid = CreateObject(19447, -3218.380859, -460.254028, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  752. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  753. tmpobjid = CreateObject(19447, -3211.569580, -503.679809, 52.839080, 0.000000, 180.000000, 89.999931, 300.00);
  754. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  755. tmpobjid = CreateObject(19447, -3216.631103, -498.895233, 52.839080, 0.000007, 180.000000, 179.999954, 300.00);
  756. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  757. tmpobjid = CreateObject(19447, -3216.631103, -489.264373, 52.839080, 0.000007, 180.000000, 179.999954, 300.00);
  758. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  759. tmpobjid = CreateObject(19447, -3225.376953, -450.623291, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  760. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  761. tmpobjid = CreateObject(19447, -3221.878417, -450.623291, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  762. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  763. tmpobjid = CreateObject(19447, -3218.380859, -450.623291, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  764. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  765. tmpobjid = CreateObject(19447, -3216.631103, -479.634429, 52.839080, 0.000007, 180.000000, 179.999954, 300.00);
  766. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  767. tmpobjid = CreateObject(19447, -3216.631103, -470.003570, 52.839080, 0.000007, 180.000000, 179.999954, 300.00);
  768. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  769. tmpobjid = CreateObject(19447, -3211.903320, -465.097320, 52.839080, 0.000007, 180.000000, -90.000030, 300.00);
  770. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  771. tmpobjid = CreateObject(19447, -3225.376953, -440.991333, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  772. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  773. tmpobjid = CreateObject(19447, -3221.878417, -440.991333, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  774. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  775. tmpobjid = CreateObject(19447, -3218.380859, -440.991333, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  776. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  777. tmpobjid = CreateObject(19447, -3202.272460, -465.097320, 52.839080, 0.000007, 180.000000, -90.000030, 300.00);
  778. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  779. tmpobjid = CreateObject(19447, -3192.640869, -465.097320, 52.839080, 0.000007, 180.000000, -90.000030, 300.00);
  780. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  781. tmpobjid = CreateObject(19447, -3183.010009, -465.097320, 52.839080, 0.000007, 180.000000, -90.000030, 300.00);
  782. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  783. tmpobjid = CreateObject(19447, -3225.376953, -431.360595, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  784. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  785. tmpobjid = CreateObject(19447, -3221.878417, -431.360595, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  786. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  787. tmpobjid = CreateObject(19447, -3218.380859, -431.360595, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  788. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  789. tmpobjid = CreateObject(19447, -3180.169677, -461.648437, 52.838081, 0.000012, 180.000000, 179.999862, 300.00);
  790. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  791. tmpobjid = CreateObject(19447, -3216.805664, -480.911010, 52.538032, 0.000012, 180.000000, 179.999862, 300.00);
  792. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  793. tmpobjid = CreateObject(19447, -3216.805664, -461.648437, 52.538032, 0.000012, 180.000000, 179.999862, 300.00);
  794. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  795. tmpobjid = CreateObject(19447, -3216.805664, -471.279296, 52.538032, 0.000012, 180.000000, 179.999862, 300.00);
  796. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  797. tmpobjid = CreateObject(19447, -3216.805664, -480.911010, 56.032066, 0.000012, 180.000000, 179.999862, 300.00);
  798. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  799. tmpobjid = CreateObject(19447, -3216.805664, -461.648437, 56.032066, 0.000012, 180.000000, 179.999862, 300.00);
  800. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  801. tmpobjid = CreateObject(19447, -3216.805664, -471.279296, 56.032066, 0.000012, 180.000000, 179.999862, 300.00);
  802. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  803. tmpobjid = CreateObject(19447, -3216.805664, -452.019134, 52.538032, 0.000012, 180.000000, 179.999862, 300.00);
  804. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  805. tmpobjid = CreateObject(19447, -3216.805664, -432.756561, 52.538032, 0.000012, 180.000000, 179.999862, 300.00);
  806. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  807. tmpobjid = CreateObject(19447, -3216.805664, -442.387420, 52.538032, 0.000012, 180.000000, 179.999862, 300.00);
  808. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  809. tmpobjid = CreateObject(19447, -3216.805664, -452.019134, 56.032066, 0.000012, 180.000000, 179.999862, 300.00);
  810. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  811. tmpobjid = CreateObject(19447, -3216.805664, -432.756561, 56.032066, 0.000012, 180.000000, 179.999862, 300.00);
  812. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  813. tmpobjid = CreateObject(19447, -3216.805664, -442.387420, 56.032066, 0.000012, 180.000000, 179.999862, 300.00);
  814. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  815. tmpobjid = CreateObject(19447, -3262.198730, -461.756561, 52.537044, -0.000003, 180.000000, -0.000209, 300.00);
  816. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  817. tmpobjid = CreateObject(19447, -3262.198730, -481.019134, 52.537044, -0.000003, 180.000000, -0.000209, 300.00);
  818. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  819. tmpobjid = CreateObject(19447, -3262.198730, -471.388275, 52.537044, -0.000003, 180.000000, -0.000209, 300.00);
  820. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  821. tmpobjid = CreateObject(19447, -3262.198730, -461.756561, 56.031078, -0.000003, 180.000000, -0.000209, 300.00);
  822. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  823. tmpobjid = CreateObject(19447, -3262.198730, -481.019134, 56.031078, -0.000003, 180.000000, -0.000209, 300.00);
  824. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  825. tmpobjid = CreateObject(19447, -3262.198730, -471.388275, 56.031078, -0.000003, 180.000000, -0.000209, 300.00);
  826. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  827. tmpobjid = CreateObject(19447, -3262.198730, -432.861816, 52.537044, -0.000003, 180.000000, -0.000209, 300.00);
  828. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  829. tmpobjid = CreateObject(19447, -3262.198730, -452.124389, 52.537044, -0.000003, 180.000000, -0.000209, 300.00);
  830. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  831. tmpobjid = CreateObject(19447, -3262.198730, -442.493530, 52.537044, -0.000003, 180.000000, -0.000209, 300.00);
  832. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  833. tmpobjid = CreateObject(19447, -3262.198730, -432.861816, 56.031078, -0.000003, 180.000000, -0.000209, 300.00);
  834. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  835. tmpobjid = CreateObject(19447, -3262.198730, -452.124389, 56.031078, -0.000003, 180.000000, -0.000209, 300.00);
  836. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  837. tmpobjid = CreateObject(19447, -3262.198730, -442.493530, 56.031078, -0.000003, 180.000000, -0.000209, 300.00);
  838. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  839. tmpobjid = CreateObject(19447, -3269.540283, -428.093078, 52.537044, -0.000003, 180.000000, 89.999763, 300.00);
  840. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  841. tmpobjid = CreateObject(19447, -3250.277587, -428.093078, 52.537044, -0.000003, 180.000000, 89.999763, 300.00);
  842. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  843. tmpobjid = CreateObject(19447, -3259.908447, -428.093078, 52.537044, -0.000003, 180.000000, 89.999763, 300.00);
  844. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  845. tmpobjid = CreateObject(19447, -3269.540283, -428.093078, 56.031078, -0.000003, 180.000000, 89.999763, 300.00);
  846. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  847. tmpobjid = CreateObject(19447, -3250.277587, -428.093078, 56.031078, -0.000003, 180.000000, 89.999763, 300.00);
  848. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  849. tmpobjid = CreateObject(19447, -3259.908447, -428.093078, 56.031078, -0.000003, 180.000000, 89.999763, 300.00);
  850. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  851. tmpobjid = CreateObject(19447, -3240.644287, -428.093078, 52.537044, -0.000003, 180.000000, 89.999763, 300.00);
  852. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  853. tmpobjid = CreateObject(19447, -3221.381591, -428.090057, 52.537044, -0.000003, 180.000000, 89.999763, 300.00);
  854. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  855. tmpobjid = CreateObject(19447, -3231.012451, -428.093078, 52.537044, -0.000003, 180.000000, 89.999763, 300.00);
  856. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  857. tmpobjid = CreateObject(19447, -3240.644287, -428.093078, 56.031078, -0.000003, 180.000000, 89.999763, 300.00);
  858. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  859. tmpobjid = CreateObject(19447, -3221.381591, -428.093078, 56.031078, -0.000003, 180.000000, 89.999763, 300.00);
  860. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  861. tmpobjid = CreateObject(19447, -3231.012451, -428.093078, 56.031078, -0.000003, 180.000000, 89.999763, 300.00);
  862. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  863. tmpobjid = CreateObject(19447, -3269.543212, -483.128906, 52.537044, -0.000003, 180.000000, 89.999763, 300.00);
  864. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  865. tmpobjid = CreateObject(19447, -3250.280517, -483.128906, 52.537044, -0.000003, 180.000000, 89.999763, 300.00);
  866. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  867. tmpobjid = CreateObject(19447, -3259.911376, -483.128906, 52.537044, -0.000003, 180.000000, 89.999763, 300.00);
  868. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  869. tmpobjid = CreateObject(19447, -3269.543212, -483.128906, 56.031078, -0.000003, 180.000000, 89.999763, 300.00);
  870. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  871. tmpobjid = CreateObject(19447, -3250.280517, -483.128906, 56.031078, -0.000003, 180.000000, 89.999763, 300.00);
  872. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  873. tmpobjid = CreateObject(19447, -3259.911376, -483.128906, 56.031078, -0.000003, 180.000000, 89.999763, 300.00);
  874. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  875. tmpobjid = CreateObject(19447, -3240.647216, -483.128906, 52.537044, -0.000003, 180.000000, 89.999763, 300.00);
  876. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  877. tmpobjid = CreateObject(19447, -3221.384521, -483.128906, 52.537044, -0.000003, 180.000000, 89.999763, 300.00);
  878. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  879. tmpobjid = CreateObject(19447, -3231.015380, -483.128906, 52.537044, -0.000003, 180.000000, 89.999763, 300.00);
  880. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  881. tmpobjid = CreateObject(19447, -3240.647216, -483.128906, 56.031078, -0.000003, 180.000000, 89.999763, 300.00);
  882. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  883. tmpobjid = CreateObject(19447, -3221.384521, -483.128906, 56.031078, -0.000003, 180.000000, 89.999763, 300.00);
  884. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  885. tmpobjid = CreateObject(19447, -3231.015380, -483.128906, 56.031078, -0.000003, 180.000000, 89.999763, 300.00);
  886. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  887. tmpobjid = CreateObject(19447, -3228.873291, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  888. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  889. tmpobjid = CreateObject(19447, -3246.361328, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  890. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  891. tmpobjid = CreateObject(19447, -3242.862792, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  892. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  893. tmpobjid = CreateObject(19447, -3239.365234, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  894. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  895. tmpobjid = CreateObject(19447, -3235.866699, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  896. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  897. tmpobjid = CreateObject(19447, -3232.371826, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  898. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  899. tmpobjid = CreateObject(19447, -3228.873291, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  900. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  901. tmpobjid = CreateObject(19447, -3246.361328, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  902. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  903. tmpobjid = CreateObject(19447, -3242.862792, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  904. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  905. tmpobjid = CreateObject(19447, -3239.365234, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  906. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  907. tmpobjid = CreateObject(19447, -3235.866699, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  908. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  909. tmpobjid = CreateObject(19447, -3232.371826, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  910. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  911. tmpobjid = CreateObject(19447, -3228.873291, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  912. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  913. tmpobjid = CreateObject(19447, -3225.376953, -479.515075, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  914. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  915. tmpobjid = CreateObject(19447, -3221.878417, -479.515075, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  916. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  917. tmpobjid = CreateObject(19447, -3218.380859, -479.515075, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  918. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  919. tmpobjid = CreateObject(19447, -3225.376953, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  920. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  921. tmpobjid = CreateObject(19447, -3248.198730, -479.519104, 52.537044, -0.000003, 180.000000, -0.000209, 300.00);
  922. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  923. tmpobjid = CreateObject(19447, -3248.198730, -479.519104, 56.031078, -0.000003, 180.000000, -0.000209, 300.00);
  924. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  925. tmpobjid = CreateObject(19447, -3246.198730, -479.519104, 52.537044, -0.000003, 180.000000, -0.000209, 300.00);
  926. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  927. tmpobjid = CreateObject(19447, -3246.198730, -479.519104, 56.031078, -0.000003, 180.000000, -0.000209, 300.00);
  928. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  929. tmpobjid = CreateObject(19447, -3240.198730, -479.519104, 52.537044, -0.000003, 180.000000, -0.000209, 300.00);
  930. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  931. tmpobjid = CreateObject(19447, -3240.198730, -479.519104, 56.031078, -0.000003, 180.000000, -0.000209, 300.00);
  932. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  933. tmpobjid = CreateObject(19447, -3237.708984, -479.519104, 52.537044, -0.000003, 180.000000, -0.000209, 300.00);
  934. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  935. tmpobjid = CreateObject(19447, -3237.708984, -479.519104, 56.031078, -0.000003, 180.000000, -0.000209, 300.00);
  936. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  937. tmpobjid = CreateObject(18762, -3246.785156, -475.195922, 53.388515, 0.000000, 0.000000, 0.000000, 300.00);
  938. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  939. tmpobjid = CreateObject(18762, -3247.618408, -475.197937, 53.388515, 0.000000, 0.000000, 0.000000, 300.00);
  940. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  941. tmpobjid = CreateObject(19447, -3246.361328, -479.513244, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  942. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  943. tmpobjid = CreateObject(19447, -3242.861816, -479.513244, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  944. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  945. tmpobjid = CreateObject(19447, -3221.878417, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  946. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  947. tmpobjid = CreateObject(19447, -3218.380859, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  948. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  949. tmpobjid = CreateObject(19447, -3225.376953, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  950. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  951. tmpobjid = CreateObject(19447, -3221.878417, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  952. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  953. tmpobjid = CreateObject(19447, -3218.380859, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  954. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  955. tmpobjid = CreateObject(19447, -3225.376953, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  956. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  957. tmpobjid = CreateObject(19447, -3239.364257, -479.511230, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  958. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  959. tmpobjid = CreateObject(18762, -3246.785156, -475.198944, 58.188522, 0.000000, 0.000000, 0.000000, 300.00);
  960. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  961. tmpobjid = CreateObject(19447, -3260.349853, -479.515075, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  962. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  963. tmpobjid = CreateObject(19447, -3256.851318, -479.515075, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  964. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  965. tmpobjid = CreateObject(19447, -3253.356445, -479.515075, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  966. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  967. tmpobjid = CreateObject(19447, -3249.857910, -479.515075, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  968. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  969. tmpobjid = CreateObject(18762, -3247.618408, -475.200958, 58.188522, 0.000000, 0.000000, 0.000000, 300.00);
  970. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  971. tmpobjid = CreateObject(18762, -3238.779785, -475.195922, 53.388515, 0.000000, 0.000000, 0.000000, 300.00);
  972. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  973. tmpobjid = CreateObject(19447, -3260.349853, -469.884338, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  974. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  975. tmpobjid = CreateObject(19447, -3256.851318, -469.884338, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  976. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  977. tmpobjid = CreateObject(19447, -3253.356445, -469.884338, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  978. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  979. tmpobjid = CreateObject(19447, -3249.857910, -469.884338, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  980. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  981. tmpobjid = CreateObject(18762, -3239.613037, -475.197937, 53.388515, 0.000000, 0.000000, 0.000000, 300.00);
  982. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  983. tmpobjid = CreateObject(18762, -3238.779785, -475.198944, 58.188522, 0.000000, 0.000000, 0.000000, 300.00);
  984. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  985. tmpobjid = CreateObject(19447, -3260.349853, -460.254028, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  986. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  987. tmpobjid = CreateObject(19447, -3256.851318, -460.254028, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  988. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  989. tmpobjid = CreateObject(19447, -3253.356445, -460.254028, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  990. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  991. tmpobjid = CreateObject(19447, -3249.857910, -460.254028, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  992. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  993. tmpobjid = CreateObject(18762, -3239.613037, -475.200958, 58.188522, 0.000000, 0.000000, 0.000000, 300.00);
  994. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  995. tmpobjid = CreateObject(18762, -3238.297607, -475.193908, 53.388515, 0.000000, 0.000000, 0.000000, 300.00);
  996. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  997. tmpobjid = CreateObject(19447, -3260.349853, -450.623291, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  998. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  999. tmpobjid = CreateObject(19447, -3256.851318, -450.623291, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  1000. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  1001. tmpobjid = CreateObject(19447, -3253.356445, -450.623291, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  1002. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  1003. tmpobjid = CreateObject(19447, -3249.857910, -450.623291, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  1004. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  1005. tmpobjid = CreateObject(18762, -3238.297607, -475.196929, 58.188522, 0.000000, 0.000000, 0.000000, 300.00);
  1006. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  1007. tmpobjid = CreateObject(19447, -3228.427734, -494.225494, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  1008. SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
  1009. tmpobjid = CreateObject(19447, -3260.349853, -440.991333, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  1010. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  1011. tmpobjid = CreateObject(19447, -3256.851318, -440.991333, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  1012. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  1013. tmpobjid = CreateObject(19447, -3253.356445, -440.991333, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  1014. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  1015. tmpobjid = CreateObject(19447, -3249.857910, -440.991333, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  1016. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  1017. tmpobjid = CreateObject(19447, -3228.427734, -494.225494, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  1018. SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
  1019. tmpobjid = CreateObject(19447, -3238.059082, -494.225494, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  1020. SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
  1021. tmpobjid = CreateObject(19447, -3260.349853, -431.360595, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  1022. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  1023. tmpobjid = CreateObject(19447, -3256.851318, -431.360595, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  1024. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  1025. tmpobjid = CreateObject(19447, -3253.356445, -431.360595, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  1026. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  1027. tmpobjid = CreateObject(19447, -3249.857910, -431.360595, 51.004947, 0.000000, 90.000000, 0.000000, 300.00);
  1028. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  1029. tmpobjid = CreateObject(19447, -3253.160156, -498.777770, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1030. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1031. tmpobjid = CreateObject(19447, -3249.661621, -498.777770, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1032. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1033. tmpobjid = CreateObject(19447, -3246.361328, -498.777770, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1034. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1035. tmpobjid = CreateObject(19447, -3242.862792, -498.777770, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1036. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1037. tmpobjid = CreateObject(19447, -3239.365234, -498.777770, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1038. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1039. tmpobjid = CreateObject(19447, -3235.866699, -498.777770, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1040. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1041. tmpobjid = CreateObject(19447, -3232.371826, -498.777770, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1042. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1043. tmpobjid = CreateObject(19447, -3228.873291, -498.777770, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1044. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1045. tmpobjid = CreateObject(19447, -3246.361328, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1046. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1047. tmpobjid = CreateObject(19447, -3242.862792, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1048. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1049. tmpobjid = CreateObject(19447, -3239.365234, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1050. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1051. tmpobjid = CreateObject(19447, -3235.866699, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1052. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1053. tmpobjid = CreateObject(19447, -3232.371826, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1054. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1055. tmpobjid = CreateObject(19447, -3228.873291, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1056. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1057. tmpobjid = CreateObject(19447, -3247.858642, -479.515075, 50.830928, 0.000000, 90.000000, 0.000000, 300.00);
  1058. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1059. tmpobjid = CreateObject(19447, -3221.878417, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1060. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1061. tmpobjid = CreateObject(19447, -3238.530517, -479.515075, 50.829929, 0.000000, 90.000000, 0.000000, 300.00);
  1062. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1063. tmpobjid = CreateObject(19447, -3235.866699, -479.515075, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1064. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1065. tmpobjid = CreateObject(19447, -3232.371826, -479.515075, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1066. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1067. tmpobjid = CreateObject(19447, -3228.873291, -479.515075, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1068. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1069. tmpobjid = CreateObject(19447, -3246.361328, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1070. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1071. tmpobjid = CreateObject(19447, -3242.862792, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1072. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1073. tmpobjid = CreateObject(19447, -3239.365234, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1074. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1075. tmpobjid = CreateObject(19447, -3235.866699, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1076. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1077. tmpobjid = CreateObject(19447, -3232.371826, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1078. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1079. tmpobjid = CreateObject(19447, -3228.873291, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1080. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1081. tmpobjid = CreateObject(19447, -3246.361328, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1082. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1083. tmpobjid = CreateObject(19447, -3242.862792, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1084. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1085. tmpobjid = CreateObject(19447, -3239.365234, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1086. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1087. tmpobjid = CreateObject(19447, -3235.866699, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1088. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1089. tmpobjid = CreateObject(19447, -3232.371826, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1090. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1091. tmpobjid = CreateObject(19447, -3228.873291, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1092. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1093. tmpobjid = CreateObject(19447, -3246.361328, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1094. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1095. tmpobjid = CreateObject(19447, -3242.862792, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1096. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1097. tmpobjid = CreateObject(19447, -3239.365234, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1098. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1099. tmpobjid = CreateObject(19447, -3235.866699, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1100. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1101. tmpobjid = CreateObject(19447, -3232.371826, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1102. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1103. tmpobjid = CreateObject(19447, -3228.873291, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1104. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1105. tmpobjid = CreateObject(19447, -3246.361328, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1106. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1107. tmpobjid = CreateObject(19447, -3242.862792, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1108. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1109. tmpobjid = CreateObject(19447, -3239.365234, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1110. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1111. tmpobjid = CreateObject(19447, -3235.866699, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1112. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1113. tmpobjid = CreateObject(19447, -3232.371826, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1114. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1115. tmpobjid = CreateObject(19447, -3228.873291, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1116. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1117. tmpobjid = CreateObject(19447, -3246.361328, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1118. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1119. tmpobjid = CreateObject(19447, -3242.862792, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1120. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1121. tmpobjid = CreateObject(19447, -3239.365234, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1122. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1123. tmpobjid = CreateObject(19447, -3235.866699, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1124. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1125. tmpobjid = CreateObject(19447, -3232.371826, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1126. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1127. tmpobjid = CreateObject(19447, -3228.873291, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1128. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1129. tmpobjid = CreateObject(19447, -3225.376953, -498.777770, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1130. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1131. tmpobjid = CreateObject(19447, -3221.878417, -498.777770, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1132. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1133. tmpobjid = CreateObject(19447, -3218.380859, -498.777770, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1134. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1135. tmpobjid = CreateObject(19447, -3214.882324, -498.777770, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1136. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1137. tmpobjid = CreateObject(19447, -3211.387451, -498.777770, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1138. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1139. tmpobjid = CreateObject(19447, -3207.888916, -498.777770, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1140. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1141. tmpobjid = CreateObject(19447, -3225.376953, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1142. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1143. tmpobjid = CreateObject(19447, -3221.878417, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1144. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1145. tmpobjid = CreateObject(19447, -3218.380859, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1146. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1147. tmpobjid = CreateObject(19447, -3214.882324, -489.147033, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1148. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1149. tmpobjid = CreateObject(19447, -3211.387451, -489.147033, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1150. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1151. tmpobjid = CreateObject(19447, -3207.888916, -489.147033, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1152. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1153. tmpobjid = CreateObject(19447, -3225.376953, -479.515075, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1154. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1155. tmpobjid = CreateObject(19447, -3221.878417, -479.515075, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1156. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1157. tmpobjid = CreateObject(19447, -3218.380859, -479.515075, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1158. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1159. tmpobjid = CreateObject(19447, -3214.882324, -479.515075, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1160. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1161. tmpobjid = CreateObject(19447, -3211.387451, -479.515075, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1162. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1163. tmpobjid = CreateObject(19447, -3207.888916, -479.515075, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1164. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1165. tmpobjid = CreateObject(19447, -3225.376953, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1166. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1167. tmpobjid = CreateObject(19447, -3221.878417, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1168. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1169. tmpobjid = CreateObject(19447, -3218.380859, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1170. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1171. tmpobjid = CreateObject(19447, -3214.882324, -469.884338, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1172. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1173. tmpobjid = CreateObject(19447, -3211.387451, -469.884338, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1174. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1175. tmpobjid = CreateObject(19447, -3207.888916, -469.884338, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1176. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1177. tmpobjid = CreateObject(19447, -3225.376953, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1178. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1179. tmpobjid = CreateObject(19447, -3221.878417, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1180. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1181. tmpobjid = CreateObject(19447, -3218.380859, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1182. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1183. tmpobjid = CreateObject(19447, -3214.882324, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1184. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1185. tmpobjid = CreateObject(19447, -3211.387451, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1186. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1187. tmpobjid = CreateObject(19447, -3207.888916, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1188. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1189. tmpobjid = CreateObject(19447, -3225.376953, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1190. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1191. tmpobjid = CreateObject(19447, -3221.878417, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1192. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1193. tmpobjid = CreateObject(19447, -3218.380859, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1194. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1195. tmpobjid = CreateObject(19447, -3214.882324, -450.623291, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1196. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1197. tmpobjid = CreateObject(19447, -3211.387451, -450.623291, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1198. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1199. tmpobjid = CreateObject(19447, -3207.888916, -450.623291, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1200. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1201. tmpobjid = CreateObject(19447, -3225.376953, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1202. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1203. tmpobjid = CreateObject(19447, -3221.878417, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1204. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1205. tmpobjid = CreateObject(19447, -3218.380859, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1206. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1207. tmpobjid = CreateObject(19447, -3214.882324, -440.991333, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1208. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1209. tmpobjid = CreateObject(19447, -3211.387451, -440.991333, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1210. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1211. tmpobjid = CreateObject(19447, -3207.888916, -440.991333, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1212. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1213. tmpobjid = CreateObject(19447, -3225.376953, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1214. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1215. tmpobjid = CreateObject(19447, -3221.878417, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1216. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1217. tmpobjid = CreateObject(19447, -3218.380859, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1218. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1219. tmpobjid = CreateObject(19447, -3214.882324, -431.360595, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1220. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1221. tmpobjid = CreateObject(19447, -3211.387451, -431.360595, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1222. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1223. tmpobjid = CreateObject(19447, -3207.888916, -431.360595, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1224. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1225. tmpobjid = CreateObject(19447, -3204.384765, -498.777770, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1226. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1227. tmpobjid = CreateObject(19447, -3200.886230, -498.777770, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1228. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1229. tmpobjid = CreateObject(19447, -3197.388671, -498.777770, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1230. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1231. tmpobjid = CreateObject(19447, -3193.890136, -498.777770, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1232. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1233. tmpobjid = CreateObject(19447, -3190.395263, -498.777770, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1234. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1235. tmpobjid = CreateObject(19447, -3204.384765, -489.147033, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1236. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1237. tmpobjid = CreateObject(19447, -3200.886230, -489.147033, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1238. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1239. tmpobjid = CreateObject(19447, -3197.388671, -489.147033, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1240. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1241. tmpobjid = CreateObject(19447, -3193.890136, -489.147033, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1242. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1243. tmpobjid = CreateObject(19447, -3190.395263, -489.147033, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1244. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1245. tmpobjid = CreateObject(19447, -3186.896728, -489.147033, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1246. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1247. tmpobjid = CreateObject(19447, -3204.384765, -479.515075, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1248. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1249. tmpobjid = CreateObject(19447, -3200.886230, -479.515075, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1250. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1251. tmpobjid = CreateObject(19447, -3197.388671, -479.515075, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1252. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1253. tmpobjid = CreateObject(19447, -3193.890136, -479.515075, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1254. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1255. tmpobjid = CreateObject(19447, -3190.395263, -479.515075, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1256. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1257. tmpobjid = CreateObject(19447, -3186.896728, -479.515075, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1258. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1259. tmpobjid = CreateObject(19447, -3204.384765, -469.884338, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1260. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1261. tmpobjid = CreateObject(19447, -3200.886230, -469.884338, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1262. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1263. tmpobjid = CreateObject(19447, -3197.388671, -469.884338, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1264. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1265. tmpobjid = CreateObject(19447, -3193.890136, -469.884338, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1266. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1267. tmpobjid = CreateObject(19447, -3190.395263, -469.884338, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1268. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1269. tmpobjid = CreateObject(19447, -3186.896728, -469.884338, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1270. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1271. tmpobjid = CreateObject(19447, -3204.384765, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1272. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1273. tmpobjid = CreateObject(19447, -3200.886230, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1274. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1275. tmpobjid = CreateObject(19447, -3197.388671, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1276. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1277. tmpobjid = CreateObject(19447, -3193.890136, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1278. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1279. tmpobjid = CreateObject(19447, -3190.395263, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1280. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1281. tmpobjid = CreateObject(19447, -3186.896728, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1282. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1283. tmpobjid = CreateObject(19447, -3204.384765, -450.623291, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1284. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1285. tmpobjid = CreateObject(19447, -3200.886230, -450.623291, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1286. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1287. tmpobjid = CreateObject(19447, -3197.388671, -450.623291, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1288. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1289. tmpobjid = CreateObject(19447, -3193.890136, -450.623291, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1290. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1291. tmpobjid = CreateObject(19447, -3190.395263, -450.623291, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1292. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1293. tmpobjid = CreateObject(19447, -3186.896728, -450.623291, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1294. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1295. tmpobjid = CreateObject(19447, -3204.384765, -440.991333, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1296. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1297. tmpobjid = CreateObject(19447, -3200.886230, -440.991333, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1298. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1299. tmpobjid = CreateObject(19447, -3197.388671, -440.991333, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1300. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1301. tmpobjid = CreateObject(19447, -3193.890136, -440.991333, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1302. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1303. tmpobjid = CreateObject(19447, -3190.395263, -440.991333, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1304. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1305. tmpobjid = CreateObject(19447, -3186.896728, -440.991333, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1306. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1307. tmpobjid = CreateObject(19447, -3204.384765, -431.360595, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1308. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1309. tmpobjid = CreateObject(19447, -3200.886230, -431.360595, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1310. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1311. tmpobjid = CreateObject(19447, -3197.388671, -431.360595, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1312. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1313. tmpobjid = CreateObject(19447, -3193.890136, -431.360595, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1314. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1315. tmpobjid = CreateObject(19447, -3190.395263, -431.360595, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1316. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1317. tmpobjid = CreateObject(19447, -3186.896728, -431.360595, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1318. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1319. tmpobjid = CreateObject(19447, -3183.400390, -489.147033, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1320. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1321. tmpobjid = CreateObject(19447, -3179.901855, -489.147033, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1322. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1323. tmpobjid = CreateObject(19447, -3183.400390, -479.515075, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1324. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1325. tmpobjid = CreateObject(19447, -3179.901855, -479.515075, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1326. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1327. tmpobjid = CreateObject(19447, -3183.400390, -469.884338, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1328. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1329. tmpobjid = CreateObject(19447, -3179.901855, -469.884338, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1330. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1331. tmpobjid = CreateObject(19447, -3183.400390, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1332. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1333. tmpobjid = CreateObject(19447, -3179.901855, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1334. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1335. tmpobjid = CreateObject(19447, -3183.400390, -450.623291, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1336. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1337. tmpobjid = CreateObject(19447, -3179.901855, -450.623291, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1338. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1339. tmpobjid = CreateObject(19447, -3183.400390, -440.991333, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1340. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1341. tmpobjid = CreateObject(19447, -3179.901855, -440.991333, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1342. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1343. tmpobjid = CreateObject(19447, -3183.400390, -431.360595, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1344. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1345. tmpobjid = CreateObject(19447, -3179.901855, -431.360595, 53.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1346. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1347. tmpobjid = CreateObject(19447, -3274.340820, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1348. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1349. tmpobjid = CreateObject(19447, -3270.842285, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1350. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1351. tmpobjid = CreateObject(19447, -3274.340820, -479.515075, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1352. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1353. tmpobjid = CreateObject(19447, -3270.842285, -479.515075, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1354. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1355. tmpobjid = CreateObject(19447, -3274.340820, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1356. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1357. tmpobjid = CreateObject(19447, -3270.842285, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1358. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1359. tmpobjid = CreateObject(19447, -3274.340820, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1360. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1361. tmpobjid = CreateObject(19447, -3270.842285, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1362. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1363. tmpobjid = CreateObject(19447, -3274.340820, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1364. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1365. tmpobjid = CreateObject(19447, -3270.842285, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1366. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1367. tmpobjid = CreateObject(19447, -3274.340820, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1368. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1369. tmpobjid = CreateObject(19447, -3270.842285, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1370. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1371. tmpobjid = CreateObject(19447, -3274.340820, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1372. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1373. tmpobjid = CreateObject(19447, -3270.842285, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1374. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1375. tmpobjid = CreateObject(19447, -3267.345947, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1376. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1377. tmpobjid = CreateObject(19447, -3263.847412, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1378. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1379. tmpobjid = CreateObject(19447, -3260.349853, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1380. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1381. tmpobjid = CreateObject(19447, -3256.851318, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1382. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1383. tmpobjid = CreateObject(19447, -3253.356445, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1384. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1385. tmpobjid = CreateObject(19447, -3249.857910, -489.147033, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1386. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1387. tmpobjid = CreateObject(19447, -3267.345947, -479.515075, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1388. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1389. tmpobjid = CreateObject(19447, -3263.847412, -479.515075, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1390. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1391. tmpobjid = CreateObject(19447, -3260.349853, -479.515075, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1392. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1393. tmpobjid = CreateObject(19447, -3256.851318, -479.515075, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1394. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1395. tmpobjid = CreateObject(19447, -3253.356445, -479.515075, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1396. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1397. tmpobjid = CreateObject(19447, -3249.857910, -479.515075, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1398. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1399. tmpobjid = CreateObject(19447, -3267.345947, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1400. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1401. tmpobjid = CreateObject(19447, -3263.847412, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1402. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1403. tmpobjid = CreateObject(19447, -3260.349853, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1404. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1405. tmpobjid = CreateObject(19447, -3256.851318, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1406. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1407. tmpobjid = CreateObject(19447, -3253.356445, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1408. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1409. tmpobjid = CreateObject(19447, -3249.857910, -469.884338, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1410. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1411. tmpobjid = CreateObject(19447, -3267.345947, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1412. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1413. tmpobjid = CreateObject(19447, -3263.847412, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1414. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1415. tmpobjid = CreateObject(19447, -3260.349853, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1416. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1417. tmpobjid = CreateObject(19447, -3256.851318, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1418. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1419. tmpobjid = CreateObject(19447, -3253.356445, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1420. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1421. tmpobjid = CreateObject(19447, -3249.857910, -460.254028, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1422. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1423. tmpobjid = CreateObject(19447, -3267.345947, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1424. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1425. tmpobjid = CreateObject(19447, -3263.847412, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1426. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1427. tmpobjid = CreateObject(19447, -3260.349853, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1428. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1429. tmpobjid = CreateObject(19447, -3256.851318, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1430. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1431. tmpobjid = CreateObject(19447, -3253.356445, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1432. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1433. tmpobjid = CreateObject(19447, -3249.857910, -450.623291, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1434. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1435. tmpobjid = CreateObject(19447, -3267.345947, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1436. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1437. tmpobjid = CreateObject(19447, -3263.847412, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1438. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1439. tmpobjid = CreateObject(19447, -3260.349853, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1440. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1441. tmpobjid = CreateObject(19447, -3256.851318, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1442. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1443. tmpobjid = CreateObject(19447, -3253.356445, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1444. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1445. tmpobjid = CreateObject(19447, -3249.857910, -440.991333, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1446. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1447. tmpobjid = CreateObject(19447, -3267.345947, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1448. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1449. tmpobjid = CreateObject(19447, -3263.847412, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1450. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1451. tmpobjid = CreateObject(19447, -3260.349853, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1452. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1453. tmpobjid = CreateObject(19447, -3256.851318, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1454. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1455. tmpobjid = CreateObject(19447, -3253.356445, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1456. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1457. tmpobjid = CreateObject(19447, -3249.857910, -431.360595, 50.827930, 0.000000, 90.000000, 0.000000, 300.00);
  1458. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1459. tmpobjid = CreateObject(14877, -3244.622070, -478.251678, 49.010276, 0.000000, 0.000000, 90.000000, 300.00);
  1460. SetObjectMaterial(tmpobjid, 0, 14652, "ab_trukstpa", "CJ_WOOD6", 0xFFFFFFFF);
  1461. SetObjectMaterial(tmpobjid, 1, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  1462. tmpobjid = CreateObject(14877, -3241.622802, -478.251678, 49.010276, 0.000000, 0.000000, 90.000000, 300.00);
  1463. SetObjectMaterial(tmpobjid, 0, 14652, "ab_trukstpa", "CJ_WOOD6", 0xFFFFFFFF);
  1464. SetObjectMaterial(tmpobjid, 1, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  1465. tmpobjid = CreateObject(19447, -3253.824951, -432.995452, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
  1466. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1467. tmpobjid = CreateObject(19447, -3253.824951, -442.626312, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
  1468. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1469. tmpobjid = CreateObject(19447, -3253.824951, -432.995452, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
  1470. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1471. tmpobjid = CreateObject(19447, -3253.824951, -442.626312, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
  1472. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1473. tmpobjid = CreateObject(19447, -3253.824951, -459.123474, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
  1474. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1475. tmpobjid = CreateObject(19447, -3253.824951, -468.754333, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
  1476. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1477. tmpobjid = CreateObject(19447, -3253.824951, -459.123474, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
  1478. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1479. tmpobjid = CreateObject(19447, -3253.824951, -468.754333, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
  1480. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1481. tmpobjid = CreateObject(19447, -3271.571533, -454.396057, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  1482. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1483. tmpobjid = CreateObject(19447, -3258.727539, -454.396057, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  1484. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1485. tmpobjid = CreateObject(19447, -3271.571533, -454.396057, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  1486. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1487. tmpobjid = CreateObject(19447, -3258.727539, -454.396057, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  1488. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1489. tmpobjid = CreateObject(19447, -3271.571533, -455.436462, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  1490. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1491. tmpobjid = CreateObject(19447, -3258.727539, -455.436462, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  1492. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1493. tmpobjid = CreateObject(19447, -3271.573486, -455.436462, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  1494. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1495. tmpobjid = CreateObject(19447, -3258.727539, -455.436462, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  1496. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1497. tmpobjid = CreateObject(19447, -3271.569824, -446.315795, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  1498. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1499. tmpobjid = CreateObject(19447, -3258.727539, -446.315795, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  1500. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1501. tmpobjid = CreateObject(19447, -3271.571777, -446.315795, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  1502. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1503. tmpobjid = CreateObject(19447, -3258.725585, -446.315795, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  1504. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1505. tmpobjid = CreateObject(19447, -3271.569824, -447.355010, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  1506. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1507. tmpobjid = CreateObject(19447, -3258.727539, -447.355010, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  1508. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1509. tmpobjid = CreateObject(19447, -3271.569824, -447.355010, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  1510. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1511. tmpobjid = CreateObject(19447, -3258.727539, -447.355010, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  1512. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1513. tmpobjid = CreateObject(19447, -3259.132812, -441.419586, 46.864959, 0.000000, 90.000000, 0.000000, 300.00);
  1514. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  1515. tmpobjid = CreateObject(19447, -3255.637939, -441.419586, 46.864955, 0.000000, 90.000000, 0.000000, 300.00);
  1516. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  1517. tmpobjid = CreateObject(19447, -3262.631347, -441.419586, 46.864955, 0.000000, 90.000000, 0.000000, 300.00);
  1518. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  1519. tmpobjid = CreateObject(19447, -3266.128906, -441.419586, 46.864959, 0.000000, 90.000000, 0.000000, 300.00);
  1520. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  1521. tmpobjid = CreateObject(19447, -3269.627441, -441.419586, 46.864955, 0.000000, 90.000000, 0.000000, 300.00);
  1522. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  1523. tmpobjid = CreateObject(19447, -3253.824951, -478.384277, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
  1524. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1525. tmpobjid = CreateObject(19447, -3273.123779, -441.419586, 46.864959, 0.000000, 90.000000, 0.000000, 300.00);
  1526. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  1527. tmpobjid = CreateObject(19447, -3254.999755, -478.383331, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
  1528. SetObjectMaterial(tmpobjid, 0, 4830, "airport2", "sw_shedwall02", 0x00000000);
  1529. tmpobjid = CreateObject(19447, -3253.824951, -478.384277, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
  1530. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1531. tmpobjid = CreateObject(19447, -3268.358398, -477.137939, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  1532. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1533. tmpobjid = CreateObject(19447, -3258.727539, -477.137939, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  1534. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1535. tmpobjid = CreateObject(19447, -3268.358398, -477.137939, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  1536. SetObjectMaterial(tmpobjid, 0, 4830, "airport2", "sw_shedwall02", 0x00000000);
  1537. tmpobjid = CreateObject(19447, -3258.727539, -477.137939, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  1538. SetObjectMaterial(tmpobjid, 0, 4830, "airport2", "sw_shedwall02", 0x00000000);
  1539. tmpobjid = CreateObject(19447, -3254.998535, -478.384338, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
  1540. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1541. tmpobjid = CreateObject(19447, -3256.851318, -450.623291, 46.859962, 0.000000, 90.000000, 0.000000, 300.00);
  1542. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  1543. tmpobjid = CreateObject(19447, -3253.356445, -450.623291, 46.859958, 0.000000, 90.000000, 0.000000, 300.00);
  1544. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  1545. tmpobjid = CreateObject(19447, -3263.847412, -450.623291, 46.859962, 0.000000, 90.000000, 0.000000, 300.00);
  1546. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  1547. tmpobjid = CreateObject(19447, -3260.349853, -450.623291, 46.859958, 0.000000, 90.000000, 0.000000, 300.00);
  1548. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  1549. tmpobjid = CreateObject(19447, -3267.345947, -450.623291, 46.859958, 0.000000, 90.000000, 0.000000, 300.00);
  1550. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  1551. tmpobjid = CreateObject(19447, -3270.842285, -450.623291, 46.859962, 0.000000, 90.000000, 0.000000, 300.00);
  1552. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  1553. tmpobjid = CreateObject(19447, -3274.340820, -450.623291, 46.859958, 0.000000, 90.000000, 0.000000, 300.00);
  1554. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  1555. tmpobjid = CreateObject(19447, -3253.356445, -460.254028, 46.859958, 0.000000, 90.000000, 0.000000, 300.00);
  1556. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  1557. tmpobjid = CreateObject(19447, -3253.356445, -469.884338, 46.859958, 0.000000, 90.000000, 0.000000, 300.00);
  1558. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  1559. tmpobjid = CreateObject(18762, -3263.046630, -454.961212, 48.588497, 0.000000, 0.000000, 0.000000, 300.00);
  1560. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  1561. tmpobjid = CreateObject(19447, -3267.345947, -469.884338, 46.859958, 0.000000, 90.000000, 0.000000, 300.00);
  1562. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  1563. tmpobjid = CreateObject(19447, -3270.842285, -469.884338, 46.859962, 0.000000, 90.000000, 0.000000, 300.00);
  1564. SetObjectMaterial(tmpobjid, 0, 14537, "pdomebar", "club_floor2_sfwTEST", 0x00000000);
  1565. tmpobjid = CreateObject(19447, -3274.340820, -469.884338, 46.859958, 0.000000, 90.000000, 0.000000, 300.00);
  1566. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  1567. tmpobjid = CreateObject(19447, -3255.125244, -459.123474, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
  1568. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1569. tmpobjid = CreateObject(19447, -3255.125244, -468.754333, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
  1570. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1571. tmpobjid = CreateObject(19447, -3255.125244, -459.123474, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
  1572. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1573. tmpobjid = CreateObject(19447, -3255.125244, -468.754333, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
  1574. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1575. tmpobjid = CreateObject(18762, -3267.253662, -454.961212, 48.588497, 0.000000, 0.000000, 0.000000, 300.00);
  1576. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  1577. tmpobjid = CreateObject(18762, -3263.047607, -446.791229, 48.588497, 0.000000, 0.000000, 0.000000, 300.00);
  1578. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  1579. tmpobjid = CreateObject(18762, -3267.250732, -446.791229, 48.588497, 0.000000, 0.000000, 0.000000, 300.00);
  1580. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  1581. tmpobjid = CreateObject(19447, -3255.685302, -480.015106, 46.864955, 0.000000, 90.000000, 0.000000, 300.00);
  1582. SetObjectMaterial(tmpobjid, 0, 14651, "ab_trukstpd", "Bow_bar_flooring", 0x00000000);
  1583. tmpobjid = CreateObject(19447, -3255.685302, -489.647064, 46.864955, 0.000000, 90.000000, 0.000000, 300.00);
  1584. SetObjectMaterial(tmpobjid, 0, 14651, "ab_trukstpd", "Bow_bar_flooring", 0x00000000);
  1585. tmpobjid = CreateObject(19447, -3264.434814, -494.874084, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
  1586. SetObjectMaterial(tmpobjid, 0, 4830, "airport2", "sw_shedwall02", 0x00000000);
  1587. tmpobjid = CreateObject(19447, -3264.433593, -494.871063, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
  1588. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1589. tmpobjid = CreateObject(19447, -3264.434814, -485.245330, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
  1590. SetObjectMaterial(tmpobjid, 0, 4830, "airport2", "sw_shedwall02", 0x00000000);
  1591. tmpobjid = CreateObject(19447, -3264.433593, -485.242309, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
  1592. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1593. tmpobjid = CreateObject(19353, -3216.635498, -492.474273, 51.195766, 0.000000, 180.000000, 0.000000, 300.00);
  1594. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0xFFFFFFFF);
  1595. tmpobjid = CreateObject(19447, -3216.631103, -498.895233, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
  1596. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1597. tmpobjid = CreateObject(19353, -3216.625732, -489.263183, 49.339756, 0.000000, 180.000000, 0.000000, 300.00);
  1598. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0xFFFFFFFF);
  1599. tmpobjid = CreateObject(19447, -3216.631103, -498.895233, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
  1600. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1601. tmpobjid = CreateObject(19447, -3216.631103, -470.003570, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
  1602. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1603. tmpobjid = CreateObject(19447, -3216.631103, -479.634429, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
  1604. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1605. tmpobjid = CreateObject(19447, -3216.631103, -470.003570, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
  1606. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1607. tmpobjid = CreateObject(19447, -3216.631103, -479.634429, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
  1608. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1609. tmpobjid = CreateObject(19447, -3216.631103, -450.740692, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
  1610. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1611. tmpobjid = CreateObject(19447, -3192.640869, -465.097320, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  1612. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1613. tmpobjid = CreateObject(19447, -3216.631103, -450.740692, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
  1614. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1615. tmpobjid = CreateObject(19447, -3183.010009, -465.097320, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  1616. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1617. tmpobjid = CreateObject(19447, -3216.631103, -431.478881, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
  1618. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1619. tmpobjid = CreateObject(19447, -3216.631103, -441.109741, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
  1620. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1621. tmpobjid = CreateObject(19447, -3216.631103, -431.478881, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
  1622. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1623. tmpobjid = CreateObject(19447, -3216.631103, -441.109741, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
  1624. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1625. tmpobjid = CreateObject(19447, -3211.731201, -455.449249, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  1626. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1627. tmpobjid = CreateObject(19447, -3202.100341, -455.449249, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  1628. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1629. tmpobjid = CreateObject(19447, -3211.731201, -455.449249, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  1630. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1631. tmpobjid = CreateObject(19447, -3202.100341, -455.449249, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  1632. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1633. tmpobjid = CreateObject(19447, -3211.903320, -465.097320, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  1634. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1635. tmpobjid = CreateObject(19447, -3202.272460, -465.097320, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  1636. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1637. tmpobjid = CreateObject(19447, -3211.903320, -465.097320, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  1638. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1639. tmpobjid = CreateObject(19447, -3202.272460, -465.097320, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  1640. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1641. tmpobjid = CreateObject(19447, -3192.640869, -465.097320, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  1642. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1643. tmpobjid = CreateObject(19447, -3183.010009, -465.097320, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  1644. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1645. tmpobjid = CreateObject(19447, -3186.066162, -455.449249, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  1646. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1647. tmpobjid = CreateObject(19447, -3176.435302, -455.449249, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  1648. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1649. tmpobjid = CreateObject(19447, -3186.066162, -455.449249, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  1650. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1651. tmpobjid = CreateObject(19447, -3176.435302, -455.449249, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  1652. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1653. tmpobjid = CreateObject(1537, -3197.888427, -428.199005, 46.942939, 0.000000, 0.000000, 0.000000, 300.00);
  1654. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  1655. tmpobjid = CreateObject(14394, -3212.541259, -429.272033, 47.687648, 0.000000, 0.000000, 90.000000, 300.00);
  1656. SetObjectMaterial(tmpobjid, 0, 14652, "ab_trukstpa", "CJ_WOOD6", 0x00000000);
  1657. tmpobjid = CreateObject(14394, -3192.544921, -429.272033, 47.687648, 0.000000, 0.000000, 90.000000, 300.00);
  1658. SetObjectMaterial(tmpobjid, 0, 14652, "ab_trukstpa", "CJ_WOOD6", 0x00000000);
  1659. tmpobjid = CreateObject(14394, -3204.544921, -454.247161, 47.687648, 0.000007, -0.000007, -90.000030, 300.00);
  1660. SetObjectMaterial(tmpobjid, 0, 14652, "ab_trukstpa", "CJ_WOOD6", 0x00000000);
  1661. tmpobjid = CreateObject(14394, -3212.541015, -454.247161, 47.687648, 0.000007, -0.000007, -90.000030, 300.00);
  1662. SetObjectMaterial(tmpobjid, 0, 14652, "ab_trukstpa", "CJ_WOOD6", 0x00000000);
  1663. tmpobjid = CreateObject(947, -3193.473632, -441.775299, 49.103691, 0.000000, 0.000000, 90.000000, 300.00);
  1664. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  1665. SetObjectMaterial(tmpobjid, 4, 3080, "adjumpx", "gen_chrome", 0x00000000);
  1666. tmpobjid = CreateObject(19447, -3188.533447, -447.344970, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
  1667. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1668. tmpobjid = CreateObject(19447, -3188.533447, -447.344970, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
  1669. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1670. tmpobjid = CreateObject(19447, -3188.533447, -428.083160, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
  1671. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1672. tmpobjid = CreateObject(19447, -3188.533447, -437.714019, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
  1673. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1674. tmpobjid = CreateObject(19447, -3188.533447, -428.083160, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
  1675. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1676. tmpobjid = CreateObject(947, -3212.473632, -441.775299, 49.103691, 0.000000, 0.000000, 270.000000, 300.00);
  1677. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  1678. SetObjectMaterial(tmpobjid, 4, 3080, "adjumpx", "gen_chrome", 0x00000000);
  1679. tmpobjid = CreateObject(14394, -3204.544921, -429.272033, 47.687648, 0.000000, 0.000000, 90.000000, 300.00);
  1680. SetObjectMaterial(tmpobjid, 0, 14652, "ab_trukstpa", "CJ_WOOD6", 0x00000000);
  1681. tmpobjid = CreateObject(19447, -3228.427734, -494.049713, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  1682. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1683. tmpobjid = CreateObject(19447, -3228.427734, -494.049713, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  1684. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1685. tmpobjid = CreateObject(19447, -3238.059082, -494.049713, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  1686. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1687. tmpobjid = CreateObject(19447, -3246.195800, -478.400543, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
  1688. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1689. tmpobjid = CreateObject(19447, -3238.059082, -494.049713, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  1690. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1691. tmpobjid = CreateObject(19447, -3246.195800, -478.400543, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
  1692. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1693. tmpobjid = CreateObject(19447, -3223.541503, -498.778564, 45.847000, -0.000007, 180.000000, 0.000000, 300.00);
  1694. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1695. tmpobjid = CreateObject(19447, -3223.540283, -498.777557, 49.341033, -0.000007, 180.000000, 0.000000, 300.00);
  1696. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1697. tmpobjid = CreateObject(19447, -3247.495849, -478.400543, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
  1698. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1699. tmpobjid = CreateObject(19447, -3247.495849, -478.400543, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
  1700. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1701. tmpobjid = CreateObject(19447, -3247.495849, -459.138732, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
  1702. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1703. tmpobjid = CreateObject(19447, -3247.495849, -468.769592, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
  1704. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1705. tmpobjid = CreateObject(19447, -3247.495849, -459.138732, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
  1706. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1707. tmpobjid = CreateObject(19447, -3247.495849, -468.769592, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
  1708. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1709. tmpobjid = CreateObject(19447, -3247.523681, -432.995452, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
  1710. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1711. tmpobjid = CreateObject(19447, -3247.523681, -442.626312, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
  1712. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1713. tmpobjid = CreateObject(19447, -3247.523681, -432.995452, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
  1714. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1715. tmpobjid = CreateObject(19447, -3247.523681, -442.626312, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
  1716. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1717. tmpobjid = CreateObject(19447, -3218.380859, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1718. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1719. tmpobjid = CreateObject(19447, -3225.376953, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1720. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1721. tmpobjid = CreateObject(19447, -3242.632324, -447.353942, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  1722. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1723. tmpobjid = CreateObject(19447, -3233.001464, -447.353942, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  1724. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1725. tmpobjid = CreateObject(19447, -3242.632324, -447.353942, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  1726. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1727. tmpobjid = CreateObject(19447, -3233.001464, -447.353942, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  1728. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1729. tmpobjid = CreateObject(19447, -3221.878417, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1730. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1731. tmpobjid = CreateObject(19447, -3218.380859, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1732. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1733. tmpobjid = CreateObject(19447, -3242.632324, -454.411041, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  1734. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1735. tmpobjid = CreateObject(19447, -3233.001464, -454.411041, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  1736. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1737. tmpobjid = CreateObject(19447, -3242.632324, -454.411041, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  1738. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1739. tmpobjid = CreateObject(19447, -3233.001464, -454.411041, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  1740. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1741. tmpobjid = CreateObject(19447, -3225.376953, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1742. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1743. tmpobjid = CreateObject(19447, -3221.878417, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1744. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1745. tmpobjid = CreateObject(19447, -3242.588134, -472.443084, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  1746. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1747. tmpobjid = CreateObject(19447, -3232.957275, -472.443084, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  1748. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1749. tmpobjid = CreateObject(19447, -3242.588134, -472.443084, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  1750. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1751. tmpobjid = CreateObject(19447, -3232.957275, -472.443084, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  1752. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1753. tmpobjid = CreateObject(19447, -3240.193603, -478.400543, 45.847011, 0.000007, 180.000000, 179.999954, 300.00);
  1754. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1755. tmpobjid = CreateObject(19447, -3240.193603, -478.400543, 49.341045, 0.000007, 180.000000, 179.999954, 300.00);
  1756. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1757. tmpobjid = CreateObject(19447, -3218.380859, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1758. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1759. tmpobjid = CreateObject(19447, -3235.318847, -483.129089, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  1760. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1761. tmpobjid = CreateObject(19447, -3274.340820, -479.515075, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1762. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1763. tmpobjid = CreateObject(19447, -3235.318847, -483.129089, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  1764. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1765. tmpobjid = CreateObject(19447, -3270.842285, -479.515075, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1766. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1767. tmpobjid = CreateObject(19447, -3274.340820, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1768. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1769. tmpobjid = CreateObject(19447, -3270.842285, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1770. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1771. tmpobjid = CreateObject(19447, -3274.340820, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1772. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1773. tmpobjid = CreateObject(19447, -3270.842285, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1774. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1775. tmpobjid = CreateObject(19447, -3274.340820, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1776. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1777. tmpobjid = CreateObject(19447, -3270.842285, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1778. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1779. tmpobjid = CreateObject(19447, -3274.340820, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1780. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1781. tmpobjid = CreateObject(19447, -3270.842285, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1782. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1783. tmpobjid = CreateObject(19447, -3274.340820, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1784. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1785. tmpobjid = CreateObject(19447, -3270.842285, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1786. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1787. tmpobjid = CreateObject(19447, -3267.345947, -479.515075, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1788. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1789. tmpobjid = CreateObject(19447, -3263.847412, -479.515075, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1790. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1791. tmpobjid = CreateObject(19447, -3260.349853, -479.515075, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1792. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1793. tmpobjid = CreateObject(19447, -3256.851318, -479.515075, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1794. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1795. tmpobjid = CreateObject(19447, -3253.356445, -479.515075, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1796. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1797. tmpobjid = CreateObject(19447, -3249.857910, -479.515075, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1798. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1799. tmpobjid = CreateObject(19447, -3267.345947, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1800. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1801. tmpobjid = CreateObject(19447, -3263.847412, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1802. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1803. tmpobjid = CreateObject(19447, -3260.349853, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1804. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1805. tmpobjid = CreateObject(19447, -3256.851318, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1806. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1807. tmpobjid = CreateObject(19447, -3253.356445, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1808. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1809. tmpobjid = CreateObject(19447, -3249.857910, -469.884338, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1810. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1811. tmpobjid = CreateObject(19447, -3267.345947, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1812. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1813. tmpobjid = CreateObject(19447, -3263.847412, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1814. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1815. tmpobjid = CreateObject(19447, -3260.349853, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1816. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1817. tmpobjid = CreateObject(19447, -3256.851318, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1818. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1819. tmpobjid = CreateObject(19447, -3253.356445, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1820. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1821. tmpobjid = CreateObject(19447, -3249.857910, -460.254028, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1822. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1823. tmpobjid = CreateObject(19447, -3267.345947, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1824. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1825. tmpobjid = CreateObject(19447, -3263.847412, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1826. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1827. tmpobjid = CreateObject(19447, -3260.349853, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1828. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1829. tmpobjid = CreateObject(19447, -3256.851318, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1830. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1831. tmpobjid = CreateObject(19447, -3253.356445, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1832. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1833. tmpobjid = CreateObject(19447, -3249.857910, -450.623291, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1834. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1835. tmpobjid = CreateObject(19447, -3267.345947, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1836. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1837. tmpobjid = CreateObject(19447, -3263.847412, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1838. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1839. tmpobjid = CreateObject(19447, -3260.349853, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1840. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1841. tmpobjid = CreateObject(19447, -3256.851318, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1842. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1843. tmpobjid = CreateObject(19447, -3253.356445, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1844. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1845. tmpobjid = CreateObject(19447, -3249.857910, -440.991333, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1846. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1847. tmpobjid = CreateObject(19447, -3267.345947, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1848. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1849. tmpobjid = CreateObject(19447, -3263.847412, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1850. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1851. tmpobjid = CreateObject(19447, -3260.349853, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1852. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1853. tmpobjid = CreateObject(19447, -3256.851318, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1854. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1855. tmpobjid = CreateObject(19447, -3253.356445, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1856. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1857. tmpobjid = CreateObject(19447, -3249.857910, -431.360595, 56.004943, 0.000000, 90.000000, 0.000000, 300.00);
  1858. SetObjectMaterial(tmpobjid, 0, 18065, "ab_sfammumain", "gun_ceiling1", 0x00000000);
  1859. tmpobjid = CreateObject(19447, -3228.097900, -459.138732, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
  1860. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1861. tmpobjid = CreateObject(19447, -3228.097900, -468.769592, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
  1862. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1863. tmpobjid = CreateObject(19447, -3228.097900, -459.138732, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
  1864. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1865. tmpobjid = CreateObject(19447, -3228.097900, -468.769592, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
  1866. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1867. tmpobjid = CreateObject(18762, -3254.412597, -482.700256, 48.588497, 0.000000, 0.000000, 0.000000, 300.00);
  1868. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  1869. tmpobjid = CreateObject(1472, -3183.007568, -484.559204, 47.661853, 0.000000, 0.000000, 180.000000, 300.00);
  1870. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  1871. tmpobjid = CreateObject(1472, -3183.007568, -483.559265, 46.887847, 0.000000, 0.000000, 180.000000, 300.00);
  1872. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  1873. tmpobjid = CreateObject(1472, -3184.511230, -484.559204, 47.661853, 0.000000, 0.000000, 180.000000, 300.00);
  1874. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  1875. tmpobjid = CreateObject(1472, -3184.511230, -483.559265, 46.887847, 0.000000, 0.000000, 180.000000, 300.00);
  1876. SetObjectMaterial(tmpobjid, 0, 14789, "ab_sfgymmain", "gym_floor6", 0x00000000);
  1877. tmpobjid = CreateObject(19383, -3265.149658, -446.316436, 48.701278, 0.000000, 0.000007, 89.999969, 300.00);
  1878. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  1879. tmpobjid = CreateObject(19447, -3221.201416, -503.679809, 52.837066, 0.000000, 180.000000, 89.999931, 300.00);
  1880. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1881. tmpobjid = CreateObject(19353, -3216.625732, -489.263183, 45.840770, 0.000000, 0.000000, 0.000000, 300.00);
  1882. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0xFFFFFFFF);
  1883. tmpobjid = CreateObject(19383, -3253.846435, -484.753021, 48.698261, 0.000000, 0.000000, 0.000000, 300.00);
  1884. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  1885. tmpobjid = CreateObject(19353, -3216.635498, -486.054138, 51.195766, 0.000000, 180.000000, 0.000000, 300.00);
  1886. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0xFFFFFFFF);
  1887. tmpobjid = CreateObject(1557, -3216.619628, -487.675628, 46.952999, 0.000000, 0.000000, 90.000000, 300.00);
  1888. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  1889. tmpobjid = CreateObject(1557, -3216.619628, -484.433563, 46.952999, 0.000000, 0.000000, 270.000000, 300.00);
  1890. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  1891. tmpobjid = CreateObject(19447, -3232.957275, -473.496154, 45.847023, 0.000007, 180.000000, -90.000030, 300.00);
  1892. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1893. tmpobjid = CreateObject(19383, -3265.149658, -455.426513, 48.701278, 0.000000, 0.000007, 89.999969, 300.00);
  1894. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  1895. tmpobjid = CreateObject(19447, -3232.957275, -473.496154, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  1896. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  1897. tmpobjid = CreateObject(19476, -3216.502685, -486.051269, 46.881557, 90.000000, 360.000000, 360.000000, 300.00);
  1898. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  1899. tmpobjid = CreateObject(19476, -3216.502685, -486.051269, 47.911571, 90.000000, 360.000000, 360.000000, 300.00);
  1900. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  1901. tmpobjid = CreateObject(19476, -3216.502685, -486.051269, 48.938571, 90.000000, 360.000000, 360.000000, 300.00);
  1902. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  1903. tmpobjid = CreateObject(19476, -3216.623046, -485.931091, 46.881557, 89.999992, 514.439758, -64.439773, 300.00);
  1904. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  1905. tmpobjid = CreateObject(19476, -3216.623046, -485.931091, 47.911571, 89.999992, 514.439758, -64.439773, 300.00);
  1906. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  1907. tmpobjid = CreateObject(19476, -3216.623046, -485.931091, 48.938571, 89.999992, 514.439758, -64.439773, 300.00);
  1908. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  1909. tmpobjid = CreateObject(19476, -3216.744140, -486.053131, 46.881557, 89.999992, 495.000000, 44.999954, 300.00);
  1910. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  1911. tmpobjid = CreateObject(19476, -3216.744140, -486.053131, 47.911571, 89.999992, 495.000000, 44.999954, 300.00);
  1912. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  1913. tmpobjid = CreateObject(19476, -3216.744140, -486.053131, 48.938571, 89.999992, 495.000000, 44.999954, 300.00);
  1914. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  1915. tmpobjid = CreateObject(19476, -3216.624023, -486.173248, 46.881557, 89.999992, 570.824584, 59.175354, 300.00);
  1916. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  1917. tmpobjid = CreateObject(19476, -3216.624023, -486.173248, 47.911571, 89.999992, 570.824584, 59.175354, 300.00);
  1918. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  1919. tmpobjid = CreateObject(19476, -3216.624023, -486.173248, 48.938571, 89.999992, 570.824584, 59.175354, 300.00);
  1920. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  1921. tmpobjid = CreateObject(1557, -3216.619628, -494.093811, 46.952999, 0.000000, 0.000000, 90.000000, 300.00);
  1922. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  1923. tmpobjid = CreateObject(1557, -3216.619628, -490.851745, 46.952999, 0.000000, 0.000000, 270.000000, 300.00);
  1924. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  1925. tmpobjid = CreateObject(19476, -3216.502685, -492.469451, 46.881557, 90.000000, 360.000000, 360.000000, 300.00);
  1926. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  1927. tmpobjid = CreateObject(19476, -3216.502685, -492.469451, 47.911571, 90.000000, 360.000000, 360.000000, 300.00);
  1928. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  1929. tmpobjid = CreateObject(19476, -3216.502685, -492.469451, 48.938571, 90.000000, 360.000000, 360.000000, 300.00);
  1930. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  1931. tmpobjid = CreateObject(19476, -3216.623046, -492.349273, 46.881557, 89.999992, 514.439758, -64.439773, 300.00);
  1932. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  1933. tmpobjid = CreateObject(19476, -3216.623046, -492.349273, 47.911571, 89.999992, 514.439758, -64.439773, 300.00);
  1934. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  1935. tmpobjid = CreateObject(19476, -3216.623046, -492.349273, 48.938571, 89.999992, 514.439758, -64.439773, 300.00);
  1936. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  1937. tmpobjid = CreateObject(19476, -3216.744140, -492.471313, 46.881557, 89.999992, 495.000000, 44.999954, 300.00);
  1938. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  1939. tmpobjid = CreateObject(19476, -3216.744140, -492.471313, 47.911571, 89.999992, 495.000000, 44.999954, 300.00);
  1940. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  1941. tmpobjid = CreateObject(19476, -3216.744140, -492.471313, 48.938571, 89.999992, 495.000000, 44.999954, 300.00);
  1942. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  1943. tmpobjid = CreateObject(19476, -3216.624023, -492.591430, 46.881557, 89.999992, 570.824584, 59.175354, 300.00);
  1944. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  1945. tmpobjid = CreateObject(19476, -3216.624023, -492.591430, 47.911571, 89.999992, 570.824584, 59.175354, 300.00);
  1946. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  1947. tmpobjid = CreateObject(19476, -3216.624023, -492.591430, 48.938571, 89.999992, 570.824584, 59.175354, 300.00);
  1948. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  1949. tmpobjid = CreateObject(19426, -3188.532958, -437.685943, 49.344390, 360.000000, 180.000000, 360.000000, 300.00);
  1950. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0xFFFFFFFF);
  1951. tmpobjid = CreateObject(19447, -3180.169677, -452.019134, 52.838069, 0.000012, 180.000000, 179.999862, 300.00);
  1952. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1953. tmpobjid = CreateObject(19447, -3180.169677, -432.756561, 52.838069, 0.000012, 180.000000, 179.999862, 300.00);
  1954. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1955. tmpobjid = CreateObject(19447, -3180.169677, -442.387420, 52.838069, 0.000012, 180.000000, 179.999862, 300.00);
  1956. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1957. tmpobjid = CreateObject(19447, -3211.725830, -428.093078, 52.838069, -0.000003, 180.000000, 89.999763, 300.00);
  1958. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1959. tmpobjid = CreateObject(19447, -3192.463134, -428.093078, 52.838069, -0.000003, 180.000000, 89.999763, 300.00);
  1960. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1961. tmpobjid = CreateObject(19447, -3202.093994, -428.093078, 52.838069, -0.000003, 180.000000, 89.999763, 300.00);
  1962. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1963. tmpobjid = CreateObject(19447, -3182.832275, -428.093078, 52.838069, -0.000003, 180.000000, 89.999763, 300.00);
  1964. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1965. tmpobjid = CreateObject(19447, -3216.631103, -450.740692, 52.838069, 0.000007, 180.000000, 179.999954, 300.00);
  1966. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1967. tmpobjid = CreateObject(19447, -3216.631103, -431.478881, 52.838069, 0.000007, 180.000000, 179.999954, 300.00);
  1968. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1969. tmpobjid = CreateObject(19447, -3216.631103, -441.109741, 52.838069, 0.000007, 180.000000, 179.999954, 300.00);
  1970. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1971. tmpobjid = CreateObject(19447, -3211.731201, -455.449249, 52.838069, 0.000007, 180.000000, -90.000030, 300.00);
  1972. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1973. tmpobjid = CreateObject(19447, -3202.100341, -455.449249, 52.838069, 0.000007, 180.000000, -90.000030, 300.00);
  1974. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1975. tmpobjid = CreateObject(19447, -3192.469482, -455.449249, 52.838069, 0.000007, 180.000000, -90.000030, 300.00);
  1976. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1977. tmpobjid = CreateObject(19447, -3182.838867, -455.449249, 52.836067, 0.000007, 180.000000, -90.000030, 300.00);
  1978. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1979. tmpobjid = CreateObject(19447, -3188.533935, -451.823425, 52.838069, 0.000012, 180.000000, 179.999862, 300.00);
  1980. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1981. tmpobjid = CreateObject(19447, -3188.533935, -432.560852, 52.838069, 0.000012, 180.000000, 179.999862, 300.00);
  1982. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1983. tmpobjid = CreateObject(19447, -3188.533935, -442.191711, 52.838069, 0.000012, 180.000000, 179.999862, 300.00);
  1984. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  1985. tmpobjid = CreateObject(1557, -3194.060058, -455.435760, 46.952999, 0.000007, 0.000000, 179.999954, 300.00);
  1986. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  1987. tmpobjid = CreateObject(1557, -3197.302001, -455.435760, 46.952999, -0.000007, 0.000000, -0.000007, 300.00);
  1988. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  1989. tmpobjid = CreateObject(19476, -3195.684326, -455.318817, 46.881557, 89.999992, 450.000000, -0.000022, 300.00);
  1990. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  1991. tmpobjid = CreateObject(19476, -3195.684326, -455.318817, 47.911571, 89.999992, 450.000000, -0.000022, 300.00);
  1992. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  1993. tmpobjid = CreateObject(19476, -3195.684326, -455.318817, 48.938571, 89.999992, 450.000000, -0.000022, 300.00);
  1994. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  1995. tmpobjid = CreateObject(19476, -3195.804443, -455.439178, 46.881557, 89.999992, 526.613586, 13.386374, 300.00);
  1996. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  1997. tmpobjid = CreateObject(19476, -3195.804443, -455.439178, 47.911571, 89.999992, 526.613586, 13.386374, 300.00);
  1998. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  1999. tmpobjid = CreateObject(19476, -3195.804443, -455.439178, 48.938571, 89.999992, 526.613586, 13.386374, 300.00);
  2000. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  2001. tmpobjid = CreateObject(19476, -3195.682373, -455.560272, 46.881557, 89.999992, 585.000000, 44.999935, 300.00);
  2002. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  2003. tmpobjid = CreateObject(19476, -3195.682373, -455.560272, 47.911571, 89.999992, 585.000000, 44.999935, 300.00);
  2004. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  2005. tmpobjid = CreateObject(19476, -3195.682373, -455.560272, 48.938571, 89.999992, 585.000000, 44.999935, 300.00);
  2006. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  2007. tmpobjid = CreateObject(19476, -3195.562255, -455.440155, 46.881557, 89.999992, 660.824584, 59.175319, 300.00);
  2008. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  2009. tmpobjid = CreateObject(19476, -3195.562255, -455.440155, 47.911571, 89.999992, 660.824584, 59.175319, 300.00);
  2010. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  2011. tmpobjid = CreateObject(19476, -3195.562255, -455.440155, 48.938571, 89.999992, 660.824584, 59.175319, 300.00);
  2012. SetObjectMaterial(tmpobjid, 0, 18901, "matclothes", "hatmancblk", 0x00000000);
  2013. tmpobjid = CreateObject(19353, -3195.693359, -455.455383, 51.197769, 0.000000, 180.000000, 90.000000, 300.00);
  2014. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0xFFFFFFFF);
  2015. tmpobjid = CreateObject(19353, -3192.485839, -455.448364, 49.345752, 0.000000, 180.000000, 90.000000, 300.00);
  2016. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0xFFFFFFFF);
  2017. tmpobjid = CreateObject(19353, -3192.485839, -455.448364, 45.846725, 0.000000, 180.000000, 90.000000, 300.00);
  2018. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0xFFFFFFFF);
  2019. tmpobjid = CreateObject(19353, -3188.537597, -453.767395, 52.193782, 0.000000, 180.000000, 180.000000, 300.00);
  2020. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  2021. tmpobjid = CreateObject(19383, -3188.531982, -453.758697, 48.699279, 0.000000, 0.000007, 179.999969, 300.00);
  2022. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  2023. tmpobjid = CreateObject(19353, -3188.529785, -453.767395, 52.193782, 0.000000, 180.000000, 180.000000, 300.00);
  2024. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  2025. tmpobjid = CreateObject(19353, -3265.147949, -446.317199, 52.188785, 0.000000, 180.000000, 270.000000, 300.00);
  2026. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  2027. tmpobjid = CreateObject(19353, -3253.846191, -484.752960, 52.188785, 0.000000, 180.000000, 360.000000, 300.00);
  2028. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  2029. tmpobjid = CreateObject(19353, -3265.147949, -455.427001, 52.188785, 0.000000, 180.000000, 270.000000, 300.00);
  2030. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  2031. tmpobjid = CreateObject(19447, -3253.824951, -491.173065, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
  2032. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  2033. tmpobjid = CreateObject(19447, -3254.999755, -491.172119, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
  2034. SetObjectMaterial(tmpobjid, 0, 4830, "airport2", "sw_shedwall02", 0x00000000);
  2035. tmpobjid = CreateObject(19447, -3253.824951, -491.173065, 49.341056, 0.000007, 180.000000, 179.999954, 300.00);
  2036. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0x00000000);
  2037. tmpobjid = CreateObject(19447, -3254.998535, -491.173126, 45.847023, 0.000007, 180.000000, 179.999954, 300.00);
  2038. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0x00000000);
  2039. tmpobjid = CreateObject(18762, -3254.412597, -486.857360, 48.588497, 0.000000, 0.000000, 0.000000, 300.00);
  2040. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  2041. tmpobjid = CreateObject(19383, -3264.432617, -478.827056, 48.698261, 0.000000, 0.000000, 0.000000, 300.00);
  2042. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  2043. tmpobjid = CreateObject(19353, -3264.432373, -478.826995, 52.188785, 0.000000, 180.000000, 360.000000, 300.00);
  2044. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  2045. tmpobjid = CreateObject(18762, -3246.611816, -482.700256, 48.588497, 0.000000, 0.000000, 0.000000, 300.00);
  2046. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  2047. tmpobjid = CreateObject(18762, -3247.012207, -482.700256, 48.588497, 0.000000, 0.000000, 0.000000, 300.00);
  2048. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  2049. tmpobjid = CreateObject(19353, -3251.406982, -503.676208, 48.640747, 0.000000, 0.000000, 270.000000, 300.00);
  2050. SetObjectMaterial(tmpobjid, 0, 8391, "ballys01", "vgncorpdoor1_512", 0xFFFFFFFF);
  2051. tmpobjid = CreateObject(19447, -3238.059082, -494.225494, 49.341056, 0.000007, 180.000000, -90.000030, 300.00);
  2052. SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
  2053. tmpobjid = CreateObject(19447, -3225.541503, -499.128234, 45.847000, -0.000007, 180.000000, 0.000000, 300.00);
  2054. SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
  2055. tmpobjid = CreateObject(19447, -3225.540283, -499.127227, 49.341033, -0.000007, 180.000000, 0.000000, 300.00);
  2056. SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
  2057. tmpobjid = CreateObject(2412, -3249.839599, -494.076385, 47.028198, 0.000000, 0.000000, 0.000000, 300.00);
  2058. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2059. tmpobjid = CreateObject(2412, -3252.258056, -494.076385, 47.028198, 0.000000, 0.000000, 0.000000, 300.00);
  2060. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2061. tmpobjid = CreateObject(19447, -3242.898193, -503.674896, 49.341056, 0.000000, 180.000000, 450.000000, 300.00);
  2062. SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
  2063. tmpobjid = CreateObject(19447, -3228.896728, -503.674896, 49.341056, 0.000000, 180.000000, 450.000000, 300.00);
  2064. SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
  2065. tmpobjid = CreateObject(19447, -3228.896728, -503.674896, 45.841049, 0.000000, 180.000000, 450.000000, 300.00);
  2066. SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
  2067. tmpobjid = CreateObject(19447, -3242.898193, -503.674896, 45.841049, 0.000000, 180.000000, 450.000000, 300.00);
  2068. SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0x00000000);
  2069. tmpobjid = CreateObject(19383, -3244.479003, -494.049041, 48.698261, 0.000000, 0.000007, 89.999969, 300.00);
  2070. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  2071. tmpobjid = CreateObject(19353, -3244.479003, -494.048797, 52.188785, -0.000000, 180.000000, 89.999969, 300.00);
  2072. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  2073. tmpobjid = CreateObject(19383, -3253.846435, -484.928924, 48.698261, 0.000000, 0.000000, 0.000000, 300.00);
  2074. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  2075. tmpobjid = CreateObject(19353, -3253.846191, -484.928863, 52.188785, 0.000000, 180.000000, 360.000000, 300.00);
  2076. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  2077. tmpobjid = CreateObject(19383, -3244.479003, -494.224945, 48.698261, 0.000000, 0.000007, 89.999969, 300.00);
  2078. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  2079. tmpobjid = CreateObject(19353, -3244.479003, -494.224700, 52.188785, -0.000000, 180.000000, 89.999969, 300.00);
  2080. SetObjectMaterial(tmpobjid, 0, 14471, "carls_kit1", "kit_table", 0xFFFFFFFF);
  2081. tmpobjid = CreateObject(19353, -3246.925048, -494.052093, 49.339756, 0.000000, 180.000000, 89.999969, 300.00);
  2082. SetObjectMaterial(tmpobjid, 0, 15041, "bigsfsave", "ah_utilbor2", 0xFFFFFFFF);
  2083. tmpobjid = CreateObject(19353, -3246.925048, -494.052093, 45.839771, 0.000000, 0.000007, 89.999969, 300.00);
  2084. SetObjectMaterial(tmpobjid, 0, 9515, "bigboxtemp1", "shingles1", 0xFFFFFFFF);
  2085. tmpobjid = CreateObject(19353, -3246.925048, -494.221008, 49.339756, 0.000000, 180.000000, 89.999969, 300.00);
  2086. SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0xFFFFFFFF);
  2087. tmpobjid = CreateObject(19353, -3246.925048, -494.221008, 45.845767, 0.000000, 180.000000, 89.999969, 300.00);
  2088. SetObjectMaterial(tmpobjid, 0, 14385, "trailerkb", "tr_kit_1a", 0xFFFFFFFF);
  2089. tmpobjid = CreateObject(19353, -3196.631835, -429.083190, 46.763759, 0.000007, 180.000000, 179.999923, 300.00);
  2090. SetObjectMaterial(tmpobjid, 0, 14652, "ab_trukstpa", "CJ_WOOD6", 0x00000000);
  2091. tmpobjid = CreateObject(19353, -3200.459472, -429.083190, 46.763759, 0.000007, 180.000000, 179.999923, 300.00);
  2092. SetObjectMaterial(tmpobjid, 0, 14652, "ab_trukstpa", "CJ_WOOD6", 0x00000000);
  2093. tmpobjid = CreateObject(19353, -3200.459472, -454.340209, 46.763759, 0.000007, 180.000000, 179.999923, 300.00);
  2094. SetObjectMaterial(tmpobjid, 0, 14652, "ab_trukstpa", "CJ_WOOD6", 0x00000000);
  2095. tmpobjid = CreateObject(19353, -3208.631835, -429.083190, 46.763759, 0.000007, 180.000000, 179.999923, 300.00);
  2096. SetObjectMaterial(tmpobjid, 0, 14652, "ab_trukstpa", "CJ_WOOD6", 0x00000000);
  2097. tmpobjid = CreateObject(19353, -3208.459472, -454.340209, 46.763759, 0.000007, 180.000000, 179.999923, 300.00);
  2098. SetObjectMaterial(tmpobjid, 0, 14652, "ab_trukstpa", "CJ_WOOD6", 0x00000000);
  2099. tmpobjid = CreateObject(19353, -3220.136718, -503.676208, 48.640747, 0.000000, 0.000000, 630.000000, 300.00);
  2100. SetObjectMaterial(tmpobjid, 0, 8391, "ballys01", "vgncorpdoor1_512", 0xFFFFFFFF);
  2101. tmpobjid = CreateObject(19353, -3180.173828, -460.276245, 48.640747, 0.000000, 0.000000, 720.000000, 300.00);
  2102. SetObjectMaterial(tmpobjid, 0, 8391, "ballys01", "vgncorpdoor1_512", 0xFFFFFFFF);
  2103. tmpobjid = CreateObject(19353, -3273.166748, -450.776214, 48.640747, 0.000000, 0.000000, 900.000000, 300.00);
  2104. SetObjectMaterial(tmpobjid, 0, 8391, "ballys01", "vgncorpdoor1_512", 0xFFFFFFFF);
  2105. tmpobjid = CreateObject(19353, -3250.647216, -428.097198, 48.640747, 0.000000, 0.000000, 1170.000000, 300.00);
  2106. SetObjectMaterial(tmpobjid, 0, 8391, "ballys01", "vgncorpdoor1_512", 0xFFFFFFFF);
  2107. tmpobjid = CreateObject(1714, -3272.115966, -430.860198, 46.942527, 0.000000, 0.000000, 405.000000, 300.00);
  2108. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2109. tmpobjid = CreateObject(1963, -3271.764404, -435.479064, 47.337482, 0.000000, 0.000000, 180.000000, 300.00);
  2110. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2111. SetObjectMaterial(tmpobjid, 1, 14385, "trailerkb", "tr_kit_3a", 0x00000000);
  2112. SetObjectMaterial(tmpobjid, 2, 14385, "trailerkb", "tr_wood1", 0x00000000);
  2113. tmpobjid = CreateObject(1963, -3267.264404, -435.479064, 47.337482, 0.000000, 0.000000, 180.000000, 300.00);
  2114. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2115. SetObjectMaterial(tmpobjid, 1, 14385, "trailerkb", "tr_kit_3a", 0x00000000);
  2116. SetObjectMaterial(tmpobjid, 2, 14385, "trailerkb", "tr_wood1", 0x00000000);
  2117. tmpobjid = CreateObject(1963, -3262.764404, -435.479064, 47.337482, 0.000000, 0.000000, 180.000000, 300.00);
  2118. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2119. SetObjectMaterial(tmpobjid, 1, 14385, "trailerkb", "tr_kit_3a", 0x00000000);
  2120. SetObjectMaterial(tmpobjid, 2, 14385, "trailerkb", "tr_wood1", 0x00000000);
  2121. tmpobjid = CreateObject(1963, -3262.764404, -438.479064, 47.337482, 0.000000, 0.000000, 180.000000, 300.00);
  2122. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2123. SetObjectMaterial(tmpobjid, 1, 14385, "trailerkb", "tr_kit_3a", 0x00000000);
  2124. SetObjectMaterial(tmpobjid, 2, 14385, "trailerkb", "tr_wood1", 0x00000000);
  2125. tmpobjid = CreateObject(1963, -3262.764404, -441.479064, 47.337482, 0.000000, 0.000000, 180.000000, 300.00);
  2126. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2127. SetObjectMaterial(tmpobjid, 1, 14385, "trailerkb", "tr_kit_3a", 0x00000000);
  2128. SetObjectMaterial(tmpobjid, 2, 14385, "trailerkb", "tr_wood1", 0x00000000);
  2129. tmpobjid = CreateObject(1963, -3267.264404, -441.479064, 47.337482, 0.000000, 0.000000, 180.000000, 300.00);
  2130. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2131. SetObjectMaterial(tmpobjid, 1, 14385, "trailerkb", "tr_kit_3a", 0x00000000);
  2132. SetObjectMaterial(tmpobjid, 2, 14385, "trailerkb", "tr_wood1", 0x00000000);
  2133. tmpobjid = CreateObject(1963, -3271.764404, -441.479064, 47.337482, 0.000000, 0.000000, 180.000000, 300.00);
  2134. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2135. SetObjectMaterial(tmpobjid, 1, 14385, "trailerkb", "tr_kit_3a", 0x00000000);
  2136. SetObjectMaterial(tmpobjid, 2, 14385, "trailerkb", "tr_wood1", 0x00000000);
  2137. tmpobjid = CreateObject(1963, -3271.764404, -438.479064, 47.337482, 0.000000, 0.000000, 180.000000, 300.00);
  2138. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2139. SetObjectMaterial(tmpobjid, 1, 14385, "trailerkb", "tr_kit_3a", 0x00000000);
  2140. SetObjectMaterial(tmpobjid, 2, 14385, "trailerkb", "tr_wood1", 0x00000000);
  2141. tmpobjid = CreateObject(1963, -3267.264404, -438.479064, 47.337482, 0.000000, 0.000000, 180.000000, 300.00);
  2142. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2143. SetObjectMaterial(tmpobjid, 1, 14385, "trailerkb", "tr_kit_3a", 0x00000000);
  2144. SetObjectMaterial(tmpobjid, 2, 14385, "trailerkb", "tr_wood1", 0x00000000);
  2145. tmpobjid = CreateObject(1714, -3256.133789, -469.478942, 46.942527, 0.000010, 0.000000, -135.000000, 300.00);
  2146. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2147. tmpobjid = CreateObject(1963, -3256.485351, -464.860290, 47.337482, -0.000007, -0.000007, 0.000007, 300.00);
  2148. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2149. SetObjectMaterial(tmpobjid, 1, 14385, "trailerkb", "tr_kit_3a", 0x00000000);
  2150. SetObjectMaterial(tmpobjid, 2, 14385, "trailerkb", "tr_wood1", 0x00000000);
  2151. tmpobjid = CreateObject(1963, -3260.985351, -464.860290, 47.337482, -0.000007, -0.000007, 0.000007, 300.00);
  2152. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2153. SetObjectMaterial(tmpobjid, 1, 14385, "trailerkb", "tr_kit_3a", 0x00000000);
  2154. SetObjectMaterial(tmpobjid, 2, 14385, "trailerkb", "tr_wood1", 0x00000000);
  2155. tmpobjid = CreateObject(1963, -3260.985351, -458.860290, 47.337482, -0.000007, -0.000007, 0.000007, 300.00);
  2156. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2157. SetObjectMaterial(tmpobjid, 1, 14385, "trailerkb", "tr_kit_3a", 0x00000000);
  2158. SetObjectMaterial(tmpobjid, 2, 14385, "trailerkb", "tr_wood1", 0x00000000);
  2159. tmpobjid = CreateObject(1963, -3256.485351, -458.860290, 47.337482, -0.000007, -0.000007, 0.000007, 300.00);
  2160. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2161. SetObjectMaterial(tmpobjid, 1, 14385, "trailerkb", "tr_kit_3a", 0x00000000);
  2162. SetObjectMaterial(tmpobjid, 2, 14385, "trailerkb", "tr_wood1", 0x00000000);
  2163. tmpobjid = CreateObject(1963, -3256.485351, -461.860290, 47.337482, -0.000007, -0.000007, 0.000007, 300.00);
  2164. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2165. SetObjectMaterial(tmpobjid, 1, 14385, "trailerkb", "tr_kit_3a", 0x00000000);
  2166. SetObjectMaterial(tmpobjid, 2, 14385, "trailerkb", "tr_wood1", 0x00000000);
  2167. tmpobjid = CreateObject(1963, -3260.985351, -461.860290, 47.337482, -0.000007, -0.000007, 0.000007, 300.00);
  2168. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2169. SetObjectMaterial(tmpobjid, 1, 14385, "trailerkb", "tr_kit_3a", 0x00000000);
  2170. SetObjectMaterial(tmpobjid, 2, 14385, "trailerkb", "tr_wood1", 0x00000000);
  2171. tmpobjid = CreateObject(2165, -3254.388427, -428.650329, 46.949092, 0.000000, 0.000000, 630.000000, 300.00);
  2172. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2173. tmpobjid = CreateObject(2165, -3254.388427, -431.150329, 46.949092, 0.000000, 0.000000, 270.000000, 300.00);
  2174. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2175. tmpobjid = CreateObject(2165, -3254.388427, -433.650329, 46.949092, 0.000000, 0.000000, 270.000000, 300.00);
  2176. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2177. tmpobjid = CreateObject(2165, -3254.388427, -436.150329, 46.949092, 0.000000, 0.000000, 270.000000, 300.00);
  2178. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2179. tmpobjid = CreateObject(2165, -3254.388427, -438.650329, 46.949092, 0.000000, 0.000000, 270.000000, 300.00);
  2180. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2181. tmpobjid = CreateObject(2165, -3254.388427, -441.150329, 46.949092, 0.000000, 0.000000, 270.000000, 300.00);
  2182. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2183. tmpobjid = CreateObject(2165, -3254.388427, -443.650329, 46.949092, 0.000000, 0.000000, 270.000000, 300.00);
  2184. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2185. tmpobjid = CreateObject(2165, -3272.607666, -471.890716, 46.949092, -0.000007, 0.000007, 89.999961, 300.00);
  2186. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2187. tmpobjid = CreateObject(2165, -3272.607666, -469.390716, 46.949092, -0.000007, 0.000007, 89.999961, 300.00);
  2188. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2189. tmpobjid = CreateObject(2165, -3272.607666, -466.890716, 46.949092, -0.000007, 0.000007, 89.999961, 300.00);
  2190. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2191. tmpobjid = CreateObject(2165, -3272.607666, -464.390716, 46.949092, -0.000007, 0.000007, 89.999961, 300.00);
  2192. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2193. tmpobjid = CreateObject(2165, -3272.607666, -461.890716, 46.949092, -0.000007, 0.000007, 89.999961, 300.00);
  2194. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2195. tmpobjid = CreateObject(2165, -3272.607666, -459.390716, 46.949092, -0.000007, 0.000007, 89.999961, 300.00);
  2196. SetObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFFFFFFFF);
  2197. /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  2198. /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  2199. /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  2200. tmpobjid = CreateObject(11729, -3253.492187, -463.558959, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
  2201. tmpobjid = CreateObject(11729, -3253.492187, -464.218627, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
  2202. tmpobjid = CreateObject(11729, -3253.492187, -462.239135, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
  2203. tmpobjid = CreateObject(11729, -3253.492187, -462.899078, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
  2204. tmpobjid = CreateObject(11729, -3253.492187, -460.919067, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
  2205. tmpobjid = CreateObject(11729, -3253.492187, -461.578735, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
  2206. tmpobjid = CreateObject(11729, -3253.492187, -459.599243, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
  2207. tmpobjid = CreateObject(11729, -3253.492187, -460.259155, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
  2208. tmpobjid = CreateObject(11729, -3253.492187, -471.475799, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
  2209. tmpobjid = CreateObject(11729, -3253.492187, -472.135742, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
  2210. tmpobjid = CreateObject(11729, -3253.492187, -470.155731, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
  2211. tmpobjid = CreateObject(11729, -3253.492187, -470.815399, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
  2212. tmpobjid = CreateObject(11729, -3253.492187, -468.835906, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
  2213. tmpobjid = CreateObject(11729, -3253.492187, -469.495819, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
  2214. tmpobjid = CreateObject(11729, -3253.492187, -458.281372, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
  2215. tmpobjid = CreateObject(11729, -3253.492187, -458.941040, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
  2216. tmpobjid = CreateObject(11729, -3253.492187, -456.961517, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
  2217. tmpobjid = CreateObject(11729, -3253.492187, -457.621215, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
  2218. tmpobjid = CreateObject(11729, -3253.492187, -455.641479, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
  2219. tmpobjid = CreateObject(11729, -3253.492187, -456.301147, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
  2220. tmpobjid = CreateObject(11729, -3253.492187, -467.518035, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
  2221. tmpobjid = CreateObject(11729, -3253.492187, -468.177703, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
  2222. tmpobjid = CreateObject(11729, -3253.492187, -466.198181, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
  2223. tmpobjid = CreateObject(11729, -3253.492187, -466.857879, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
  2224. tmpobjid = CreateObject(11729, -3253.492187, -464.878143, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
  2225. tmpobjid = CreateObject(11729, -3253.492187, -465.537811, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
  2226. tmpobjid = CreateObject(11729, -3253.492187, -480.975799, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
  2227. tmpobjid = CreateObject(11729, -3253.492187, -481.635742, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
  2228. tmpobjid = CreateObject(11729, -3253.492187, -479.655731, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
  2229. tmpobjid = CreateObject(11729, -3253.492187, -480.315399, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
  2230. tmpobjid = CreateObject(11729, -3253.492187, -478.335906, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
  2231. tmpobjid = CreateObject(11729, -3253.492187, -478.995819, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
  2232. tmpobjid = CreateObject(11729, -3247.819824, -464.218200, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
  2233. tmpobjid = CreateObject(11729, -3247.819824, -463.558532, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
  2234. tmpobjid = CreateObject(11729, -3247.819824, -465.538024, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
  2235. tmpobjid = CreateObject(11729, -3247.819824, -464.878112, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
  2236. tmpobjid = CreateObject(11729, -3247.819824, -466.858093, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
  2237. tmpobjid = CreateObject(11729, -3247.819824, -466.198425, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
  2238. tmpobjid = CreateObject(11729, -3247.819824, -468.177917, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
  2239. tmpobjid = CreateObject(11729, -3247.819824, -467.518005, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
  2240. tmpobjid = CreateObject(11729, -3247.819824, -456.301452, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
  2241. tmpobjid = CreateObject(11729, -3247.819824, -455.641540, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
  2242. tmpobjid = CreateObject(11729, -3247.819824, -457.621520, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
  2243. tmpobjid = CreateObject(11729, -3247.819824, -456.961853, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
  2244. tmpobjid = CreateObject(11729, -3247.819824, -458.941345, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
  2245. tmpobjid = CreateObject(11729, -3247.819824, -458.281433, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
  2246. tmpobjid = CreateObject(11729, -3247.819824, -469.495788, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
  2247. tmpobjid = CreateObject(11729, -3247.819824, -468.836120, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
  2248. tmpobjid = CreateObject(11729, -3247.819824, -470.815612, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
  2249. tmpobjid = CreateObject(11729, -3247.819824, -470.155944, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
  2250. tmpobjid = CreateObject(11729, -3247.819824, -472.135681, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
  2251. tmpobjid = CreateObject(11729, -3247.819824, -471.476013, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
  2252. tmpobjid = CreateObject(11729, -3247.819824, -460.259216, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
  2253. tmpobjid = CreateObject(11729, -3247.819824, -459.599548, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
  2254. tmpobjid = CreateObject(11729, -3247.819824, -461.579040, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
  2255. tmpobjid = CreateObject(11729, -3247.819824, -460.919372, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
  2256. tmpobjid = CreateObject(11729, -3247.819824, -462.899108, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
  2257. tmpobjid = CreateObject(11729, -3247.819824, -462.239440, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
  2258. tmpobjid = CreateObject(11729, -3247.819824, -481.364013, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
  2259. tmpobjid = CreateObject(11729, -3247.819824, -480.704345, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
  2260. tmpobjid = CreateObject(11729, -3247.819824, -482.023925, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
  2261. tmpobjid = CreateObject(11729, -3247.819824, -473.447265, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
  2262. tmpobjid = CreateObject(11729, -3247.819824, -472.787353, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
  2263. tmpobjid = CreateObject(11729, -3247.819824, -474.767333, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
  2264. tmpobjid = CreateObject(11729, -3247.819824, -474.107666, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
  2265. tmpobjid = CreateObject(11729, -3247.819824, -476.087158, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
  2266. tmpobjid = CreateObject(11729, -3247.819824, -475.427246, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
  2267. tmpobjid = CreateObject(11729, -3247.819824, -477.405029, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
  2268. tmpobjid = CreateObject(11729, -3247.819824, -476.745361, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
  2269. tmpobjid = CreateObject(11729, -3247.819824, -478.724853, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
  2270. tmpobjid = CreateObject(11729, -3247.819824, -478.065185, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
  2271. tmpobjid = CreateObject(11729, -3247.819824, -480.044921, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
  2272. tmpobjid = CreateObject(11729, -3247.819824, -479.385253, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
  2273. tmpobjid = CreateObject(11729, -3247.819824, -438.218200, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
  2274. tmpobjid = CreateObject(11729, -3247.819824, -437.558532, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
  2275. tmpobjid = CreateObject(11729, -3247.819824, -439.538024, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
  2276. tmpobjid = CreateObject(11729, -3247.819824, -438.878112, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
  2277. tmpobjid = CreateObject(11729, -3247.819824, -440.858093, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
  2278. tmpobjid = CreateObject(11729, -3247.819824, -440.198425, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
  2279. tmpobjid = CreateObject(11729, -3247.819824, -442.177917, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
  2280. tmpobjid = CreateObject(11729, -3247.819824, -441.518005, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
  2281. tmpobjid = CreateObject(11729, -3247.819824, -430.301452, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
  2282. tmpobjid = CreateObject(11729, -3247.819824, -429.641540, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
  2283. tmpobjid = CreateObject(11729, -3247.819824, -431.621520, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
  2284. tmpobjid = CreateObject(11729, -3247.819824, -430.961853, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
  2285. tmpobjid = CreateObject(11729, -3247.819824, -432.941345, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
  2286. tmpobjid = CreateObject(11729, -3247.819824, -432.281433, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
  2287. tmpobjid = CreateObject(11729, -3247.819824, -443.495788, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
  2288. tmpobjid = CreateObject(11729, -3247.819824, -442.836120, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
  2289. tmpobjid = CreateObject(11729, -3247.819824, -444.815612, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
  2290. tmpobjid = CreateObject(11729, -3247.819824, -444.155944, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
  2291. tmpobjid = CreateObject(11729, -3247.819824, -446.135681, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
  2292. tmpobjid = CreateObject(11729, -3247.819824, -445.476013, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
  2293. tmpobjid = CreateObject(11729, -3247.819824, -434.259216, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
  2294. tmpobjid = CreateObject(11729, -3247.819824, -433.599548, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
  2295. tmpobjid = CreateObject(11729, -3247.819824, -435.579040, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
  2296. tmpobjid = CreateObject(11729, -3247.819824, -434.919372, 46.763698, 0.000007, 0.000000, -90.000183, 300.00);
  2297. tmpobjid = CreateObject(11729, -3247.819824, -436.899108, 46.763702, 0.000007, 0.000000, -90.000183, 300.00);
  2298. tmpobjid = CreateObject(11729, -3247.819824, -436.239440, 46.763706, 0.000007, 0.000000, -90.000183, 300.00);
  2299. tmpobjid = CreateObject(11729, -3253.492187, -437.559020, 46.763698, 0.000000, 0.000006, 89.999778, 300.00);
  2300. tmpobjid = CreateObject(11729, -3253.492187, -438.218688, 46.763702, 0.000000, 0.000006, 89.999778, 300.00);
  2301. tmpobjid = CreateObject(11729, -3253.492187, -436.239196, 46.763702, 0.000000, 0.000006, 89.999778, 300.00);
  2302. tmpobjid = CreateObject(11729, -3253.492187, -436.899108, 46.763698, 0.000000, 0.000006, 89.999778, 300.00);
  2303. tmpobjid = CreateObject(11729, -3253.492187, -434.919128, 46.763698, 0.000000, 0.000006, 89.999778, 300.00);
  2304. tmpobjid = CreateObject(11729, -3253.492187, -435.578796, 46.763698, 0.000000, 0.000006, 89.999778, 300.00);
  2305. tmpobjid = CreateObject(11729, -3253.492187, -433.599304, 46.763702, 0.000000, 0.000006, 89.999778, 300.00);
  2306. tmpobjid = CreateObject(11729, -3253.492187, -434.259216, 46.763702, 0.000000, 0.000006, 89.999778, 300.00);
  2307. tmpobjid = CreateObject(11729, -3253.492187, -445.475769, 46.763702, 0.000000, 0.000006, 89.999778, 300.00);
  2308. tmpobjid = CreateObject(11729, -3253.492187, -446.135681, 46.763698, 0.000000, 0.000006, 89.999778, 300.00);
  2309. tmpobjid = CreateObject(11729, -3253.492187, -444.155700, 46.763698, 0.000000, 0.000006, 89.999778, 300.00);
  2310. tmpobjid = CreateObject(11729, -3253.492187, -444.815368, 46.763698, 0.000000, 0.000006, 89.999778, 300.00);
  2311. tmpobjid = CreateObject(11729, -3253.492187, -442.835876, 46.763702, 0.000000, 0.000006, 89.999778, 300.00);
  2312. tmpobjid = CreateObject(11729, -3253.492187, -443.495788, 46.763702, 0.000000, 0.000006, 89.999778, 300.00);
  2313. tmpobjid = CreateObject(11729, -3253.492187, -432.281433, 46.763706, 0.000000, 0.000006, 89.999778, 300.00);
  2314. tmpobjid = CreateObject(11729, -3253.492187, -432.941101, 46.763706, 0.000000, 0.000006, 89.999778, 300.00);
  2315. tmpobjid = CreateObject(11729, -3253.492187, -430.961608, 46.763706, 0.000000, 0.000006, 89.999778, 300.00);
  2316. tmpobjid = CreateObject(11729, -3253.492187, -431.621276, 46.763698, 0.000000, 0.000006, 89.999778, 300.00);
  2317. tmpobjid = CreateObject(11729, -3253.492187, -429.641540, 46.763702, 0.000000, 0.000006, 89.999778, 300.00);
  2318. tmpobjid = CreateObject(11729, -3253.492187, -430.301208, 46.763706, 0.000000, 0.000006, 89.999778, 300.00);
  2319. tmpobjid = CreateObject(11729, -3253.492187, -441.518005, 46.763706, 0.000000, 0.000006, 89.999778, 300.00);
  2320. tmpobjid = CreateObject(11729, -3253.492187, -442.177673, 46.763706, 0.000000, 0.000006, 89.999778, 300.00);
  2321. tmpobjid = CreateObject(11729, -3253.492187, -440.198181, 46.763706, 0.000000, 0.000006, 89.999778, 300.00);
  2322. tmpobjid = CreateObject(11729, -3253.492187, -440.857849, 46.763698, 0.000000, 0.000006, 89.999778, 300.00);
  2323. tmpobjid = CreateObject(11729, -3253.492187, -438.878112, 46.763702, 0.000000, 0.000006, 89.999778, 300.00);
  2324. tmpobjid = CreateObject(11729, -3253.492187, -439.537780, 46.763706, 0.000000, 0.000006, 89.999778, 300.00);
  2325. tmpobjid = CreateObject(3034, -3213.225341, -503.591766, 52.556037, 0.000000, 0.000000, 180.000000, 300.00);
  2326. tmpobjid = CreateObject(3034, -3208.081542, -503.591766, 52.556037, 0.000000, 0.000000, 180.000000, 300.00);
  2327. tmpobjid = CreateObject(3034, -3202.938720, -503.591766, 52.556037, 0.000000, 0.000000, 180.000000, 300.00);
  2328. tmpobjid = CreateObject(3034, -3180.258056, -478.798950, 52.556037, 0.000000, -0.000007, -90.000137, 300.00);
  2329. tmpobjid = CreateObject(3034, -3180.258056, -473.655120, 52.556037, 0.000000, -0.000007, -90.000137, 300.00);
  2330. tmpobjid = CreateObject(3034, -3180.258056, -468.512298, 52.556037, 0.000000, -0.000007, -90.000137, 300.00);
  2331. tmpobjid = CreateObject(1649, -3188.620849, -435.119232, 47.756046, 0.000000, 0.000000, 270.000000, 300.00);
  2332. tmpobjid = CreateObject(1649, -3188.446044, -435.119232, 47.756046, 0.000000, 0.000000, 450.000000, 300.00);
  2333. tmpobjid = CreateObject(1649, -3188.620849, -440.313262, 47.756046, 0.000000, 0.000000, 270.000000, 300.00);
  2334. tmpobjid = CreateObject(1649, -3188.446044, -440.313262, 47.756046, 0.000000, 0.000000, 450.000000, 300.00);
  2335. tmpobjid = CreateObject(1649, -3188.620849, -435.119232, 51.087043, 0.000000, 0.000000, 270.000000, 300.00);
  2336. tmpobjid = CreateObject(1649, -3188.446044, -435.119232, 51.087043, 0.000000, 0.000000, 450.000000, 300.00);
  2337. tmpobjid = CreateObject(1649, -3188.620849, -440.313262, 51.087043, 0.000000, 0.000000, 270.000000, 300.00);
  2338. tmpobjid = CreateObject(1649, -3188.446044, -440.313262, 51.087043, 0.000000, 0.000000, 450.000000, 300.00);
  2339. tmpobjid = CreateObject(11729, -3207.810058, -455.768493, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
  2340. tmpobjid = CreateObject(11729, -3208.469726, -455.768493, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
  2341. tmpobjid = CreateObject(11729, -3206.490234, -455.768493, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
  2342. tmpobjid = CreateObject(11729, -3207.150146, -455.768493, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
  2343. tmpobjid = CreateObject(11729, -3205.170166, -455.768493, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
  2344. tmpobjid = CreateObject(11729, -3205.829833, -455.768493, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
  2345. tmpobjid = CreateObject(11729, -3203.850341, -455.768493, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
  2346. tmpobjid = CreateObject(11729, -3204.510253, -455.768493, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
  2347. tmpobjid = CreateObject(11729, -3216.967041, -475.476959, 46.763698, 0.000007, -0.000000, -90.000259, 300.00);
  2348. tmpobjid = CreateObject(11729, -3216.967041, -474.817291, 46.763702, 0.000007, -0.000000, -90.000259, 300.00);
  2349. tmpobjid = CreateObject(11729, -3214.406738, -455.768493, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
  2350. tmpobjid = CreateObject(11729, -3215.066406, -455.768493, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
  2351. tmpobjid = CreateObject(11729, -3213.086914, -455.768493, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
  2352. tmpobjid = CreateObject(11729, -3213.746826, -455.768493, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
  2353. tmpobjid = CreateObject(11729, -3202.532470, -455.768493, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
  2354. tmpobjid = CreateObject(11729, -3203.192138, -455.768493, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
  2355. tmpobjid = CreateObject(11729, -3201.212646, -455.768493, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
  2356. tmpobjid = CreateObject(11729, -3201.872314, -455.768493, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
  2357. tmpobjid = CreateObject(11729, -3199.892578, -455.768493, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
  2358. tmpobjid = CreateObject(11729, -3200.552246, -455.768493, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
  2359. tmpobjid = CreateObject(11729, -3211.769042, -455.768493, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
  2360. tmpobjid = CreateObject(11729, -3212.428710, -455.768493, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
  2361. tmpobjid = CreateObject(11729, -3210.449218, -455.768493, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
  2362. tmpobjid = CreateObject(11729, -3211.108886, -455.768493, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
  2363. tmpobjid = CreateObject(11729, -3209.129150, -455.768493, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
  2364. tmpobjid = CreateObject(11729, -3209.788818, -455.768493, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
  2365. tmpobjid = CreateObject(11729, -3183.680419, -455.768493, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
  2366. tmpobjid = CreateObject(11729, -3184.340087, -455.768493, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
  2367. tmpobjid = CreateObject(11729, -3182.360595, -455.768493, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
  2368. tmpobjid = CreateObject(11729, -3183.020507, -455.768493, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
  2369. tmpobjid = CreateObject(11729, -3181.700195, -455.768493, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
  2370. tmpobjid = CreateObject(11729, -3190.276855, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
  2371. tmpobjid = CreateObject(11729, -3191.597167, -455.768493, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
  2372. tmpobjid = CreateObject(11729, -3192.257080, -455.768493, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
  2373. tmpobjid = CreateObject(11729, -3190.277099, -455.768493, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
  2374. tmpobjid = CreateObject(11729, -3190.936767, -455.768493, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
  2375. tmpobjid = CreateObject(11729, -3188.957275, -455.768493, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
  2376. tmpobjid = CreateObject(11729, -3189.617187, -455.768493, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
  2377. tmpobjid = CreateObject(11729, -3189.617187, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
  2378. tmpobjid = CreateObject(11729, -3191.596679, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
  2379. tmpobjid = CreateObject(11729, -3190.936523, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
  2380. tmpobjid = CreateObject(11729, -3192.256835, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
  2381. tmpobjid = CreateObject(11729, -3182.359863, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
  2382. tmpobjid = CreateObject(11729, -3181.700195, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
  2383. tmpobjid = CreateObject(11729, -3187.639404, -455.768493, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
  2384. tmpobjid = CreateObject(11729, -3188.299072, -455.768493, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
  2385. tmpobjid = CreateObject(11729, -3186.319580, -455.768493, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
  2386. tmpobjid = CreateObject(11729, -3186.979248, -455.768493, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
  2387. tmpobjid = CreateObject(11729, -3184.999511, -455.768493, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
  2388. tmpobjid = CreateObject(11729, -3185.659179, -455.768493, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
  2389. tmpobjid = CreateObject(11729, -3183.680175, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
  2390. tmpobjid = CreateObject(11729, -3183.020507, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
  2391. tmpobjid = CreateObject(11729, -3185.000000, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
  2392. tmpobjid = CreateObject(11729, -3184.339843, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
  2393. tmpobjid = CreateObject(11729, -3186.317871, -464.778625, 46.763706, 0.000007, 0.000007, 179.999725, 300.00);
  2394. tmpobjid = CreateObject(11729, -3185.658203, -464.778625, 46.763706, 0.000007, 0.000007, 179.999725, 300.00);
  2395. tmpobjid = CreateObject(11729, -3187.637695, -464.778625, 46.763706, 0.000007, 0.000007, 179.999725, 300.00);
  2396. tmpobjid = CreateObject(11729, -3186.978027, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
  2397. tmpobjid = CreateObject(11729, -3188.957519, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
  2398. tmpobjid = CreateObject(11729, -3188.297851, -464.778625, 46.763706, 0.000007, 0.000007, 179.999725, 300.00);
  2399. tmpobjid = CreateObject(11729, -3201.491455, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
  2400. tmpobjid = CreateObject(11729, -3200.831787, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
  2401. tmpobjid = CreateObject(11729, -3202.811279, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
  2402. tmpobjid = CreateObject(11729, -3202.151123, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
  2403. tmpobjid = CreateObject(11729, -3203.471435, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
  2404. tmpobjid = CreateObject(11729, -3193.574462, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
  2405. tmpobjid = CreateObject(11729, -3192.914794, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
  2406. tmpobjid = CreateObject(11729, -3194.894775, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
  2407. tmpobjid = CreateObject(11729, -3194.235107, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
  2408. tmpobjid = CreateObject(11729, -3196.214599, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
  2409. tmpobjid = CreateObject(11729, -3195.554443, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
  2410. tmpobjid = CreateObject(11729, -3197.532470, -464.778625, 46.763706, 0.000007, 0.000007, 179.999725, 300.00);
  2411. tmpobjid = CreateObject(11729, -3196.872802, -464.778625, 46.763706, 0.000007, 0.000007, 179.999725, 300.00);
  2412. tmpobjid = CreateObject(11729, -3198.852294, -464.778625, 46.763706, 0.000007, 0.000007, 179.999725, 300.00);
  2413. tmpobjid = CreateObject(11729, -3198.192626, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
  2414. tmpobjid = CreateObject(11729, -3200.172119, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
  2415. tmpobjid = CreateObject(11729, -3199.512451, -464.778625, 46.763706, 0.000007, 0.000007, 179.999725, 300.00);
  2416. tmpobjid = CreateObject(11729, -3212.705810, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
  2417. tmpobjid = CreateObject(11729, -3212.046142, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
  2418. tmpobjid = CreateObject(11729, -3214.025634, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
  2419. tmpobjid = CreateObject(11729, -3213.365478, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
  2420. tmpobjid = CreateObject(11729, -3214.685791, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
  2421. tmpobjid = CreateObject(11729, -3204.788818, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
  2422. tmpobjid = CreateObject(11729, -3204.129150, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
  2423. tmpobjid = CreateObject(11729, -3206.109130, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
  2424. tmpobjid = CreateObject(11729, -3205.449462, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
  2425. tmpobjid = CreateObject(11729, -3207.428955, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
  2426. tmpobjid = CreateObject(11729, -3206.768798, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
  2427. tmpobjid = CreateObject(11729, -3208.746826, -464.778625, 46.763706, 0.000007, 0.000007, 179.999725, 300.00);
  2428. tmpobjid = CreateObject(11729, -3208.087158, -464.778625, 46.763706, 0.000007, 0.000007, 179.999725, 300.00);
  2429. tmpobjid = CreateObject(11729, -3210.066650, -464.778625, 46.763706, 0.000007, 0.000007, 179.999725, 300.00);
  2430. tmpobjid = CreateObject(11729, -3209.406982, -464.778625, 46.763698, 0.000007, 0.000007, 179.999725, 300.00);
  2431. tmpobjid = CreateObject(11729, -3211.386474, -464.778625, 46.763702, 0.000007, 0.000007, 179.999725, 300.00);
  2432. tmpobjid = CreateObject(11729, -3210.726806, -464.778625, 46.763706, 0.000007, 0.000007, 179.999725, 300.00);
  2433. tmpobjid = CreateObject(11729, -3216.967041, -476.796783, 46.763702, 0.000007, -0.000000, -90.000259, 300.00);
  2434. tmpobjid = CreateObject(11729, -3216.967041, -476.136627, 46.763698, 0.000007, -0.000000, -90.000259, 300.00);
  2435. tmpobjid = CreateObject(11729, -3216.967041, -477.456939, 46.763698, 0.000007, -0.000000, -90.000259, 300.00);
  2436. tmpobjid = CreateObject(11729, -3216.967041, -467.559967, 46.763702, 0.000007, -0.000000, -90.000259, 300.00);
  2437. tmpobjid = CreateObject(11729, -3216.967041, -466.900299, 46.763698, 0.000007, -0.000000, -90.000259, 300.00);
  2438. tmpobjid = CreateObject(11729, -3216.967041, -468.880279, 46.763698, 0.000007, -0.000000, -90.000259, 300.00);
  2439. tmpobjid = CreateObject(11729, -3216.967041, -468.220611, 46.763698, 0.000007, -0.000000, -90.000259, 300.00);
  2440. tmpobjid = CreateObject(11729, -3216.967041, -470.200103, 46.763702, 0.000007, -0.000000, -90.000259, 300.00);
  2441. tmpobjid = CreateObject(11729, -3216.967041, -469.539947, 46.763702, 0.000007, -0.000000, -90.000259, 300.00);
  2442. tmpobjid = CreateObject(11729, -3216.967041, -471.517974, 46.763706, 0.000007, -0.000000, -90.000259, 300.00);
  2443. tmpobjid = CreateObject(11729, -3216.967041, -470.858306, 46.763706, 0.000007, -0.000000, -90.000259, 300.00);
  2444. tmpobjid = CreateObject(11729, -3216.967041, -472.837799, 46.763706, 0.000007, -0.000000, -90.000259, 300.00);
  2445. tmpobjid = CreateObject(11729, -3216.967041, -472.178131, 46.763698, 0.000007, -0.000000, -90.000259, 300.00);
  2446. tmpobjid = CreateObject(11729, -3216.967041, -474.157623, 46.763702, 0.000007, -0.000000, -90.000259, 300.00);
  2447. tmpobjid = CreateObject(11729, -3216.967041, -473.497955, 46.763706, 0.000007, -0.000000, -90.000259, 300.00);
  2448. tmpobjid = CreateObject(11729, -3261.389648, -447.668548, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
  2449. tmpobjid = CreateObject(11729, -3230.078857, -480.728332, 46.763702, 0.000000, 0.000006, 89.999702, 300.00);
  2450. tmpobjid = CreateObject(11729, -3230.078857, -481.388000, 46.763698, 0.000000, 0.000006, 89.999702, 300.00);
  2451. tmpobjid = CreateObject(11729, -3230.078857, -479.408020, 46.763698, 0.000000, 0.000006, 89.999702, 300.00);
  2452. tmpobjid = CreateObject(11729, -3230.078857, -480.067687, 46.763698, 0.000000, 0.000006, 89.999702, 300.00);
  2453. tmpobjid = CreateObject(11729, -3230.078857, -478.088195, 46.763702, 0.000000, 0.000006, 89.999702, 300.00);
  2454. tmpobjid = CreateObject(11729, -3230.078857, -478.748352, 46.763702, 0.000000, 0.000006, 89.999702, 300.00);
  2455. tmpobjid = CreateObject(11729, -3230.078857, -476.770324, 46.763706, 0.000000, 0.000006, 89.999702, 300.00);
  2456. tmpobjid = CreateObject(11729, -3230.078857, -477.429992, 46.763706, 0.000000, 0.000006, 89.999702, 300.00);
  2457. tmpobjid = CreateObject(11729, -3230.078857, -475.450500, 46.763706, 0.000000, 0.000006, 89.999702, 300.00);
  2458. tmpobjid = CreateObject(11729, -3230.078857, -476.110168, 46.763698, 0.000000, 0.000006, 89.999702, 300.00);
  2459. tmpobjid = CreateObject(11729, -3262.049804, -447.668548, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
  2460. tmpobjid = CreateObject(11729, -3230.078857, -474.790344, 46.763706, 0.000000, 0.000006, 89.999702, 300.00);
  2461. tmpobjid = CreateObject(11729, -3255.451904, -454.078704, 46.763702, 0.000007, 0.000007, 179.999801, 300.00);
  2462. tmpobjid = CreateObject(11729, -3254.791992, -454.078704, 46.763698, 0.000007, 0.000007, 179.999801, 300.00);
  2463. tmpobjid = CreateObject(11729, -3256.771972, -454.078704, 46.763698, 0.000007, 0.000007, 179.999801, 300.00);
  2464. tmpobjid = CreateObject(11729, -3256.112304, -454.078704, 46.763698, 0.000007, 0.000007, 179.999801, 300.00);
  2465. tmpobjid = CreateObject(11729, -3258.091796, -454.078704, 46.763702, 0.000007, 0.000007, 179.999801, 300.00);
  2466. tmpobjid = CreateObject(11729, -3257.431884, -454.078704, 46.763702, 0.000007, 0.000007, 179.999801, 300.00);
  2467. tmpobjid = CreateObject(11729, -3260.069824, -447.668548, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
  2468. tmpobjid = CreateObject(11729, -3260.729492, -447.668548, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
  2469. tmpobjid = CreateObject(11729, -3258.750000, -447.668548, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
  2470. tmpobjid = CreateObject(11729, -3259.409667, -447.668548, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
  2471. tmpobjid = CreateObject(11729, -3257.432128, -447.668548, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
  2472. tmpobjid = CreateObject(11729, -3258.091796, -447.668548, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
  2473. tmpobjid = CreateObject(11729, -3259.409667, -454.078704, 46.763706, 0.000007, 0.000007, 179.999801, 300.00);
  2474. tmpobjid = CreateObject(11729, -3258.750000, -454.078704, 46.763706, 0.000007, 0.000007, 179.999801, 300.00);
  2475. tmpobjid = CreateObject(11729, -3260.729492, -454.078704, 46.763706, 0.000007, 0.000007, 179.999801, 300.00);
  2476. tmpobjid = CreateObject(11729, -3260.069824, -454.078704, 46.763698, 0.000007, 0.000007, 179.999801, 300.00);
  2477. tmpobjid = CreateObject(11729, -3262.049560, -454.078704, 46.763702, 0.000007, 0.000007, 179.999801, 300.00);
  2478. tmpobjid = CreateObject(11729, -3261.389892, -454.078704, 46.763706, 0.000007, 0.000007, 179.999801, 300.00);
  2479. tmpobjid = CreateObject(11729, -3256.112304, -447.668548, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
  2480. tmpobjid = CreateObject(11729, -3256.771972, -447.668548, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
  2481. tmpobjid = CreateObject(11729, -3254.791992, -447.668548, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
  2482. tmpobjid = CreateObject(11729, -3255.451660, -447.668548, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
  2483. tmpobjid = CreateObject(11729, -3237.832275, -454.098632, 46.763698, 0.000007, 0.000007, 179.999801, 300.00);
  2484. tmpobjid = CreateObject(11729, -3237.172607, -454.098632, 46.763702, 0.000007, 0.000007, 179.999801, 300.00);
  2485. tmpobjid = CreateObject(11729, -3239.152099, -454.098632, 46.763702, 0.000007, 0.000007, 179.999801, 300.00);
  2486. tmpobjid = CreateObject(11729, -3238.492187, -454.098632, 46.763698, 0.000007, 0.000007, 179.999801, 300.00);
  2487. tmpobjid = CreateObject(11729, -3240.472167, -454.098632, 46.763698, 0.000007, 0.000007, 179.999801, 300.00);
  2488. tmpobjid = CreateObject(11729, -3239.812500, -454.098632, 46.763698, 0.000007, 0.000007, 179.999801, 300.00);
  2489. tmpobjid = CreateObject(11729, -3241.791992, -454.098632, 46.763702, 0.000007, 0.000007, 179.999801, 300.00);
  2490. tmpobjid = CreateObject(11729, -3241.132080, -454.098632, 46.763702, 0.000007, 0.000007, 179.999801, 300.00);
  2491. tmpobjid = CreateObject(11729, -3229.915527, -454.098632, 46.763702, 0.000007, 0.000007, 179.999801, 300.00);
  2492. tmpobjid = CreateObject(11729, -3237.833007, -447.668609, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
  2493. tmpobjid = CreateObject(11729, -3231.235595, -454.098632, 46.763698, 0.000007, 0.000007, 179.999801, 300.00);
  2494. tmpobjid = CreateObject(11729, -3230.575927, -454.098632, 46.763698, 0.000007, 0.000007, 179.999801, 300.00);
  2495. tmpobjid = CreateObject(11729, -3232.555419, -454.098632, 46.763702, 0.000007, 0.000007, 179.999801, 300.00);
  2496. tmpobjid = CreateObject(11729, -3231.895507, -454.098632, 46.763702, 0.000007, 0.000007, 179.999801, 300.00);
  2497. tmpobjid = CreateObject(11729, -3243.109863, -454.098632, 46.763706, 0.000007, 0.000007, 179.999801, 300.00);
  2498. tmpobjid = CreateObject(11729, -3242.450195, -454.098632, 46.763706, 0.000007, 0.000007, 179.999801, 300.00);
  2499. tmpobjid = CreateObject(11729, -3244.429687, -454.098632, 46.763706, 0.000007, 0.000007, 179.999801, 300.00);
  2500. tmpobjid = CreateObject(11729, -3243.770019, -454.098632, 46.763698, 0.000007, 0.000007, 179.999801, 300.00);
  2501. tmpobjid = CreateObject(11729, -3245.749755, -454.098632, 46.763702, 0.000007, 0.000007, 179.999801, 300.00);
  2502. tmpobjid = CreateObject(11729, -3245.090087, -454.098632, 46.763706, 0.000007, 0.000007, 179.999801, 300.00);
  2503. tmpobjid = CreateObject(11729, -3233.873291, -454.098632, 46.763706, 0.000007, 0.000007, 179.999801, 300.00);
  2504. tmpobjid = CreateObject(11729, -3233.213623, -454.098632, 46.763706, 0.000007, 0.000007, 179.999801, 300.00);
  2505. tmpobjid = CreateObject(11729, -3235.193115, -454.098632, 46.763706, 0.000007, 0.000007, 179.999801, 300.00);
  2506. tmpobjid = CreateObject(11729, -3234.533447, -454.098632, 46.763698, 0.000007, 0.000007, 179.999801, 300.00);
  2507. tmpobjid = CreateObject(11729, -3236.513183, -454.098632, 46.763702, 0.000007, 0.000007, 179.999801, 300.00);
  2508. tmpobjid = CreateObject(11729, -3235.853515, -454.098632, 46.763706, 0.000007, 0.000007, 179.999801, 300.00);
  2509. tmpobjid = CreateObject(11729, -3238.492675, -447.668609, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
  2510. tmpobjid = CreateObject(11729, -3236.513183, -447.668609, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
  2511. tmpobjid = CreateObject(11729, -3237.172851, -447.668609, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
  2512. tmpobjid = CreateObject(11729, -3235.192871, -447.668609, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
  2513. tmpobjid = CreateObject(11729, -3235.852539, -447.668609, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
  2514. tmpobjid = CreateObject(11729, -3233.873046, -447.668609, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
  2515. tmpobjid = CreateObject(11729, -3234.533203, -447.668609, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
  2516. tmpobjid = CreateObject(11729, -3245.749511, -447.668609, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
  2517. tmpobjid = CreateObject(11729, -3244.429687, -447.668609, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
  2518. tmpobjid = CreateObject(11729, -3245.089355, -447.668609, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
  2519. tmpobjid = CreateObject(11729, -3243.109863, -447.668609, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
  2520. tmpobjid = CreateObject(11729, -3243.769531, -447.668609, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
  2521. tmpobjid = CreateObject(11729, -3232.555175, -447.668609, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
  2522. tmpobjid = CreateObject(11729, -3233.214843, -447.668609, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
  2523. tmpobjid = CreateObject(11729, -3231.235351, -447.668609, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
  2524. tmpobjid = CreateObject(11729, -3231.895019, -447.668609, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
  2525. tmpobjid = CreateObject(11729, -3229.915527, -447.668609, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
  2526. tmpobjid = CreateObject(11729, -3230.575195, -447.668609, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
  2527. tmpobjid = CreateObject(11729, -3241.791992, -447.668609, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
  2528. tmpobjid = CreateObject(11729, -3242.451660, -447.668609, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
  2529. tmpobjid = CreateObject(11729, -3240.472167, -447.668609, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
  2530. tmpobjid = CreateObject(11729, -3241.131835, -447.668609, 46.763698, 0.000000, -0.000000, -0.000190, 300.00);
  2531. tmpobjid = CreateObject(11729, -3239.151855, -447.668609, 46.763702, 0.000000, -0.000000, -0.000190, 300.00);
  2532. tmpobjid = CreateObject(11729, -3239.811523, -447.668609, 46.763706, 0.000000, -0.000000, -0.000190, 300.00);
  2533. tmpobjid = CreateObject(11729, -3227.786376, -463.658966, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
  2534. tmpobjid = CreateObject(11729, -3227.786376, -464.318634, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
  2535. tmpobjid = CreateObject(11729, -3227.786376, -462.339141, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
  2536. tmpobjid = CreateObject(11729, -3227.786376, -462.999084, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
  2537. tmpobjid = CreateObject(11729, -3227.786376, -461.019073, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
  2538. tmpobjid = CreateObject(11729, -3227.786376, -461.678741, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
  2539. tmpobjid = CreateObject(11729, -3227.786376, -459.699249, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
  2540. tmpobjid = CreateObject(11729, -3227.786376, -460.359161, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
  2541. tmpobjid = CreateObject(11729, -3227.786376, -471.575805, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
  2542. tmpobjid = CreateObject(11729, -3227.786376, -472.235748, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
  2543. tmpobjid = CreateObject(11729, -3227.786376, -470.255737, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
  2544. tmpobjid = CreateObject(11729, -3227.786376, -470.915405, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
  2545. tmpobjid = CreateObject(11729, -3227.786376, -468.935913, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
  2546. tmpobjid = CreateObject(11729, -3227.786376, -469.595825, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
  2547. tmpobjid = CreateObject(11729, -3227.786376, -458.381378, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
  2548. tmpobjid = CreateObject(11729, -3227.786376, -459.041046, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
  2549. tmpobjid = CreateObject(11729, -3227.786376, -457.061523, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
  2550. tmpobjid = CreateObject(11729, -3227.786376, -457.721221, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
  2551. tmpobjid = CreateObject(11729, -3227.786376, -455.741485, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
  2552. tmpobjid = CreateObject(11729, -3227.786376, -456.401153, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
  2553. tmpobjid = CreateObject(11729, -3227.786376, -467.618041, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
  2554. tmpobjid = CreateObject(11729, -3227.786376, -468.277709, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
  2555. tmpobjid = CreateObject(11729, -3227.786376, -466.298187, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
  2556. tmpobjid = CreateObject(11729, -3227.786376, -466.957885, 46.763698, 0.000000, 0.000007, 89.999855, 300.00);
  2557. tmpobjid = CreateObject(11729, -3227.786376, -464.978149, 46.763702, 0.000000, 0.000007, 89.999855, 300.00);
  2558. tmpobjid = CreateObject(11729, -3227.786376, -465.637817, 46.763706, 0.000000, 0.000007, 89.999855, 300.00);
  2559. tmpobjid = CreateObject(2205, -3271.204833, -431.860137, 46.915061, 0.000000, 0.000000, 180.000000, 300.00);
  2560. tmpobjid = CreateObject(2205, -3257.044921, -468.479187, 46.915061, -0.000007, -0.000007, 0.000007, 300.00);
  2561. tmpobjid = CreateObject(1811, -3271.546386, -436.444305, 47.534145, 0.000000, 0.000000, 270.000000, 300.00);
  2562. tmpobjid = CreateObject(1811, -3267.046386, -436.444305, 47.534145, 0.000000, 0.000000, 270.000000, 300.00);
  2563. tmpobjid = CreateObject(1811, -3262.546386, -436.444305, 47.534145, 0.000000, 0.000000, 270.000000, 300.00);
  2564. tmpobjid = CreateObject(1811, -3262.546386, -439.444305, 47.534145, 0.000000, 0.000000, 270.000000, 300.00);
  2565. tmpobjid = CreateObject(1811, -3262.546386, -442.444305, 47.534145, 0.000000, 0.000000, 270.000000, 300.00);
  2566. tmpobjid = CreateObject(1811, -3267.046386, -442.444305, 47.534145, 0.000000, 0.000000, 270.000000, 300.00);
  2567. tmpobjid = CreateObject(1811, -3271.546386, -442.444305, 47.534145, 0.000000, 0.000000, 270.000000, 300.00);
  2568. tmpobjid = CreateObject(1811, -3271.546386, -439.444305, 47.534145, 0.000000, 0.000000, 270.000000, 300.00);
  2569. tmpobjid = CreateObject(1811, -3267.046386, -439.444305, 47.534145, 0.000000, 0.000000, 270.000000, 300.00);
  2570. tmpobjid = CreateObject(1806, -3255.197509, -429.218780, 46.944095, 0.000000, 0.000000, 270.000000, 300.00);
  2571. tmpobjid = CreateObject(1806, -3255.197509, -431.718780, 46.944095, 0.000000, 0.000000, 270.000000, 300.00);
  2572. tmpobjid = CreateObject(1806, -3255.197509, -434.218780, 46.944095, 0.000000, 0.000000, 270.000000, 300.00);
  2573. tmpobjid = CreateObject(1806, -3255.197509, -436.718780, 46.944095, 0.000000, 0.000000, 270.000000, 300.00);
  2574. tmpobjid = CreateObject(1806, -3255.197509, -439.218780, 46.944095, 0.000000, 0.000000, 270.000000, 300.00);
  2575. tmpobjid = CreateObject(1806, -3255.197509, -441.718780, 46.944095, 0.000000, 0.000000, 270.000000, 300.00);
  2576. tmpobjid = CreateObject(1806, -3255.197509, -444.218780, 46.944095, 0.000000, 0.000000, 270.000000, 300.00);
  2577. tmpobjid = CreateObject(1806, -3271.798583, -471.322357, 46.944095, -0.000007, 0.000007, 89.999961, 300.00);
  2578. tmpobjid = CreateObject(1806, -3271.798583, -468.822357, 46.944095, -0.000007, 0.000007, 89.999961, 300.00);
  2579. tmpobjid = CreateObject(1806, -3271.798583, -466.322357, 46.944095, -0.000007, 0.000007, 89.999961, 300.00);
  2580. tmpobjid = CreateObject(1806, -3271.798583, -463.822357, 46.944095, -0.000007, 0.000007, 89.999961, 300.00);
  2581. tmpobjid = CreateObject(1806, -3271.798583, -461.322357, 46.944095, -0.000007, 0.000007, 89.999961, 300.00);
  2582. tmpobjid = CreateObject(1806, -3271.798583, -458.822357, 46.944095, -0.000007, 0.000007, 89.999961, 300.00);
  2583. tmpobjid = CreateObject(1811, -3261.246093, -457.934295, 47.534145, 0.000000, 0.000000, 450.000000, 300.00);
  2584. tmpobjid = CreateObject(1811, -3256.746093, -457.934295, 47.534145, 0.000000, 0.000000, 450.000000, 300.00);
  2585. tmpobjid = CreateObject(1811, -3256.746093, -460.934295, 47.534145, 0.000000, 0.000000, 450.000000, 300.00);
  2586. tmpobjid = CreateObject(1811, -3256.746093, -463.934295, 47.534145, 0.000000, 0.000000, 450.000000, 300.00);
  2587. tmpobjid = CreateObject(1811, -3261.246093, -463.934295, 47.534145, 0.000000, 0.000000, 450.000000, 300.00);
  2588. tmpobjid = CreateObject(1811, -3261.246093, -460.934295, 47.534145, 0.000000, 0.000000, 450.000000, 300.00);
  2589. tmpobjid = CreateObject(3034, -3222.938720, -428.181732, 53.726001, -0.000007, -0.000007, 0.000007, 300.00);
  2590. tmpobjid = CreateObject(3034, -3228.082519, -428.181732, 53.726001, -0.000007, -0.000007, 0.000007, 300.00);
  2591. tmpobjid = CreateObject(3034, -3233.225341, -428.181732, 53.726001, -0.000007, -0.000007, 0.000007, 300.00);
  2592. tmpobjid = CreateObject(3034, -3238.438720, -428.181732, 53.726001, -0.000007, -0.000007, 0.000007, 300.00);
  2593. tmpobjid = CreateObject(3034, -3243.582519, -428.181732, 53.726001, -0.000007, -0.000007, 0.000007, 300.00);
  2594. tmpobjid = CreateObject(3034, -3248.725341, -428.181732, 53.726001, -0.000007, -0.000007, 0.000007, 300.00);
  2595. tmpobjid = CreateObject(3034, -3253.938720, -428.181732, 53.726001, -0.000007, -0.000007, 0.000007, 300.00);
  2596. tmpobjid = CreateObject(3034, -3259.082519, -428.181732, 53.726001, -0.000007, -0.000007, 0.000007, 300.00);
  2597. tmpobjid = CreateObject(3034, -3262.108642, -431.519744, 53.726001, -0.000007, 0.000000, 89.999977, 300.00);
  2598. tmpobjid = CreateObject(3034, -3262.108642, -436.663543, 53.726001, -0.000007, 0.000000, 89.999977, 300.00);
  2599. tmpobjid = CreateObject(3034, -3262.108642, -442.019744, 53.726001, -0.000007, 0.000000, 89.999977, 300.00);
  2600. tmpobjid = CreateObject(3034, -3262.108642, -447.163543, 53.726001, -0.000007, 0.000000, 89.999977, 300.00);
  2601. tmpobjid = CreateObject(3034, -3262.108642, -452.519744, 53.726001, -0.000007, 0.000000, 89.999977, 300.00);
  2602. tmpobjid = CreateObject(3034, -3262.108642, -457.663543, 53.726001, -0.000007, 0.000000, 89.999977, 300.00);
  2603. return 1;
  2604. }