· 7 years ago · Jan 03, 2019, 01:10 AM
1//SkyHawk RPG, of course made by me, SkyHawk
2
3//----Includes-----
4#include <a_samp>
5#include <a_mysql>
6#include <YSI\y_ini>
7#include <streamer>
8#include <sscanf2>
9#include <foreach>
10#include <cmd>
11#include <zcmd>
12//----Colors----
13#define COL_WHITE "{FFFFFF}"
14#define COL_RED "{F81414}"
15#define COL_GREEN "{00FF22}"
16#define COL_LIGHTBLUE "{00CED1}"
17#define COLOR_PURPLE 0x800080FF
18#define COLOR_GREY 0xAFAFAFAA
19#define COLOR_BLUE "{0049FF}"
20//----[NEW]----
21new retexture;
22new vehicle0;
23new vehicle1;
24new vehicle2;
25new vehicle3;
26new vehicle4;
27new vehicle5;
28new vehicle6;
29new vehicle7;
30//----Others----
31#define sd 350.0 //streaming distance (350.0 is recommended, change it as you like)
32#define dd 350.0 //draw distance (0.0 means the object's default draw distance)
33#define _streamer_included
34//----MYSQL Configure----
35#define MYSQL_HOST "localhost" // Change this to your MySQL Remote IP or "localhost".
36#define MYSQL_USER "root" // Change this to your MySQL Database username.
37#define MYSQL_PASS "" // Change this to your MySQL Database password.
38#define MYSQL_DATABASE "shdatabase" // Change this to your MySQL Database name.
39#define DIALOG_REGISTER (0)
40#define DIALOG_LOGIN (1)
41new MySQL: Database, Corrupt_Check[MAX_PLAYERS];
42new MySQL:mysql;
43//----Vehicles MYSQL----
44#define SCM SendClientMessage
45#define DIALOG_BUY_VEHICLE 5413
46#define DIALOG_VEHICLES 5513
47#define MAX_SERVER_VEHICLES 2000
48//----Forwards
49forward LoadDealerVehicles();
50forward LoadPlayerVehicles(playerid);
51//----Vehicles MYSQL Enums
52enum
53{
54 MODE_NOLOCK,
55 MODE_LOCK,
56};
57
58enum VehiclesData
59{
60 vehID,
61 vehSessionID,
62 vehModel,
63 vehName[25],
64 vehOwner[26],
65 vehPlate[16],
66 vehPrice,
67 vehLock,
68 vehMod[14],
69 vehColorOne,
70 vehColorTwo,
71 Text3D:vehLabel,
72 Float:vehX,
73 Float:vehY,
74 Float:vehZ,
75 Float:vehA
76};
77//----Vehicles MYSQL News
78new vInfo[MAX_VEHICLES][VehiclesData],
79 Iterator: ServerVehicles<MAX_VEHICLES>,
80 Iterator: PrivateVehicles[MAX_PLAYERS]<MAX_SERVER_VEHICLES>;
81new VehicleNames[212][] =
82{
83 "Landstalker", "Bravura", "Buffalo", "Linerunner", "Pereniel", "Sentinel", "Dumper", "Firetruck", "Trashmaster", "Stretch", "Manana", "Infernus","Voodoo", "Pony",
84 "Mule", "Cheetah", "Ambulance", "Leviathan", "Moonbeam", "Esperanto", "Taxi", "Washington", "Bobcat", "Mr Whoopee", "BF Injection", "Hunter", "Premier", "Enforcer",
85 "Securicar", "Banshee", "Predator", "Bus", "Rhino", "Barracks", "Hotknife", "Trailer", "Previon", "Coach", "Cabbie", "Stallion", "Rumpo", "RC Bandit", "Romero",
86 "Packer", "Monster", "Admiral", "Squalo", "Seasparrow", "Pizzaboy", "Tram", "Trailer 2", "Turismo", "Speeder", "Reefer", "Tropic", "Flatbed", "Yankee", "Caddy",
87 "Solair", "Berkley's RC Van", "Skimmer", "PCJ-600", "Faggio", "Freeway", "RC Baron", "RC Raider", "Glendale", "Oceanic", "Sanchez", "Sparrow", "Patriot", "Quad",
88 "Coastguard", "Dinghy", "Hermes", "Sabre", "Rustler", "ZR3 50", "Walton", "Regina", "Comet", "BMX", "Burrito", "Camper", "Marquis", "Baggage", "Dozer", "Maverick",
89 "News Chopper", "Rancher", "FBI Rancher", "Virgo", "Greenwood", "Jetmax", "Hotring", "Sandking", "Blista Compact", "Police Maverick", "Boxville", "Benson", "Mesa",
90 "RC Goblin", "Hotring Racer A", "Hotring Racer B", "Bloodring Banger", "Rancher", "Super GT", "Elegant", "Journey", "Bike", "Mountain Bike", "Beagle", "Cropdust",
91 "Stunt", "Tanker", "RoadTrain", "Nebula", "Majestic", "Buccaneer", "Shamal", "Hydra", "FCR-900", "NRG-500", "HPV1000", "Cement Truck", "Tow Truck", "Fortune",
92 "Cadrona", "FBI Truck", "Willard", "Forklift", "Tractor", "Combine", "Feltzer", "Remington", "Slamvan", "Blade", "Freight", "Streak", "Vortex", "Vincent", "Bullet",
93 "Clover", "Sadler", "Firetruck", "Hustler", "Intruder", "Primo", "Cargobob", "Tampa", "Sunrise", "Merit", "Utility", "Nevada", "Yosemite", "Windsor", "Monster A",
94 "Monster B", "Uranus", "Jester", "Sultan", "Stratum", "Elegy", "Raindance", "RC Tiger", "Flash", "Tahoma", "Savanna", "Bandito", "Freight", "Trailer", "Kart", "Mower",
95 "Duneride", "Sweeper", "Broadway", "Tornado", "AT-400", "DFT-30", "Huntley", "Stafford", "BF-400", "Newsvan", "Tug", "Trailer A", "Emperor", "Wayfarer", "Euros",
96 "Hotdog", "Club", "Trailer B", "Trailer C", "Andromada", "Dodo", "RC Cam", "Launch", "Police Car (LSPD)", "Police Car (SFPD)", "Police Car (LVPD)", "Police Ranger",
97 "Picador", "S.W.A.T. Van", "Alpha", "Phoenix", "Glendale", "Sadler", "Luggage Trailer A", "Luggage Trailer B", "Stair Trailer", "Boxville", "Farm Plow", "Utility Trailer"
98};
99//----MYSQL Enum----
100enum ENUM_PLAYER_DATA
101{
102 ID,
103 Name[25],
104
105 Password[65],
106 Salt[11],
107
108 PasswordFails,
109
110 Kills,
111 Deaths,
112
113 Score,
114 Cash,
115
116 Cache: Player_Cache,
117 bool:LoggedIn
118}
119
120new pInfo[MAX_PLAYERS][ENUM_PLAYER_DATA];
121
122main()
123{
124 print("\n----------------------------------");
125 print(" SH-RPG-V1.01 ");
126 print("----------------------------------\n");
127}
128
129public OnGameModeInit()
130{
131 SetGameModeText("SH RPG V1.01");
132 new MySQLOpt: option_id = mysql_init_options();
133 mysql_set_option(option_id, AUTO_RECONNECT, true); // We will set that option to automatically reconnect on timeouts.
134
135 Database = mysql_connect(MYSQL_HOST, MYSQL_USER, MYSQL_PASS, MYSQL_DATABASE, option_id); // Setting up the "Database" handle on the given MySQL details above.
136
137 if(Database == MYSQL_INVALID_HANDLE || mysql_errno(Database) != 0) // Checking if the database connection is invalid to shutdown.
138 {
139 print("I couldn't connect to the MySQL server, closing."); // Printing a message to the log.
140
141 SendRconCommand("exit"); // Sending console command to shut down server.
142 return 1;
143 }
144
145 print("I have connected to the MySQL server."); // If the given MySQL details were all okay, this message prints to the log
146
147 mysql_tquery(Database, "CREATE TABLE IF NOT EXISTS `PLAYERS` (`ID` int(11) NOT NULL AUTO_INCREMENT,`USERNAME` varchar(24) NOT NULL,`PASSWORD` char(65) NOT NULL,`SALT` char(11) NOT NULL,`SCORE` mediumint(7), `KILLS` mediumint(7), `CASH` mediumint(7) NOT NULL DEFAULT '0',`DEATHS` mediumint(7) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), UNIQUE KEY `USERNAME` (`USERNAME`))");
148
149 mysql_tquery(mysql, "CREATE TABLE IF NOT EXISTS `Vehicles` (\
150 `vehID` int(11) NOT NULL,\
151 `vehModel` int(11) NOT NULL,\
152 `vehName` varchar(25) NOT NULL,\
153 `vehOwner` varchar(25) NOT NULL default '-',\
154 `vehPlate` varchar(16) NOT NULL default 'UG',\
155 `vehPrice` int(11) NOT NULL,\
156 `vehLock` int(11) NOT NULL,\
157 `vehMod_1` int(11) NOT NULL,\
158 `vehMod_2` int(11) NOT NULL,\
159 `vehMod_3` int(11) NOT NULL,\
160 `vehMod_4` int(11) NOT NULL,\
161 `vehMod_5` int(11) NOT NULL,\
162 `vehMod_6` int(11) NOT NULL,\
163 `vehMod_7` int(11) NOT NULL,\
164 `vehMod_8` int(11) NOT NULL,\
165 `vehMod_9` int(11) NOT NULL,\
166 `vehMod_10` int(11) NOT NULL,\
167 `vehMod_11` int(11) NOT NULL,\
168 `vehMod_12` int(11) NOT NULL,\
169 `vehMod_13` int(11) NOT NULL,\
170 `vehMod_14` int(11) NOT NULL,\
171 `vehColorOne` int(11) NOT NULL,\
172 `vehColorTwo` int(11) NOT NULL,\
173 `vehX` float NOT NULL,\
174 `vehY` float NOT NULL,\
175 `vehZ` float NOT NULL,\
176 `vehA` float NOT NULL,\
177 UNIQUE KEY `vehID` (`vehID`))");
178
179 Iter_Init(PrivateVehicles);
180 mysql_tquery(mysql, "SELECT * FROM `Vehicles` WHERE `vehOwner` = '-'", "LoadDealerVehicles", "");
181
182 //Random vehicles
183 vehicle0 = AddStaticVehicleEx (426, -2429.6868, 515.4016, 29.6577, 36.0000, 32, 122, 100);
184 SetVehicleNumberPlate(vehicle0, "{00CED1}Sky{0049FF}Hawk");
185 vehicle1 = AddStaticVehicleEx (426, -2425.8240, 518.4825, 29.6577, 42.0000, 12, 111, 100);
186 SetVehicleNumberPlate(vehicle1, "{00CED1}Sky{0049FF}Hawk");
187 vehicle2 = AddStaticVehicleEx (426, -2422.4265, 521.6653, 29.6577, 46.0000, 98, 112, 100);
188 SetVehicleNumberPlate(vehicle2, "{00CED1}Sky{0049FF}Hawk");
189 vehicle3 = AddStaticVehicleEx (426, -2419.3262, 524.9048, 29.6577, 52.0000, 255, 213, 100);
190 SetVehicleNumberPlate(vehicle3, "{00CED1}Sky{0049FF}Hawk");
191 vehicle4 = AddStaticVehicleEx (426, -2416.8435, 528.4265, 29.6577, 59.0000, 211, 178, 100);
192 SetVehicleNumberPlate(vehicle4, "{00CED1}Sky{0049FF}Hawk");
193 vehicle5 = AddStaticVehicleEx (426, -2414.7969, 531.9970, 29.6577, 66.5000, 56, 190, 100);
194 SetVehicleNumberPlate(vehicle5, "{00CED1}Sky{0049FF}Hawk");
195 vehicle6 = AddStaticVehicleEx (426, -2413.6216, 535.8967, 29.6577, 77.0000, 43, 210, 100);
196 SetVehicleNumberPlate(vehicle6, "{00CED1}Sky{0049FF}Hawk");
197 vehicle7 = AddStaticVehicleEx (426, -2413.3164, 539.9451, 29.6577, 87.0000, 56, 103, 100);
198 SetVehicleNumberPlate(vehicle7, "{00CED1}Sky{0049FF}Hawk");
199 //Mapa spawn
200 CreateObject (19122, -2431.80029, 518.25677, 29.96620, 0.00000, 0.00000, 0.00000);
201 CreateObject (19122, -2453.10254, 536.91962, 29.96620, 0.00000, 0.00000, 0.00000);
202 CreateObject (19122, -2428.30786, 521.32843, 29.96620, 0.00000, 0.00000, 0.00000);
203 CreateObject (19122, -2424.99048, 524.12311, 29.96620, 0.00000, 0.00000, 0.00000);
204 CreateObject (19122, -2422.17969, 527.15039, 29.96620, 0.00000, 0.00000, 0.00000);
205 CreateObject (19122, -2419.87231, 530.15436, 29.96620, 0.00000, 0.00000, 0.00000);
206 CreateObject (19122, -2418.24365, 533.57031, 29.96420, 0.00000, 0.00000, 0.00000);
207 CreateObject (19122, -2417.33862, 536.66968, 29.94020, 0.00000, 0.00000, 0.00000);
208 CreateObject (19122, -2417.18384, 540.11188, 29.94020, 0.00000, 0.00000, 0.00000);
209 CreateObject (18652, -2444.45068, 516.33789, 32.82670, 0.00000, 0.00000, 90.00000);
210 CreateObject (18652, -2442.44458, 516.33789, 32.82670, 0.00000, 0.00000, 90.00000);
211 CreateObject (18652, -2446.45679, 516.33789, 32.82670, 0.00000, 0.00000, 90.00000);
212 CreateObject (18652, -2440.45557, 516.34857, 32.82670, 0.00000, 0.00000, 90.00000);
213 CreateObject (1229, -2428.70288, 499.29880, 30.51370, 0.00000, 0.00000, 180.00000);
214 CreateObject (19949, -2438.99512, 496.89209, 29.09930, 0.00000, 0.00000, 164.00000);
215 //Random mapping (1)
216 CreateObject(983,1198.3509521,-1837.2430420,13.2309999,0.0000000,0.0000000,90.0000000); //object(fenceshit3) (1)
217 CreateObject(983,1201.5560303,-1837.2199707,13.2559996,0.0000000,0.0000000,90.0000000); //object(fenceshit3) (2)
218 CreateObject(983,1195.1379395,-1833.9909668,13.2639999,0.0000000,0.0000000,0.0000000); //object(fenceshit3) (3)
219 CreateObject(983,1195.1209717,-1829.1999512,13.2390003,0.0000000,0.0000000,0.0000000); //object(fenceshit3) (4)
220 CreateObject(984,1189.9849854,-1817.7810059,13.2069998,0.0000000,0.0000000,180.0000000); //object(fenceshit2) (3)
221 CreateObject(983,1193.1610107,-1825.7020264,13.2670002,0.0000000,0.0000000,270.0000000); //object(fenceshit3) (5)
222 CreateObject(984,1189.9659424,-1819.3459473,13.2069998,0.0000000,0.0000000,179.9945068); //object(fenceshit2) (4)
223 CreateObject(983,1199.5639648,-1825.6810303,13.2670002,0.0000000,0.0000000,270.0000000); //object(fenceshit3) (6)
224 CreateObject(984,1213.9339600,-1825.6510010,13.0430002,0.0000000,0.0000000,90.0000000); //object(fenceshit2) (5)
225 CreateObject(983,1225.0439453,-1825.6269531,13.0900002,0.0000000,0.0000000,90.0000000); //object(fenceshit3) (9)
226 CreateObject(983,1232.9840088,-1825.5810547,13.0900002,0.0000000,0.0000000,90.0000000); //object(fenceshit3) (10)
227 CreateObject(983,1236.1960449,-1822.3879395,13.1040001,0.0000000,0.0000000,0.0000000); //object(fenceshit3) (11)
228 CreateObject(983,1236.2459717,-1812.6860352,13.1149998,0.0000000,0.0000000,0.0000000); //object(fenceshit3) (12)
229 CreateObject(984,1282.8680420,-1792.0310059,13.2030001,0.0000000,0.0000000,0.0000000); //object(fenceshit2) (6)
230 CreateObject(983,1279.7139893,-1785.5429688,13.2629995,0.0000000,0.0000000,90.0000000); //object(fenceshit3) (13)
231 CreateObject(982,1282.8499756,-1811.2380371,13.2419996,0.0000000,0.0000000,0.0000000); //object(fenceshit) (2)
232 CreateObject(984,1282.8540039,-1830.5350342,13.2040005,0.0000000,0.0000000,0.0000000); //object(fenceshit2) (7)
233 CreateObject(982,1247.0679932,-1837.4150391,13.0810003,0.0000000,0.0000000,270.0000000); //object(fenceshit) (3)
234 CreateObject(983,1230.9820557,-1837.4239502,13.0719995,0.0000000,0.0000000,90.0000000); //object(fenceshit3) (14)
235 CreateObject(983,1226.1729736,-1837.4460449,13.0719995,0.0000000,0.0000000,90.0000000); //object(fenceshit3) (15)
236 CreateObject(1237,1205.1400146,-1837.3289795,12.3820000,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (1)
237 CreateObject(1237,1206.2080078,-1837.7430420,12.3820000,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (2)
238 CreateObject(1237,1207.0059814,-1838.3630371,12.3820000,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (3)
239 CreateObject(1237,1207.6049805,-1839.0729980,12.3820000,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (4)
240 CreateObject(1237,1208.1569824,-1839.8470459,12.3820000,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (5)
241 CreateObject(1237,1208.6149902,-1840.7490234,12.3820000,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (6)
242 CreateObject(1237,1208.9100342,-1841.7679443,12.3820000,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (7)
243 CreateObject(1237,1222.5500488,-1837.4909668,12.3780003,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (8)
244 CreateObject(1237,1221.5830078,-1837.7280273,12.3780003,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (9)
245 CreateObject(1237,1220.7469482,-1838.2449951,12.3780003,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (10)
246 CreateObject(1237,1219.9730225,-1838.8389893,12.3780003,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (11)
247 CreateObject(1237,1219.3100586,-1839.5699463,12.3780003,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (12)
248 CreateObject(1237,1218.7609863,-1840.4010010,12.3780003,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (13)
249 CreateObject(1237,1218.5500488,-1841.4560547,12.3780003,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (14)
250 CreateObject(1237,1260.4339600,-1837.3640137,12.5480003,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (15)
251 CreateObject(1237,1261.5009766,-1837.5550537,12.5480003,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (16)
252 CreateObject(1237,1262.5140381,-1837.9200439,12.5480003,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (17)
253 CreateObject(1237,1263.3489990,-1838.4670410,12.5480003,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (18)
254 CreateObject(1237,1264.0810547,-1839.2149658,12.5480003,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (19)
255 CreateObject(1237,1264.7080078,-1840.1600342,12.5480003,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (20)
256 CreateObject(1237,1265.0550537,-1841.1109619,12.5480003,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (21)
257 CreateObject(1237,1265.2600098,-1842.1159668,12.5480003,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (22)
258 CreateObject(1237,1279.8590088,-1837.2740479,12.3839998,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (23)
259 CreateObject(1237,1278.7850342,-1837.4770508,12.3839998,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (24)
260 CreateObject(1237,1277.7060547,-1837.9160156,12.3839998,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (25)
261 CreateObject(1237,1276.6750488,-1838.5310059,12.3839998,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (26)
262 CreateObject(1237,1275.8719482,-1839.3680420,12.3839998,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (27)
263 CreateObject(1237,1275.4069824,-1840.4949951,12.3839998,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (28)
264 CreateObject(1237,1275.1540527,-1841.5930176,12.3839998,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (29)
265 CreateObject(1237,1281.0169678,-1837.2729492,12.3839998,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (30)
266 CreateObject(1237,1282.1529541,-1837.2440186,12.3839998,0.0000000,0.0000000,0.0000000); //object(strtbarrier01) (31)
267 CreateObject(3524,1219.5109863,-1823.0699463,14.9670000,0.0000000,0.0000000,0.0000000); //object(skullpillar01_lvs) (1)
268 CreateObject(3524,1233.3129883,-1810.7569580,15.6090002,0.0000000,0.0000000,90.0000000); //object(skullpillar01_lvs) (2)
269 CreateObject(870,1191.0190430,-1812.7280273,12.8230000,0.0000000,0.0000000,26.0000000); //object(veg_pflowers2wee) (1)
270 CreateObject(870,1191.0699463,-1814.5729980,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (2)
271 CreateObject(870,1191.0649414,-1816.5290527,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (3)
272 CreateObject(870,1191.0660400,-1818.3699951,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (4)
273 CreateObject(870,1191.6719971,-1818.2889404,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (5)
274 CreateObject(870,1192.6429443,-1818.3590088,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (6)
275 CreateObject(870,1193.5889893,-1818.4279785,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (7)
276 CreateObject(870,1194.3609619,-1818.4849854,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (8)
277 CreateObject(870,1194.4720459,-1816.9649658,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (9)
278 CreateObject(870,1192.9279785,-1816.8509521,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (10)
279 CreateObject(870,1193.0069580,-1815.7800293,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (11)
280 CreateObject(870,1193.9530029,-1815.8489990,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (12)
281 CreateObject(870,1194.0949707,-1813.9060059,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (13)
282 CreateObject(870,1192.9489746,-1813.8210449,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (14)
283 CreateObject(870,1193.0450439,-1812.5000000,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (15)
284 CreateObject(870,1194.4520264,-1812.4279785,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (16)
285 CreateObject(870,1191.5870361,-1812.2170410,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (17)
286 CreateObject(870,1191.3349609,-1815.6829834,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (18)
287 CreateObject(870,1192.2380371,-1815.9990234,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (19)
288 CreateObject(870,1191.2230225,-1817.8769531,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (20)
289 CreateObject(870,1192.0939941,-1817.9410400,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (21)
290 CreateObject(870,1193.7500000,-1817.8869629,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (22)
291 CreateObject(870,1194.2979736,-1817.9270020,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (23)
292 CreateObject(870,1194.4329834,-1816.0839844,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (24)
293 CreateObject(870,1191.3110352,-1814.9060059,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (25)
294 CreateObject(870,1191.2230225,-1816.1009521,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (26)
295 CreateObject(870,1193.1579590,-1813.2590332,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (27)
296 CreateObject(870,1194.4820557,-1813.9820557,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (28)
297 CreateObject(870,1194.4589844,-1815.6579590,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (29)
298 CreateObject(870,1192.3060303,-1818.3780518,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (30)
299 CreateObject(870,1194.6250000,-1818.5460205,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (31)
300 CreateObject(870,1194.6490479,-1818.2220459,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (32)
301 CreateObject(870,1194.6484375,-1818.2216797,12.8230000,0.0000000,0.0000000,25.9991455); //object(veg_pflowers2wee) (33)
302 CreateObject(983,1193.1829834,-1820.0119629,13.2650003,0.0000000,0.0000000,270.0000000); //object(fenceshit3) (17)
303 CreateObject(19362,1282.6429443,-1787.2819824,14.3179998,0.0000000,0.0000000,0.0000000); //object(wall010) (1)
304 CreateObject(19362,1282.6309814,-1790.4139404,14.3179998,0.0000000,0.0000000,0.0000000); //object(wall010) (2)
305 CreateObject(19362,1282.6259766,-1793.6009521,14.3179998,0.0000000,0.0000000,0.0000000); //object(wall010) (3)
306 CreateObject(19362,1282.6209717,-1796.7869873,14.3179998,0.0000000,0.0000000,0.0000000); //object(wall010) (4)
307 CreateObject(19362,1282.6400146,-1799.9749756,14.3179998,0.0000000,0.0000000,0.0000000); //object(wall010) (5)
308 CreateObject(19362,1282.6510010,-1803.0460205,14.3179998,0.0000000,0.0000000,0.0000000); //object(wall010) (6)
309 CreateObject(19362,1282.6510010,-1806.2170410,14.3179998,0.0000000,0.0000000,0.0000000); //object(wall010) (7)
310 CreateObject(19362,1259.9599609,-1794.8189697,14.3559999,0.0000000,0.0000000,0.0000000); //object(wall010) (9)
311 CreateObject(19362,1259.9630127,-1797.5610352,14.3559999,0.0000000,0.0000000,0.0000000); //object(wall010) (10)
312 CreateObject(19362,1259.9820557,-1800.7049561,14.0810003,0.0000000,0.0000000,0.0000000); //object(wall010) (11)
313 CreateObject(19362,1259.9980469,-1803.8719482,14.3559999,0.0000000,0.0000000,0.0000000); //object(wall010) (12)
314 CreateObject(19362,1281.1560059,-1807.8179932,14.3070002,0.0000000,0.0000000,270.0000000); //object(wall010) (13)
315 CreateObject(19362,1278.0789795,-1807.8100586,14.3070002,0.0000000,0.0000000,270.0000000); //object(wall010) (14)
316 CreateObject(19362,1275.0989990,-1807.8020020,14.3070002,0.0000000,0.0000000,270.0000000); //object(wall010) (15)
317 CreateObject(19362,1271.9200439,-1807.8110352,14.3070002,0.0000000,0.0000000,270.0000000); //object(wall010) (16)
318 CreateObject(19362,1268.7669678,-1807.7950439,14.3070002,0.0000000,0.0000000,270.0000000); //object(wall010) (17)
319 CreateObject(19362,1265.6590576,-1807.7760010,14.3070002,0.0000000,0.0000000,270.0000000); //object(wall010) (18)
320 CreateObject(19362,1260.0040283,-1806.3370361,14.3559999,0.0000000,0.0000000,0.0000000); //object(wall010) (20)
321 CreateObject(19362,1261.4959717,-1793.1519775,14.3070002,0.0000000,0.0000000,270.0000000); //object(wall010) (21)
322 CreateObject(19362,1264.5980225,-1793.1669922,14.3070002,0.0000000,0.0000000,270.0000000); //object(wall010) (22)
323 CreateObject(19362,1267.7010498,-1793.1309814,14.3070002,0.0000000,0.0000000,270.0000000); //object(wall010) (23)
324 CreateObject(19362,1269.3079834,-1791.5930176,14.3409996,0.0000000,0.0000000,0.0000000); //object(wall010) (24)
325 CreateObject(19362,1269.2800293,-1788.3950195,14.3409996,0.0000000,0.0000000,0.0000000); //object(wall010) (25)
326 CreateObject(19362,1269.2769775,-1787.0460205,14.3409996,0.0000000,0.0000000,0.0000000); //object(wall010) (26)
327 CreateObject(19362,1281.1319580,-1785.6879883,14.3070002,0.0000000,0.0000000,270.0000000); //object(wall010) (27)
328 CreateObject(19362,1278.0240479,-1785.6939697,14.3070002,0.0000000,0.0000000,270.0000000); //object(wall010) (28)
329 CreateObject(19362,1274.8149414,-1785.7170410,14.3070002,0.0000000,0.0000000,270.0000000); //object(wall010) (29)
330 CreateObject(19362,1271.6770020,-1785.7239990,14.3070002,0.0000000,0.0000000,270.0000000); //object(wall010) (30)
331 CreateObject(19362,1270.7979736,-1785.7259521,14.3070002,0.0000000,0.0000000,270.0000000); //object(wall010) (31)
332 CreateObject(2898,1280.4720459,-1788.6099854,12.6120005,0.0000000,0.0000000,0.0000000); //object(funturf_law) (1)
333 CreateObject(2898,1276.4160156,-1788.6049805,12.6120005,0.0000000,0.0000000,0.0000000); //object(funturf_law) (2)
334 CreateObject(2898,1272.3349609,-1788.6080322,12.6120005,0.0000000,0.0000000,0.0000000); //object(funturf_law) (3)
335 CreateObject(2898,1271.3840332,-1788.6180420,12.6120005,0.0000000,0.0000000,0.0000000); //object(funturf_law) (4)
336 CreateObject(2898,1280.4840088,-1790.5620117,12.6120005,0.0000000,0.0000000,0.0000000); //object(funturf_law) (5)
337 CreateObject(2898,1276.4060059,-1790.5810547,12.6120005,0.0000000,0.0000000,0.0000000); //object(funturf_law) (6)
338 CreateObject(2898,1272.3249512,-1790.5839844,12.6120005,0.0000000,0.0000000,0.0000000); //object(funturf_law) (7)
339 CreateObject(2898,1271.3459473,-1790.5939941,12.6120005,0.0000000,0.0000000,0.0000000); //object(funturf_law) (8)
340 CreateObject(16151,1273.8520508,-1786.9549561,12.6420002,0.0000000,0.0000000,90.0000000); //object(ufo_bar) (1)
341 CreateObject(1432,1280.2170410,-1788.0570068,12.6420002,0.0000000,0.0000000,0.0000000); //object(dyn_table_2) (1)
342 CreateObject(1432,1279.5889893,-1791.5689697,12.6420002,0.0000000,0.0000000,0.0000000); //object(dyn_table_2) (2)
343 CreateObject(1432,1275.8669434,-1791.8089600,12.6420002,0.0000000,0.0000000,0.0000000); //object(dyn_table_2) (3)
344 CreateObject(1432,1271.6910400,-1791.8809814,12.6420002,0.0000000,0.0000000,0.0000000); //object(dyn_table_2) (4)
345 CreateObject(1723,1281.9949951,-1799.1469727,12.3859997,0.0000000,0.0000000,270.0000000); //object(mrk_seating1) (1)
346 CreateObject(1723,1281.9820557,-1796.1949463,12.3859997,0.0000000,0.0000000,270.0000000); //object(mrk_seating1) (2)
347 CreateObject(2311,1280.4420166,-1796.2230225,12.3879995,0.0000000,0.0000000,270.0000000); //object(cj_tv_table2) (1)
348 CreateObject(2311,1280.4470215,-1798.4980469,12.3879995,0.0000000,0.0000000,270.0000000); //object(cj_tv_table2) (2)
349 CreateObject(2311,1280.4270020,-1800.7969971,12.3879995,0.0000000,0.0000000,270.0000000); //object(cj_tv_table2) (3)
350 CreateObject(1724,1282.0129395,-1801.6650391,12.3859997,0.0000000,0.0000000,270.0000000); //object(mrk_seating1b) (1)
351 CreateObject(1723,1278.6689453,-1798.8800049,12.3940001,0.0000000,0.0000000,90.0000000); //object(mrk_seating1) (3)
352 CreateObject(1723,1278.6679688,-1801.8089600,12.3940001,0.0000000,0.0000000,90.0000000); //object(mrk_seating1) (4)
353 CreateObject(2315,1281.9150391,-1804.9060059,12.3859997,0.0000000,0.0000000,270.0000000); //object(cj_tv_table4) (1)
354 CreateObject(1954,1281.8580322,-1804.7979736,12.9890003,0.0000000,0.0000000,0.0000000); //object(turn_table_r) (1)
355 CreateObject(1954,1281.8599854,-1806.5080566,12.9890003,0.0000000,0.0000000,0.0000000); //object(turn_table_r) (2)
356 CreateObject(1481,1275.2399902,-1786.1159668,13.3450003,0.0000000,0.0000000,0.0000000); //object(dyn_bar_b_q) (1)
357 CreateObject(2229,1282.4870605,-1807.7779541,12.3820000,0.0000000,0.0000000,270.0000000); //object(swank_speaker) (1)
358 CreateObject(2229,1282.4859619,-1807.7769775,13.7320004,0.0000000,0.0000000,270.0000000); //object(swank_speaker) (2)
359 CreateObject(2229,1282.5240479,-1803.7989502,12.3830004,0.0000000,0.0000000,270.0000000); //object(swank_speaker) (3)
360 CreateObject(2229,1282.5229492,-1803.7989502,13.8079996,0.0000000,0.0000000,270.0000000); //object(swank_speaker) (4)
361 CreateObject(1783,1281.8170166,-1805.5909424,12.9280005,0.0000000,0.0000000,270.0000000); //object(swank_video_2) (1)
362 CreateObject(1723,1261.5279541,-1793.7519531,12.4209995,0.0000000,0.0000000,0.0000000); //object(mrk_seating1) (5)
363 CreateObject(1723,1260.6529541,-1796.7409668,12.4209995,0.0000000,0.0000000,90.0000000); //object(mrk_seating1) (6)
364 CreateObject(1723,1264.4510498,-1793.7490234,12.4209995,0.0000000,0.0000000,0.0000000); //object(mrk_seating1) (7)
365 CreateObject(1723,1260.6560059,-1799.6700439,12.4209995,0.0000000,0.0000000,90.0000000); //object(mrk_seating1) (8)
366 CreateObject(2315,1264.8039551,-1795.0789795,12.4150000,0.0000000,0.0000000,0.0000000); //object(cj_tv_table4) (2)
367 CreateObject(2315,1262.4360352,-1795.0749512,12.4150000,0.0000000,0.0000000,0.0000000); //object(cj_tv_table4) (3)
368 CreateObject(2315,1262.4260254,-1796.5589600,12.4150000,0.0000000,0.0000000,90.0000000); //object(cj_tv_table4) (4)
369 CreateObject(2315,1262.4510498,-1798.9830322,12.4150000,0.0000000,0.0000000,90.0000000); //object(cj_tv_table4) (5)
370 CreateObject(1491,1260.0909424,-1807.8100586,12.4099998,0.0000000,0.0000000,0.0000000); //object(gen_doorint01) (1)
371 CreateObject(19362,1259.9599609,-1794.8179932,14.1809998,0.0000000,0.0000000,0.0000000); //object(wall010) (32)
372 CreateObject(19362,1259.9630127,-1797.5610352,14.1309996,0.0000000,0.0000000,0.0000000); //object(wall010) (33)
373 CreateObject(19362,1259.9980469,-1803.8709717,14.0810003,0.0000000,0.0000000,0.0000000); //object(wall010) (34)
374 CreateObject(19362,1260.0040283,-1806.3370361,14.0810003,0.0000000,0.0000000,0.0000000); //object(wall010) (35)
375 CreateObject(19362,1259.9820557,-1800.7039795,14.3559999,0.0000000,0.0000000,0.0000000); //object(wall010) (36)
376 CreateObject(19362,1265.6579590,-1807.7750244,14.0070000,0.0000000,0.0000000,270.0000000); //object(wall010) (38)
377 CreateObject(19362,1268.7669678,-1807.7950439,13.5570002,0.0000000,0.0000000,270.0000000); //object(wall010) (39)
378 CreateObject(19362,1271.9200439,-1807.8110352,13.5570002,0.0000000,0.0000000,270.0000000); //object(wall010) (40)
379 CreateObject(19362,1275.0989990,-1807.8020020,13.8070002,0.0000000,0.0000000,270.0000000); //object(wall010) (41)
380 CreateObject(19362,1278.0780029,-1807.8100586,13.8070002,0.0000000,0.0000000,270.0000000); //object(wall010) (42)
381 CreateObject(19362,1281.1550293,-1807.8170166,13.5570002,0.0000000,0.0000000,270.0000000); //object(wall010) (43)
382 CreateObject(19362,1264.7049561,-1807.7919922,14.3070002,0.0000000,0.0000000,270.0000000); //object(wall010) (44)
383 CreateObject(1491,1263.1209717,-1807.7810059,12.4099998,0.0000000,0.0000000,180.0000000); //object(gen_doorint01) (2)
384 CreateObject(19362,1264.7039795,-1807.7919922,13.8070002,0.0000000,0.0000000,270.0000000); //object(wall010) (46)
385 CreateObject(2165,1277.2390137,-1807.2039795,12.3839998,0.0000000,0.0000000,180.0000000); //object(med_office_desk_1) (1)
386 CreateObject(2165,1273.6009521,-1807.2080078,12.3839998,0.0000000,0.0000000,179.9945068); //object(med_office_desk_1) (3)
387 CreateObject(2165,1269.9899902,-1807.2080078,12.3839998,0.0000000,0.0000000,179.9945068); //object(med_office_desk_1) (4)
388 CreateObject(1714,1276.6030273,-1806.4110107,12.3830004,0.0000000,0.0000000,356.0000000); //object(kb_swivelchair1) (1)
389 CreateObject(1714,1272.9990234,-1806.4499512,12.3900003,0.0000000,0.0000000,358.0000000); //object(kb_swivelchair1) (2)
390 CreateObject(1714,1269.3580322,-1806.5389404,12.3959999,0.0000000,0.0000000,358.0000000); //object(kb_swivelchair1) (3)
391 CreateObject(2773,1263.0760498,-1809.0909424,12.9209995,0.0000000,0.0000000,0.0000000); //object(cj_airprt_bar) (1)
392 CreateObject(2773,1259.9670410,-1809.0989990,12.9209995,0.0000000,0.0000000,0.0000000); //object(cj_airprt_bar) (2)
393 CreateObject(1833,1260.3499756,-1802.3210449,12.4110003,0.0000000,0.0000000,90.0000000); //object(kb_bandit4) (1)
394 CreateObject(1833,1260.3559570,-1802.9460449,12.4110003,0.0000000,0.0000000,90.0000000); //object(kb_bandit4) (2)
395 CreateObject(1833,1260.3620605,-1803.5710449,12.4110003,0.0000000,0.0000000,90.0000000); //object(kb_bandit4) (3)
396 CreateObject(1833,1260.3669434,-1804.1710205,12.4110003,0.0000000,0.0000000,90.0000000); //object(kb_bandit4) (4)
397 CreateObject(1833,1260.3719482,-1804.7719727,12.4110003,0.0000000,0.0000000,90.0000000); //object(kb_bandit4) (5)
398 CreateObject(1364,1265.7760010,-1806.9060059,13.1850004,0.0000000,0.0000000,180.0000000); //object(cj_bush_prop) (1)
399 CreateObject(2010,1282.0090332,-1794.5980225,12.4390001,0.0000000,0.0000000,0.0000000); //object(nu_plant3_ofc) (1)
400 CreateObject(643,1273.6770020,-1802.0760498,12.8629999,0.0000000,0.0000000,0.0000000); //object(kb_chr_tbl_test) (1)
401 CreateObject(643,1268.1939697,-1802.0379639,12.8629999,0.0000000,0.0000000,0.0000000); //object(kb_chr_tbl_test) (2)
402 CreateObject(643,1270.8000488,-1799.4069824,12.8629999,0.0000000,0.0000000,0.0000000); //object(kb_chr_tbl_test) (3)
403 CreateObject(643,1274.6540527,-1797.5970459,12.8629999,0.0000000,0.0000000,0.0000000); //object(kb_chr_tbl_test) (4)
404 CreateObject(643,1269.7840576,-1794.9599609,12.8629999,0.0000000,0.0000000,0.0000000); //object(kb_chr_tbl_test) (5)
405 CreateObject(3578,1213.5899658,-1842.4699707,11.6859999,0.0000000,0.0000000,0.0000000); //object(dockbarr1_la) (1)
406 CreateObject(3578,1213.5899658,-1843.3459473,11.6859999,0.0000000,0.0000000,0.0000000); //object(dockbarr1_la) (2)
407 CreateObject(3578,1213.2399902,-1844.3399658,11.6859999,0.0000000,0.0000000,0.0000000); //object(dockbarr1_la) (3)
408 CreateObject(3578,1215.0660400,-1845.5520020,11.6859999,0.0000000,0.0000000,0.0000000); //object(dockbarr1_la) (4)
409 CreateObject(3578,1216.8580322,-1846.6800537,11.6859999,0.0000000,0.0000000,0.0000000); //object(dockbarr1_la) (5)
410 CreateObject(3578,1270.0959473,-1842.5939941,11.6940002,0.0000000,0.0000000,0.0000000); //object(dockbarr1_la) (6)
411 CreateObject(3578,1270.0240479,-1843.5649414,11.6940002,0.0000000,0.0000000,0.0000000); //object(dockbarr1_la) (7)
412 CreateObject(3578,1270.5789795,-1844.4680176,11.6940002,0.0000000,0.0000000,0.0000000); //object(dockbarr1_la) (8)
413 CreateObject(3578,1268.5970459,-1845.5460205,11.6940002,0.0000000,0.0000000,0.0000000); //object(dockbarr1_la) (9)
414 CreateObject(3578,1272.4320068,-1846.6180420,11.6940002,0.0000000,0.0000000,0.0000000); //object(dockbarr1_la) (10)
415 CreateObject(3578,1267.3370361,-1846.6070557,11.6940002,0.0000000,0.0000000,0.0000000); //object(dockbarr1_la) (11)
416 CreateObject(3578,1271.2760010,-1845.5510254,11.6940002,0.0000000,0.0000000,0.0000000); //object(dockbarr1_la) (12)
417 CreateObject(3578,1269.3499756,-1844.4759521,11.6940002,0.0000000,0.0000000,0.0000000); //object(dockbarr1_la) (14)
418 CreateObject(3578,1210.9110107,-1846.6779785,11.6859999,0.0000000,0.0000000,0.0000000); //object(dockbarr1_la) (15)
419 CreateObject(3578,1212.1109619,-1845.5689697,11.6859999,0.0000000,0.0000000,0.0000000); //object(dockbarr1_la) (16)
420 CreateObject(3578,1214.3409424,-1844.3609619,11.6859999,0.0000000,0.0000000,0.0000000); //object(dockbarr1_la) (17)
421 CreateObject(3095,1278.2060547,-1790.1550293,15.8920002,0.0000000,0.0000000,0.0000000); //object(a51_jetdoor) (1)
422 CreateObject(3095,1273.6250000,-1790.0920410,15.8420000,0.0000000,0.0000000,0.0000000); //object(a51_jetdoor) (2)
423 CreateObject(3095,1278.2060547,-1799.1459961,15.8920002,0.0000000,0.0000000,0.0000000); //object(a51_jetdoor) (3)
424 CreateObject(3095,1278.2359619,-1803.3740234,15.8669996,0.0000000,0.0000000,0.0000000); //object(a51_jetdoor) (4)
425 CreateObject(3095,1273.6490479,-1799.0699463,15.8420000,0.0000000,0.0000000,0.0000000); //object(a51_jetdoor) (5)
426 CreateObject(3095,1273.5839844,-1803.3580322,15.8669996,0.0000000,0.0000000,0.0000000); //object(a51_jetdoor) (6)
427 CreateObject(3095,1264.6590576,-1797.6369629,15.8170004,0.0000000,0.0000000,0.0000000); //object(a51_jetdoor) (8)
428 CreateObject(3095,1264.6280518,-1803.3389893,15.8170004,0.0000000,0.0000000,0.0000000); //object(a51_jetdoor) (7)
429 CreateObject(19127,1259.9289551,-1810.2750244,12.9759998,0.0000000,0.0000000,0.0000000); //object(bollardlight7) (1)
430 CreateObject(19127,1263.0889893,-1810.2440186,12.9670000,0.0000000,0.0000000,0.0000000); //object(bollardlight7) (2)
431 CreateObject(19127,1204.6030273,-1837.0810547,12.9510002,0.0000000,0.0000000,0.0000000); //object(bollardlight7) (3)
432 CreateObject(19127,1202.8439941,-1825.5899658,12.9759998,0.0000000,0.0000000,0.0000000); //object(bollardlight7) (4)
433 CreateObject(19127,1207.3640137,-1825.6660156,12.9759998,0.0000000,0.0000000,0.0000000); //object(bollardlight7) (5)
434 CreateObject(19127,1228.2320557,-1825.8349609,12.9759998,0.0000000,0.0000000,0.0000000); //object(bollardlight7) (6)
435 CreateObject(19127,1229.7629395,-1825.9079590,12.9750004,0.0000000,0.0000000,0.0000000); //object(bollardlight7) (7)
436 CreateObject(19127,1236.2729492,-1825.7020264,12.9770002,0.0000000,0.0000000,0.0000000); //object(bollardlight7) (8)
437 CreateObject(19127,1236.3690186,-1819.1779785,12.9890003,0.0000000,0.0000000,0.0000000); //object(bollardlight7) (9)
438 CreateObject(19127,1236.4040527,-1815.9069824,12.9940004,0.0000000,0.0000000,0.0000000); //object(bollardlight7) (10)
439 CreateObject(19127,1223.1309814,-1837.2189941,12.9460001,0.0000000,0.0000000,0.0000000); //object(bollardlight7) (11)
440 CreateObject(19127,1259.8389893,-1837.2199707,12.9490004,0.0000000,0.0000000,0.0000000); //object(bollardlight7) (12)
441 CreateObject(19127,1282.5820312,-1836.6569824,12.9469995,0.0000000,0.0000000,0.0000000); //object(bollardlight7) (13)
442 CreateObject(19127,1194.9720459,-1825.8669434,13.1470003,0.0000000,0.0000000,0.0000000); //object(bollardlight7) (14)
443 CreateObject(19127,1195.2340088,-1837.1219482,12.9700003,0.0000000,0.0000000,0.0000000); //object(bollardlight7) (15)
444 CreateObject(19127,1190.2690430,-1825.5439453,13.1639996,0.0000000,0.0000000,0.0000000); //object(bollardlight7) (16)
445 CreateObject(19127,1190.1009521,-1820.1550293,13.1420002,0.0000000,0.0000000,0.0000000); //object(bollardlight7) (17)
446 CreateObject(19127,1219.2149658,-1817.4820557,13.1650000,0.0000000,0.0000000,0.0000000); //object(bollardlight7) (18)
447 CreateObject(19127,1212.7189941,-1817.5119629,13.1560001,0.0000000,0.0000000,0.0000000); //object(bollardlight7) (19)
448 CreateObject(3578,1280.8280029,-1812.8830566,11.6630001,0.0000000,0.0000000,0.0000000); //object(dockbarr1_la) (18)
449 CreateObject(3578,1280.9510498,-1817.7370605,11.6630001,0.0000000,0.0000000,0.0000000); //object(dockbarr1_la) (19)
450 CreateObject(3578,1281.0489502,-1822.4909668,11.6630001,0.0000000,0.0000000,0.0000000); //object(dockbarr1_la) (20)
451 CreateObject(3578,1281.0729980,-1827.4200439,11.6630001,0.0000000,0.0000000,0.0000000); //object(dockbarr1_la) (21)
452 CreateObject(3578,1280.9709473,-1832.1999512,11.6630001,0.0000000,0.0000000,0.0000000); //object(dockbarr1_la) (22)
453 //(2)
454 CreateVehicle(473, -2945.9761, 66.6670, 0.0000, 0.0000, -1, -1, 100);
455 CreateVehicle(484, -2946.8250, 57.6020, 0.0000, 90.0000, -1, -1, 100);
456 CreateVehicle(489, -2889.6299, 77.4500, 4.7030, 90.0000, -1, -1, 100);
457 //Wall
458 SetObjectMaterial(CreateObject(19396,-2884.3259300,68.5810000,6.1110000,0.0000000,0.0000000,0.0000000), 0, 8567, "vgsebuild02", "rebrckwall_128", 0xFFFFFFFF);
459 SetObjectMaterial(CreateObject(19396,-2886.7290000,65.9590000,6.1240000,0.0000000,0.0000000,0.0000000), 0, 8567, "vgsebuild02", "rebrckwall_128", 0xFFFFFFFF);
460 SetObjectMaterial(CreateObject(19368,-2888.8569300,67.4910000,6.2580000,0.0000000,0.0000000,90.0000000), 0, 8567, "vgsebuild02", "rebrckwall_128", 0xFFFFFFFF);
461 SetObjectMaterial(CreateObject(19368,-2888.2409700,67.4970000,6.2580000,0.0000000,0.0000000,90.0000000), 0, 8567, "vgsebuild02", "rebrckwall_128", 0xFFFFFFFF);
462 SetObjectMaterial(CreateObject(19368,-2882.8068800,67.0630000,5.7640000,0.0000000,0.0000000,270.0000000), 0, 8567, "vgsebuild02", "rebrckwall_128", 0xFFFFFFFF);
463 SetObjectMaterial(CreateObject(19368,-2882.8068800,70.0950000,5.7640000,0.0000000,0.0000000,270.0000000), 0, 8567, "vgsebuild02", "rebrckwall_128", 0xFFFFFFFF);
464 SetObjectMaterial(CreateObject(19512,-2887.1279300,69.5260000,6.4610000,0.0000000,0.0000000,270.0000000), 1, 8567, "vgsebuild02", "rebrckwall_128", 0xFFFFFFFF);
465 //Bathroom Floor
466 SetObjectMaterial(CreateObject(19366,-2888.5690900,65.9490000,4.4250000,0.0000000,90.0000000,0.0000000), 0, 10487, "parktunnel_sfs", "Bow_sub_walltiles", 0xFFFFFFFF);
467 //Bathroom Table
468 SetObjectMaterial(CreateObject(2331,-2887.7380400,66.7140000,4.7520000,0.0000000,0.0000000,0.0000000), 0, 18268, "mtbtrackcs_t", "sm_redwood_bark", 0xFFFFFFFF);
469 //Marble Bar
470 SetObjectMaterial(CreateObject(19368,-2882.8068800,71.8890000,3.7260000,0.0000000,0.0000000,270.0000000), 0, 3922, "bistro", "Marble2", 0xFFFFFFFF);
471 // Wood cabinet
472 SetObjectMaterial(CreateObject(2323,-2889.2548800,72.9240000,4.5080000,0.0000000,0.0000000,0.0000000), 0, 18268, "mtbtrackcs_t", "sm_redwood_bark", 0xFFFFFFFF);
473 SetObjectMaterial(CreateObject(1742,-2890.6850600,74.5650000,4.4980000,0.0000000,0.0000000,0.0000000), 2, 18268, "mtbtrackcs_t", "sm_redwood_bark", 0xFFFFFFFF);
474 SetObjectMaterial(CreateObject(2230,-2892.4079600,74.4430000,4.5080000,0.0000000,0.0000000,0.0000000), 2, 18268, "mtbtrackcs_t", "sm_redwood_bark", 0xFFFFFFFF);
475 SetObjectMaterial(CreateObject(2230,-2887.2170400,74.4420000,4.5080000,0.0000000,0.0000000,0.0000000), 2, 18268, "mtbtrackcs_t", "sm_redwood_bark", 0xFFFFFFFF);
476 SetObjectMaterial(CreateObject(2230,-2886.4670400,71.3640000,4.4950000,0.0000000,0.0000000,0.0000000), 2, 18268, "mtbtrackcs_t", "sm_redwood_bark", 0xFFFFFFFF);
477 SetObjectMaterial(CreateObject(2230,-2889.7829600,71.3630000,4.4950000,0.0000000,0.0000000,0.0000000), 2, 18268, "mtbtrackcs_t", "sm_redwood_bark", 0xFFFFFFFF);
478 // Carpet
479 SetObjectMaterial(CreateObject(16637,-2888.4289600,69.8750000,4.4580000,0.0000000,90.0000000,270.0000000), 1, 9482, "sfw_victemp2", "ws_red_wood2", 0xFFFFFFFF);
480 //Boots
481 SetObjectMaterial(CreateObject(11735,-2892.5400400,70.2590000,4.5130000,0.0000000,0.0000000,0.0000000), 0, 10226, "sfeship1", "CJ_RED_LEATHER", 0xFFFFFFFF);
482 SetObjectMaterial(CreateObject(11735,-2892.7519500,70.2660000,4.5180000,0.0000000,0.0000000,0.0000000), 0, 10226, "sfeship1", "CJ_RED_LEATHER", 0xFFFFFFFF);
483 //Rest
484 CreateDynamicObject(19836,-2882.0639600,68.3710000,5.1810000,0.0000000,0.0000000,0.0000000);
485 CreateDynamicObject(19511, -2887.12793, 69.52600, 6.46100, 0.00000, 0.00000, 270.00000);
486 CreateDynamicObject(19865, -2886.67212, 61.98400, 3.74400, 0.00000, 0.00000, 0.00000);
487 CreateDynamicObject(19865, -2886.67212, 56.98400, 3.74400, 0.00000, 0.00000, 0.00000);
488 CreateDynamicObject(19865, -2886.67212, 51.97100, 3.74400, 0.00000, 0.00000, 0.00000);
489 CreateDynamicObject(19865, -2886.67212, 46.98300, 3.74400, 0.00000, 0.00000, 0.00000);
490 CreateDynamicObject(19865, -2886.67212, 42.03300, 3.74400, 0.00000, 0.00000, 0.00000);
491 CreateDynamicObject(19867, -2880.64502, 64.28300, 3.62000, 0.00000, 0.00000, 90.00000);
492 CreateDynamicObject(1610, -2896.32788, 71.62000, 3.67000, 0.00000, 0.00000, 0.00000);
493 CreateDynamicObject(1611, -2897.10205, 72.01700, 3.61300, 0.00000, 0.00000, 0.00000);
494 CreateDynamicObject(1642, -2895.33398, 72.36100, 3.78300, 0.25000, 359.50000, 0.00200);
495 CreateDynamicObject(1598, -2896.55908, 73.08500, 3.95400, 0.00000, 0.00000, 0.00000);
496 CreateDynamicObject(1461, -2891.23608, 52.16700, 4.65300, 0.00000, 0.00000, 0.00000);
497 CreateDynamicObject(2405, -2891.88599, 64.30700, 5.05000, 0.00000, 0.00000, 0.00000);
498 CreateDynamicObject(1637, -2888.43188, 39.43300, 5.20300, 0.00000, 0.00000, 180.00000);
499 CreateDynamicObject(18442, -2902.22095, 33.64900, 4.16200, 0.00000, 0.00000, 0.00000);
500 CreateDynamicObject(18442, -2900.05005, 83.09400, 3.72000, 0.00000, 0.00000, 0.00000);
501 CreateDynamicObject(19865, -2886.67212, 81.99500, 3.74400, 0.00000, 0.00000, 0.00000);
502 CreateDynamicObject(3886, -2924.63306, 62.16100, 0.11700, 0.00000, 0.00000, 90.00000);
503 CreateDynamicObject(3886, -2935.08105, 62.16000, 0.11700, 0.00000, 0.00000, 90.00000);
504 CreateDynamicObject(3886, -2945.57104, 62.15900, 0.11700, 0.00000, 0.00000, 90.00000);
505 CreateDynamicObject(12990, -2918.47290, 39.74000, 0.06300, 358.00500, 4.00200, 250.14000);
506 CreateDynamicObject(1496, -2881.18994, 66.83400, 4.51500, 0.00000, 0.00000, 270.00000);
507 CreateDynamicObject(1494, -2892.46411, 70.63300, 4.50800, 0.00000, 0.00000, 0.00000);
508 CreateDynamicObject(1432, -2891.60498, 66.08900, 4.50800, 0.00000, 0.00000, 328.00000);
509 CreateDynamicObject(1281, -2896.65894, 65.46600, 4.46900, 2.25000, 0.25000, 273.73999);
510 CreateDynamicObject(1610, -2897.76709, 72.77800, 3.56300, 0.00000, 0.00000, 0.00000);
511 CreateDynamicObject(1643, -2897.78491, 62.39800, 3.62800, 3.75000, 359.24799, 278.04901);
512 CreateDynamicObject(2138, -2884.35205, 74.03200, 4.50800, 0.00000, 0.00000, 0.00000);
513 CreateDynamicObject(2137, -2883.36890, 74.03200, 4.50800, 0.00000, 0.00000, 0.00000);
514 CreateDynamicObject(2140, -2882.37793, 74.03200, 4.50800, 0.00000, 0.00000, 0.00000);
515 CreateDynamicObject(1549, -2881.53296, 74.04400, 4.50800, 0.00000, 0.00000, 0.00000);
516 CreateDynamicObject(2139, -2881.75610, 72.46100, 4.38000, 0.00000, 0.00000, 179.99500);
517 CreateDynamicObject(2135, -2885.33911, 74.03200, 4.50800, 0.00000, 0.00000, 0.00000);
518 CreateDynamicObject(2136, -2882.73999, 72.46100, 4.38000, 0.00000, 0.00000, 180.00000);
519 CreateDynamicObject(2303, -2884.38208, 73.95000, 3.46900, 0.00000, 0.00000, 0.00000);
520 CreateDynamicObject(2303, -2884.38208, 73.94900, 3.50700, 0.00000, 0.00000, 0.00000);
521 CreateDynamicObject(2303, -2886.34204, 74.03200, 4.50800, 0.00000, 0.00000, 0.00000);
522 CreateDynamicObject(2818, -2883.06104, 72.77000, 4.50800, 0.00000, 0.00000, 0.00000);
523 CreateDynamicObject(2818, -2886.46899, 72.77000, 4.50800, 0.00000, 0.00000, 0.00000);
524 CreateDynamicObject(2822, -2886.27490, 74.25500, 5.55300, 0.00000, 0.00000, 294.00000);
525 CreateDynamicObject(2421, -2883.17090, 74.51000, 5.50800, 0.00000, 0.00000, 0.00000);
526 CreateDynamicObject(2522, -2888.66211, 66.68000, 4.50800, 0.00000, 0.00000, 180.00000);
527 CreateDynamicObject(2523, -2888.35693, 64.94800, 4.50800, 0.00000, 0.00000, 180.00000);
528 CreateDynamicObject(2525, -2887.55005, 65.01500, 4.50800, 0.00000, 0.00000, 180.00000);
529 CreateDynamicObject(2517, -2888.98804, 64.93500, 4.50800, 0.00000, 0.00000, 90.00000);
530 CreateDynamicObject(2854, -2887.75195, 66.70000, 5.17900, 0.00000, 0.00000, 0.00000);
531 CreateDynamicObject(2855, -2887.20996, 64.74800, 4.50800, 0.00000, 0.00000, 0.00000);
532 CreateDynamicObject(2868, -2887.80396, 66.15200, 4.50800, 0.00000, 0.00000, 0.00000);
533 CreateDynamicObject(2870, -2888.23901, 64.70300, 4.50800, 0.00000, 0.00000, 0.00000);
534 CreateDynamicObject(11707, -2888.95703, 66.11400, 4.98700, 0.00000, 0.00000, 0.00000);
535 CreateDynamicObject(3812, -2890.18311, 66.32800, 7.12900, 0.00000, 0.00000, 0.00000);
536 CreateDynamicObject(1649, -2890.49097, 67.74900, 5.43100, 0.00000, 0.00000, 90.00000);
537 CreateDynamicObject(1649, -2893.09595, 72.33200, 5.43100, 0.00000, 0.00000, 90.00000);
538 CreateDynamicObject(1649, -2893.09595, 72.35600, 5.43100, 0.00000, 0.00000, 270.00000);
539 CreateDynamicObject(1649, -2890.49023, 67.74805, 5.43100, 0.00000, 0.00000, 270.00000);
540 CreateDynamicObject(1649, -2884.73511, 64.45300, 6.18100, 0.00000, 0.00000, 0.00000);
541 CreateDynamicObject(1649, -2884.73438, 64.45215, 6.18100, 0.00000, 0.00000, 179.99500);
542 CreateDynamicObject(1649, -2881.17700, 72.19600, 5.43100, 0.00000, 0.00000, 90.00000);
543 CreateDynamicObject(1649, -2881.17700, 69.06100, 5.43100, 0.00000, 0.00000, 90.00000);
544 CreateDynamicObject(1649, -2881.17676, 69.06055, 5.43100, 0.00000, 0.00000, 270.00000);
545 CreateDynamicObject(1649, -2881.17676, 72.19531, 5.43100, 0.00000, 0.00000, 270.00000);
546 CreateDynamicObject(11737, -2891.76196, 70.14400, 4.50800, 0.00000, 0.00000, 0.00000);
547 CreateDynamicObject(1766, -2889.46411, 70.52900, 4.50800, 0.00000, 0.00000, 0.00000);
548 CreateDynamicObject(2297, -2887.70898, 67.82000, 4.46600, 0.00000, 0.00000, 138.00000);
549 CreateDynamicObject(1711, -2889.76294, 68.55900, 4.51200, 0.00000, 0.00000, 110.00000);
550 CreateDynamicObject(1670, -2891.61597, 66.09300, 5.12300, 0.00000, 0.00000, 0.00000);
551 CreateDynamicObject(2081, -2888.83105, 68.84500, 4.51200, 0.00000, 0.00000, 0.00000);
552 CreateDynamicObject(2853, -2888.32104, 69.34100, 5.01700, 0.00000, 0.00000, 0.00000);
553 CreateDynamicObject(2255, -2888.78296, 74.00700, 6.04200, 0.00000, 0.00000, 0.00000);
554 CreateDynamicObject(1646, -2899.50293, 70.55700, 3.80300, 0.00000, 0.00000, 290.00000);
555 CreateDynamicObject(1647, -2899.50293, 67.55700, 3.73436, 0.00000, 0.00000, 249.99500);
556 CreateDynamicObject(16780, -2888.24805, 70.62300, 7.57400, 0.00000, 0.00000, 0.00000);
557 CreateDynamicObject(1255, -2890.10693, 62.59800, 4.36400, 0.00000, 0.00000, 240.00000);
558 CreateDynamicObject(2067, -2881.69409, 64.65800, 4.02100, 0.00000, 0.00000, 0.00000);
559 CreateDynamicObject(2723, -2882.11206, 71.29200, 4.87600, 0.00000, 0.00000, 0.00000);
560 CreateDynamicObject(2723, -2883.61108, 71.29200, 4.87600, 0.00000, 0.00000, 0.00000);
561 CreateDynamicObject(1802, -2881.54712, 70.65700, 4.46400, 0.00000, 0.00000, 180.00000);
562 CreateDynamicObject(1809, -2889.18091, 74.08400, 5.51600, 0.00000, 0.00000, 0.00000);
563 CreateDynamicObject(2003, -2883.77295, 69.68300, 4.97800, 0.00000, 0.00000, 0.00000);
564 CreateDynamicObject(2005, -2883.77197, 69.67000, 4.89600, 0.00000, 0.00000, 0.00000);
565 CreateDynamicObject(1210, -2883.26611, 69.39200, 4.58100, 330.00000, 0.00000, 60.00000);
566 CreateDynamicObject(1210, -2882.78296, 69.10400, 4.60000, 90.00000, 0.00000, 300.00000);
567 CreateDynamicObject(1210, -2881.78198, 68.70000, 4.60000, 90.00000, 0.00000, 229.99800);
568 CreateDynamicObject(1210, -2881.97192, 69.56500, 4.60000, 90.00000, 180.00000, 147.99300);
569 CreateDynamicObject(2060, -2880.39307, 67.54500, 3.73300, 0.00000, 0.00000, 0.00000);
570 CreateDynamicObject(2237, -2882.32910, 68.84200, 4.59600, 270.00000, 180.69099, 308.69101);
571 CreateDynamicObject(2710, -2883.55396, 69.53600, 4.75800, 0.00000, 0.00000, 272.00000);
572 CreateDynamicObject(2710, -2883.57300, 69.52900, 4.59800, 40.75000, 0.00000, 271.25000);
573 CreateDynamicObject(1310, -2882.96704, 67.52800, 4.49100, 284.00000, 0.00000, 308.00000);
574 CreateDynamicObject(19893, -2882.14600, 68.88800, 5.18100, 0.00000, 0.00000, 310.00000);
575 CreateDynamicObject(19897, -2882.38208, 69.17100, 5.19600, 0.00000, 0.00000, 0.00000);
576 CreateDynamicObject(19878, -2891.44312, 74.20300, 4.93600, 0.00000, 120.00000, 38.00000);
577 CreateDynamicObject(19874, -2884.07690, 72.19500, 5.43300, 0.00000, 0.00000, 0.00000);
578 CreateDynamicObject(19874, -2888.63989, 64.66800, 5.53400, 0.00000, 0.00000, 0.00000);
579 CreateDynamicObject(19873, -2887.17407, 64.66100, 4.71200, 0.00000, 0.00000, 0.00000);
580 CreateDynamicObject(19835, -2881.93091, 68.45800, 5.23600, 0.00000, 264.50000, 32.00000);
581 CreateDynamicObject(19823, -2883.66602, 69.68700, 5.45000, 0.00000, 0.00000, 40.00000);
582 CreateDynamicObject(19829, -2883.05200, 70.00900, 5.46600, 0.00000, 0.00000, 0.00000);
583 CreateDynamicObject(19829, -2887.31592, 74.49500, 5.54700, 0.00000, 0.00000, 0.00000);
584 CreateDynamicObject(19829, -2887.03198, 67.41100, 5.62500, 0.00000, 0.00000, 0.00000);
585 CreateDynamicObject(19826, -2884.08691, 73.82400, 5.31900, 0.00000, 0.00000, 0.00000);
586 CreateDynamicObject(19825, -2882.15894, 69.97700, 6.56100, 0.00000, 0.00000, 0.00000);
587 CreateDynamicObject(19813, -2883.81494, 71.80300, 4.85400, 0.00000, 0.00000, 0.00000);
588 CreateDynamicObject(19813, -2892.31104, 74.49500, 5.06600, 0.00000, 0.00000, 0.00000);
589 CreateDynamicObject(19813, -2884.06201, 66.97700, 5.07100, 0.00000, 0.00000, 0.00000);
590 CreateDynamicObject(19792, -2882.13892, 68.76600, 5.23400, 0.00000, 0.00000, 0.00000);
591 CreateDynamicObject(19807, -2887.96289, 74.02000, 5.59100, 0.00000, 0.00000, 0.00000);
592 CreateDynamicObject(19819, -2888.74512, 74.17000, 5.59200, 0.00000, 0.00000, 0.00000);
593 CreateDynamicObject(19819, -2888.55591, 74.17200, 5.59200, 0.00000, 0.00000, 0.00000);
594 CreateDynamicObject(19819, -2888.37598, 74.17600, 5.59200, 0.00000, 0.00000, 0.00000);
595 CreateDynamicObject(19821, -2888.22290, 74.27700, 5.51600, 0.00000, 0.00000, 0.00000);
596 CreateDynamicObject(19977, -2881.16895, 68.73400, 7.20300, 0.00000, 180.00000, 90.00000);
597 CreateDynamicObject(19977, -2881.16895, 67.88800, 7.20300, 0.00000, 179.99500, 90.00000);
598 CreateDynamicObject(19977, -2881.16895, 68.31100, 7.20300, 0.00000, 179.99500, 90.00000);
599 CreateDynamicObject(19977, -2881.16895, 71.38700, 7.20300, 0.00000, 179.99500, 90.00000);
600 CreateDynamicObject(19977, -2881.16895, 72.70100, 7.20300, 0.00000, 179.99500, 90.00000);
601 CreateDynamicObject(19977, -2881.16895, 72.05900, 7.20300, 0.00000, 179.99500, 90.00000);
602 CreateDynamicObject(19977, -2893.07104, 73.67300, 6.88900, 0.00000, 179.99500, 90.00000);
603 CreateDynamicObject(19977, -2890.48804, 69.41500, 6.88900, 0.00000, 179.99500, 90.00000);
604 CreateDynamicObject(19977, -2890.48193, 67.57000, 6.88900, 0.00000, 179.99500, 90.00000);
605 CreateDynamicObject(19977, -2886.62109, 64.40900, 6.88900, 0.00000, 179.99500, 180.00000);
606 CreateDynamicObject(19977, -2886.20996, 64.40800, 6.88900, 0.00000, 179.99500, 179.99500);
607 CreateDynamicObject(19977, -2885.72510, 64.40700, 6.88900, 0.00000, 179.99500, 179.99500);
608 CreateDynamicObject(19977, -2886.12500, 64.40600, 6.88900, 0.00000, 179.99500, 179.99500);
609 CreateDynamicObject(19977, -2884.38110, 64.40500, 6.88900, 0.00000, 179.99500, 179.99500);
610 CreateDynamicObject(19977, -2883.21802, 64.40400, 6.88900, 0.00000, 179.99500, 179.99500);
611 CreateDynamicObject(19977, -2883.75195, 64.40300, 6.88900, 0.00000, 179.99500, 179.99500);
612 CreateDynamicObject(19977, -2888.85596, 64.40200, 6.88900, 0.00000, 179.99500, 179.99500);
613 CreateDynamicObject(19977, -2888.63989, 64.40100, 6.88900, 0.00000, 179.99500, 179.99500);
614 CreateDynamicObject(19977, -2889.06494, 64.40000, 6.88900, 0.00000, 179.99500, 179.99500);
615 CreateDynamicObject(19977, -2889.24902, 64.39900, 6.88900, 0.00000, 179.99500, 179.99500);
616 CreateDynamicObject(19977, -2888.44800, 64.39800, 6.88900, 0.00000, 179.99500, 179.99500);
617 CreateDynamicObject(19468, -2892.60693, 67.64200, 4.59400, 0.00000, 0.00000, 0.00000);
618 CreateDynamicObject(19314, -2888.76294, 74.41900, 7.15600, 81.75000, 89.48500, 182.16000);
619 CreateDynamicObject(19318, -2892.18604, 74.49500, 6.46500, 0.00000, 0.00000, 0.00000);
620 CreateDynamicObject(19174, -2882.78003, 66.97700, 6.23600, 0.00000, 0.00000, 0.00000);
621 CreateDynamicObject(18868, -2887.91699, 69.32100, 5.01700, 0.00000, 0.00000, 0.00000);
622 CreateDynamicObject(18890, -2893.00708, 68.12800, 5.41600, 0.00000, 0.00000, 0.00000);
623 CreateDynamicObject(18963, -2888.76489, 74.39500, 7.09700, 0.00000, 0.00000, 270.00000);
624 CreateDynamicObject(18635, -2892.42798, 67.90600, 4.54300, 280.96799, 312.98999, 56.04600);
625 CreateDynamicObject(11719, -2883.22412, 72.24100, 5.43300, 0.00000, 359.50000, 44.00000);
626 CreateDynamicObject(11721, -2882.73804, 70.18000, 5.09900, 0.00000, 0.00000, 180.00000);
627 CreateDynamicObject(11722, -2881.63403, 72.39400, 5.58000, 0.00000, 0.00000, 0.00000);
628 CreateDynamicObject(11723, -2881.85596, 72.19800, 5.58000, 0.00000, 0.00000, 0.00000);
629 CreateDynamicObject(11721, -2885.40991, 64.50000, 5.09900, 0.00000, 0.00000, 179.99500);
630 CreateDynamicObject(11738, -2887.76807, 67.80300, 6.16900, 0.00000, 0.00000, 0.00000);
631 CreateDynamicObject(11743, -2886.54199, 74.07800, 5.54800, 0.00000, 0.00000, 0.00000);
632 CreateDynamicObject(11745, -2882.08105, 67.85800, 4.67100, 0.00000, 0.00000, 22.00000);
633 CreateDynamicObject(11745, -2882.03003, 68.25500, 4.76700, 329.37701, 341.31799, 328.22198);
634 CreateDynamicObject(11745, -2882.70190, 68.47300, 4.62000, 1.99400, 355.99701, 30.12900);
635 CreateDynamicObject(19977, -2893.07007, 71.44900, 6.88900, 0.00000, 179.99500, 90.00000);
636 CreateDynamicObject(19977, -2893.06909, 72.10200, 6.88900, 0.00000, 179.99500, 90.00000);
637 CreateDynamicObject(19977, -2893.06812, 73.01800, 6.88900, 0.00000, 179.99500, 90.00000);
638 CreateDynamicObject(19977, -2890.48706, 68.81800, 6.88900, 0.00000, 179.99500, 90.00000);
639 CreateDynamicObject(19977, -2890.48608, 68.11800, 6.88900, 0.00000, 179.99500, 90.00000);
640 CreateDynamicObject(2286, -2882.73901, 70.21300, 6.51800, 0.00000, 0.00000, 180.00000);
641 CreateDynamicObject(2284, -2887.33691, 68.06400, 6.53000, 0.00000, 0.00000, 180.00000);
642 CreateDynamicObject(2282, -2888.82593, 68.05700, 6.40300, 0.00000, 0.00000, 180.00000);
643 CreateDynamicObject(2281, -2889.90601, 68.06400, 5.86600, 0.00000, 0.00000, 180.00000);
644 CreateDynamicObject(2280, -2885.08008, 64.95800, 6.08400, 0.00000, 0.00000, 180.00000);
645 CreateDynamicObject(2276, -2886.77710, 74.00400, 6.25800, 0.00000, 0.00000, 0.00000);
646 CreateDynamicObject(2277, -2890.08203, 73.81400, 6.63700, 346.00000, 0.00000, 2.00000);
647 CreateDynamicObject(2260, -2881.74292, 73.43300, 6.08300, 0.00000, 0.00000, 270.00000);
648 CreateDynamicObject(2196, -2890.57495, 74.67400, 6.53000, 0.00000, 0.00000, 0.00000);
649 CreateDynamicObject(2106, -2886.92505, 67.94700, 4.50800, 0.00000, 0.00000, 0.00000);
650 CreateDynamicObject(2105, -2892.69897, 71.03000, 4.95600, 0.00000, 0.00000, 0.00000);
651 CreateDynamicObject(2833, -2892.33496, 71.37800, 4.50800, 0.00000, 0.00000, 0.00000);
652 CreateDynamicObject(2854, -2883.87988, 67.43900, 4.51500, 0.00000, 0.00000, 0.00000);
653 CreateDynamicObject(2841, -2884.42212, 65.11100, 4.50800, 0.00000, 0.00000, 0.00000);
654 CreateDynamicObject(14705, -2881.69995, 64.83300, 5.68500, 0.00000, 0.00000, 0.00000);
655 CreateDynamicObject(2245, -2880.31396, 67.55000, 4.07900, 0.00000, 0.00000, 0.00000);
656 CreateDynamicObject(2060, -2880.39307, 64.79500, 3.73300, 0.00000, 0.00000, 0.00000);
657 CreateDynamicObject(2245, -2880.31396, 64.80700, 4.07900, 0.00000, 0.00000, 0.00000);
658 CreateDynamicObject(2253, -2890.87305, 67.70200, 4.78800, 0.00000, 0.00000, 0.00000);
659 CreateDynamicObject(2252, -2892.98901, 67.89200, 5.78100, 0.00000, 0.00000, 0.00000);
660 CreateDynamicObject(2253, -2893.79712, 70.66400, 4.05800, 0.00000, 0.00000, 0.00000);
661 CreateDynamicObject(2253, -2893.50684, 67.93262, 4.06400, 0.00000, 0.00000, 0.00000);
662 CreateDynamicObject(2252, -2892.98804, 64.89200, 5.78100, 0.00000, 0.00000, 0.00000);
663 CreateDynamicObject(2345, -2893.31494, 66.95200, 5.34000, 0.00000, 0.00000, 270.00000);
664 CreateDynamicObject(2345, -2893.31494, 65.94500, 5.33400, 0.00000, 0.00000, 270.00000);
665 CreateDynamicObject(2811, -2890.93091, 70.05000, 4.50800, 0.00000, 0.00000, 0.00000);
666 CreateDynamicObject(1492, -2886.77808, 66.77000, 4.36500, 0.00000, 0.00000, 255.99699);
667 CreateDynamicObject(1492, -2884.33691, 69.39200, 4.36500, 0.00000, 0.00000, 295.99200);
668 //(3)
669 retexture = CreateDynamicObject(19445, -1061.35645, -1209.69299, 114.98510, 0.00000, 0.00000, 0.00000, 65119);
670 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
671 retexture = CreateDynamicObject(19445, -1061.35645, -1200.06006, 114.98510, 0.00000, 0.00000, 0.00000, 65119);
672 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
673 retexture = CreateDynamicObject(19445, -1061.35645, -1190.42798, 114.98510, 0.00000, 0.00000, 0.00000, 65119);
674 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
675 retexture = CreateDynamicObject(19445, -1065.07422, -1214.27893, 114.98510, 0.00000, 0.00000, 90.00000, 65119);
676 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
677 retexture = CreateDynamicObject(19445, -1068.21045, -1205.37573, 114.98510, 0.00000, 0.00000, 0.00000, 65119);
678 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
679 retexture = CreateDynamicObject(19445, -1068.21045, -1215.00964, 114.98510, 0.00000, 0.00000, 0.00000, 65119);
680 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
681 retexture = CreateDynamicObject(19445, -1073.11646, -1200.64758, 114.98510, 0.00000, 0.00000, 90.00000, 65119);
682 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
683 retexture = CreateDynamicObject(19445, -1082.74951, -1200.64758, 114.98510, 0.00000, 0.00000, 90.00000, 65119);
684 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
685 retexture = CreateDynamicObject(19445, -1079.97754, -1200.33472, 114.98510, 0.00000, 0.00000, 0.00000, 65119);
686 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
687 retexture = CreateDynamicObject(19445, -1079.97754, -1190.70166, 114.98510, 0.00000, 0.00000, 0.00000, 65119);
688 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
689 retexture = CreateDynamicObject(19445, -1075.71155, -1190.58459, 114.98510, 0.00000, 0.00000, 90.00000, 65119);
690 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
691 retexture = CreateDynamicObject(19445, -1066.07849, -1190.58459, 114.98510, 0.00000, 0.00000, 90.00000, 65119);
692 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
693 retexture = CreateDynamicObject(19445, -1061.35645, -1209.69299, 118.48510, 0.00000, 0.00000, 0.00000, 65119);
694 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
695 retexture = CreateDynamicObject(19445, -1061.35645, -1200.06006, 118.48510, 0.00000, 0.00000, 0.00000, 65119);
696 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
697 retexture = CreateDynamicObject(19445, -1061.35645, -1190.42798, 118.48510, 0.00000, 0.00000, 0.00000, 65119);
698 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
699 retexture = CreateDynamicObject(19445, -1065.07422, -1214.27893, 118.48510, 0.00000, 0.00000, 90.00000, 65119);
700 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
701 retexture = CreateDynamicObject(19445, -1068.21045, -1205.37573, 118.48510, 0.00000, 0.00000, 0.00000, 65119);
702 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
703 retexture = CreateDynamicObject(19445, -1068.21045, -1215.00964, 118.48510, 0.00000, 0.00000, 0.00000, 65119);
704 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
705 retexture = CreateDynamicObject(19445, -1073.11646, -1200.64758, 118.48510, 0.00000, 0.00000, 90.00000, 65119);
706 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
707 retexture = CreateDynamicObject(19445, -1082.74951, -1200.64758, 118.48510, 0.00000, 0.00000, 90.00000, 65119);
708 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
709 retexture = CreateDynamicObject(19445, -1079.97754, -1200.33472, 118.48510, 0.00000, 0.00000, 0.00000, 65119);
710 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
711 retexture = CreateDynamicObject(19445, -1079.97754, -1190.70166, 118.48510, 0.00000, 0.00000, 0.00000, 65119);
712 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
713 retexture = CreateDynamicObject(19445, -1075.71155, -1190.58459, 118.48510, 0.00000, 0.00000, 90.00000, 65119);
714 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
715 retexture = CreateDynamicObject(19445, -1066.07849, -1190.58459, 118.48510, 0.00000, 0.00000, 90.00000, 65119);
716 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
717 retexture = CreateDynamicObject(19445, -1079.97754, -1200.33472, 121.98510, 0.00000, 0.00000, 0.00000, 65119);
718 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
719 retexture = CreateDynamicObject(19445, -1079.97754, -1190.70166, 121.98510, 0.00000, 0.00000, 0.00000, 65119);
720 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
721 retexture = CreateDynamicObject(19445, -1065.07422, -1214.27893, 121.98510, 0.00000, 0.00000, 90.00000, 65119);
722 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
723 retexture = CreateDynamicObject(19445, -1061.35645, -1200.06006, 121.98510, 0.00000, 0.00000, 0.00000, 65119);
724 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
725 retexture = CreateDynamicObject(19445, -1061.35645, -1190.42798, 121.98510, 0.00000, 0.00000, 0.00000, 65119);
726 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
727 retexture = CreateDynamicObject(19353, -1066.51733, -1200.64758, 121.98510, 0.00000, 0.00000, 90.00000, 65119);
728 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
729 retexture = CreateDynamicObject(19445, -1060.09448, -1200.64758, 114.98510, 0.00000, 0.00000, 90.00000, 65119);
730 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
731 retexture = CreateDynamicObject(19383, -1066.51733, -1200.64758, 114.98510, 0.00000, 0.00000, 90.00000, 65119);
732 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
733 retexture = CreateDynamicObject(19445, -1060.09448, -1200.64758, 118.48510, 0.00000, 0.00000, 90.00000, 65119);
734 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
735 retexture = CreateDynamicObject(19353, -1066.51733, -1200.64758, 118.48510, 0.00000, 0.00000, 90.00000, 65119);
736 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
737 retexture = CreateDynamicObject(19353, -1066.51733, -1200.64758, 121.98510, 0.00000, 0.00000, 90.00000, 65119);
738 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
739 retexture = CreateDynamicObject(19445, -1068.23840, -1203.07166, 114.98510, 0.00000, 0.00000, 0.00000, 65119);
740 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
741 retexture = CreateDynamicObject(19445, -1068.23840, -1203.07166, 118.48510, 0.00000, 0.00000, 0.00000, 65119);
742 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
743 retexture = CreateDynamicObject(19445, -1068.23840, -1203.07166, 121.98510, 0.00000, 0.00000, 0.00000, 65119);
744 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
745 retexture = CreateDynamicObject(19383, -1066.54675, -1198.34668, 114.98510, 0.00000, 0.00000, 90.00000, 65119);
746 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
747 retexture = CreateDynamicObject(19445, -1060.12451, -1198.34668, 114.98510, 0.00000, 0.00000, 90.00000, 65119);
748 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
749 retexture = CreateDynamicObject(19445, -1063.33252, -1198.34668, 118.48510, 0.00000, 0.00000, 90.00000, 65119);
750 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
751 retexture = CreateDynamicObject(19445, -1063.33252, -1198.34668, 121.98510, 0.00000, 0.00000, 90.00000, 65119);
752 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
753 retexture = CreateDynamicObject(19353, -1064.80286, -1213.09143, 118.48510, 0.00000, 0.00000, 90.00000, 65119);
754 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
755 retexture = CreateDynamicObject(19353, -1064.80286, -1213.09143, 121.98510, 0.00000, 0.00000, 90.00000, 65119);
756 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
757 retexture = CreateDynamicObject(19353, -1066.49768, -1214.60730, 118.48510, 0.00000, 0.00000, 0.00000, 65119);
758 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
759 retexture = CreateDynamicObject(19445, -1060.09448, -1200.64758, 121.98510, 0.00000, 0.00000, 90.00000, 65119);
760 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
761 retexture = CreateDynamicObject(19445, -1062.15442, -1213.09180, 114.98510, 0.00000, 0.00000, 90.00000, 65119);
762 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
763 retexture = CreateDynamicObject(19383, -1064.92773, -1211.57312, 118.48310, 0.00000, 0.00000, 0.00000, 65119);
764 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
765 retexture = CreateDynamicObject(19445, -1069.65515, -1208.27563, 118.48510, 0.00000, 0.00000, 90.00000, 65119);
766 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
767 retexture = CreateDynamicObject(19426, -1064.92676, -1209.16699, 118.48510, 0.00000, 0.00000, 0.00000, 65119);
768 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
769 retexture = CreateDynamicObject(19353, -1064.76355, -1204.60828, 118.48510, 0.00000, 0.00000, 0.00000, 65119);
770 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
771 retexture = CreateDynamicObject(19353, -1064.76355, -1201.39734, 118.48510, 0.00000, 0.00000, 0.00000, 65119);
772 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
773 retexture = CreateDynamicObject(19383, -1066.20215, -1206.16150, 118.48310, 0.00000, 0.00000, 90.00000, 65119);
774 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
775 retexture = CreateDynamicObject(19383, -1063.27014, -1206.16345, 118.48310, 0.00000, 0.00000, 90.00000, 65119);
776 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
777 retexture = CreateDynamicObject(19445, -1060.06006, -1206.16345, 121.98510, 0.00000, 0.00000, 90.00000, 65119);
778 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
779 retexture = CreateDynamicObject(19445, -1069.69214, -1206.16150, 121.98510, 0.00000, 0.00000, 90.00000, 65119);
780 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
781 retexture = CreateDynamicObject(19445, -1069.65515, -1208.27563, 121.98510, 0.00000, 0.00000, 90.00000, 65119);
782 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
783 retexture = CreateDynamicObject(19426, -1064.92676, -1209.16699, 121.98510, 0.00000, 0.00000, 0.00000, 65119);
784 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
785 retexture = CreateDynamicObject(19353, -1064.92773, -1211.57312, 121.98510, 0.00000, 0.00000, 0.00000, 65119);
786 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
787 retexture = CreateDynamicObject(19353, -1060.06030, -1206.16345, 118.48510, 0.00000, 0.00000, 90.00000, 65119);
788 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
789 retexture = CreateDynamicObject(19353, -1069.41260, -1206.16150, 118.48510, 0.00000, 0.00000, 90.00000, 65119);
790 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
791 retexture = CreateDynamicObject(19353, -1064.76355, -1201.39734, 121.98510, 0.00000, 0.00000, 0.00000, 65119);
792 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
793 retexture = CreateDynamicObject(19353, -1064.76355, -1204.60828, 121.98510, 0.00000, 0.00000, 0.00000, 65119);
794 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "gz_vic2c");
795 retexture = CreateDynamicObject(19446, -1075.31055, -1199.42126, 119.78160, 0.00000, 43.80000, 90.00000, 65119);
796 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "sjmbigold6");
797 retexture = CreateDynamicObject(19446, -1065.67773, -1199.42126, 119.78160, 0.00000, 43.80000, 90.00000, 65119);
798 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "sjmbigold6");
799 retexture = CreateDynamicObject(19446, -1065.67773, -1196.99927, 122.30660, 0.00000, 43.80000, 90.00000, 65119);
800 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "sjmbigold6");
801 retexture = CreateDynamicObject(19446, -1075.31055, -1196.99927, 122.30660, 0.00000, 43.80000, 90.00000, 65119);
802 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "sjmbigold6");
803 retexture = CreateDynamicObject(19446, -1065.67773, -1194.57727, 124.83260, 0.00000, 43.80000, 90.00000, 65119);
804 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "sjmbigold6");
805 retexture = CreateDynamicObject(19446, -1075.31055, -1194.57727, 124.83260, 0.00000, 43.80000, 90.00000, 65119);
806 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "sjmbigold6");
807 retexture = CreateDynamicObject(19446, -1065.67773, -1191.81531, 119.78160, 0.00000, -43.80000, 90.00000, 65119);
808 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "sjmbigold6");
809 retexture = CreateDynamicObject(19446, -1075.31055, -1191.81531, 119.78160, 0.00000, -43.80000, 90.00000, 65119);
810 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "sjmbigold6");
811 retexture = CreateDynamicObject(19446, -1065.67773, -1194.23730, 122.30660, 0.00000, -43.80000, 90.00000, 65119);
812 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "sjmbigold6");
813 retexture = CreateDynamicObject(19446, -1065.67773, -1196.66028, 124.83260, 0.00000, -43.80000, 90.00000, 65119);
814 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "sjmbigold6");
815 retexture = CreateDynamicObject(19446, -1075.31055, -1194.23730, 122.30660, 0.00000, -43.80000, 90.00000, 65119);
816 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "sjmbigold6");
817 retexture = CreateDynamicObject(19446, -1075.31055, -1196.66028, 124.83260, 0.00000, -43.80000, 90.00000, 65119);
818 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "sjmbigold6");
819 retexture = CreateDynamicObject(19446, -1066.81311, -1203.16077, 119.47760, 0.00000, 51.10000, 0.00000, 65119);
820 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "sjmbigold6");
821 retexture = CreateDynamicObject(19446, -1066.81311, -1212.79285, 119.47760, 0.00000, 51.10000, 0.00000, 65119);
822 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "sjmbigold6");
823 retexture = CreateDynamicObject(19446, -1064.08923, -1212.79285, 121.67560, 0.00000, 51.10000, 0.00000, 65119);
824 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "sjmbigold6");
825 retexture = CreateDynamicObject(19446, -1064.08923, -1203.16077, 121.67560, 0.00000, 51.10000, 0.00000, 65119);
826 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "sjmbigold6");
827 retexture = CreateDynamicObject(19446, -1062.70508, -1212.79285, 119.47760, 0.00000, -51.10000, 0.00000, 65119);
828 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "sjmbigold6");
829 retexture = CreateDynamicObject(19446, -1062.70508, -1203.16077, 119.47760, 0.00000, -51.10000, 0.00000, 65119);
830 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "sjmbigold6");
831 retexture = CreateDynamicObject(19446, -1065.42920, -1212.79285, 121.67560, 0.00000, -51.10000, 0.00000, 65119);
832 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "sjmbigold6");
833 retexture = CreateDynamicObject(19446, -1065.42920, -1203.16077, 121.67560, 0.00000, -51.10000, 0.00000, 65119);
834 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "sjmbigold6");
835 retexture = CreateDynamicObject(19447, -1077.15747, -1196.44116, 113.14930, 0.00000, 90.00000, 0.00000, 65119);
836 SetDynamicObjectMaterial(retexture, 0, 3250, "cxref_oldwest", "des_ghotwood1");
837 retexture = CreateDynamicObject(19447, -1080.65747, -1196.44116, 113.14930, 0.00000, 90.00000, 0.00000, 65119);
838 SetDynamicObjectMaterial(retexture, 0, 3250, "cxref_oldwest", "des_ghotwood1");
839 retexture = CreateDynamicObject(19447, -1077.15747, -1186.80725, 113.14930, 0.00000, 90.00000, 0.00000, 65119);
840 SetDynamicObjectMaterial(retexture, 0, 3250, "cxref_oldwest", "des_ghotwood1");
841 retexture = CreateDynamicObject(19447, -1073.65747, -1186.80725, 113.14930, 0.00000, 90.00000, 0.00000, 65119);
842 SetDynamicObjectMaterial(retexture, 0, 3250, "cxref_oldwest", "des_ghotwood1");
843 retexture = CreateDynamicObject(19447, -1070.15747, -1186.80725, 113.14930, 0.00000, 90.00000, 0.00000, 65119);
844 SetDynamicObjectMaterial(retexture, 0, 3250, "cxref_oldwest", "des_ghotwood1");
845 retexture = CreateDynamicObject(19447, -1066.65747, -1186.80725, 113.14930, 0.00000, 90.00000, 0.00000, 65119);
846 SetDynamicObjectMaterial(retexture, 0, 3250, "cxref_oldwest", "des_ghotwood1");
847 retexture = CreateDynamicObject(19447, -1063.15747, -1186.80725, 113.14930, 0.00000, 90.00000, 0.00000, 65119);
848 SetDynamicObjectMaterial(retexture, 0, 3250, "cxref_oldwest", "des_ghotwood1");
849 retexture = CreateDynamicObject(19447, -1073.65747, -1196.44116, 113.14930, 0.00000, 90.00000, 0.00000, 65119);
850 SetDynamicObjectMaterial(retexture, 0, 3250, "cxref_oldwest", "des_ghotwood1");
851 retexture = CreateDynamicObject(19447, -1070.15747, -1196.44116, 113.14930, 0.00000, 90.00000, 0.00000, 65119);
852 SetDynamicObjectMaterial(retexture, 0, 3250, "cxref_oldwest", "des_ghotwood1");
853 retexture = CreateDynamicObject(19447, -1066.65747, -1196.44116, 113.14930, 0.00000, 90.00000, 0.00000, 65119);
854 SetDynamicObjectMaterial(retexture, 0, 3250, "cxref_oldwest", "des_ghotwood1");
855 retexture = CreateDynamicObject(19447, -1063.15747, -1196.44116, 113.14930, 0.00000, 90.00000, 0.00000, 65119);
856 SetDynamicObjectMaterial(retexture, 0, 3250, "cxref_oldwest", "des_ghotwood1");
857 retexture = CreateDynamicObject(19447, -1066.65747, -1206.07324, 113.14930, 0.00000, 90.00000, 0.00000, 65119);
858 SetDynamicObjectMaterial(retexture, 0, 3250, "cxref_oldwest", "des_ghotwood1");
859 retexture = CreateDynamicObject(19447, -1063.15747, -1206.07324, 113.14930, 0.00000, 90.00000, 0.00000, 65119);
860 SetDynamicObjectMaterial(retexture, 0, 3250, "cxref_oldwest", "des_ghotwood1");
861 retexture = CreateDynamicObject(19447, -1066.65747, -1215.70618, 113.14930, 0.00000, 90.00000, 0.00000, 65119);
862 SetDynamicObjectMaterial(retexture, 0, 3250, "cxref_oldwest", "des_ghotwood1");
863 retexture = CreateDynamicObject(19447, -1063.15747, -1215.70618, 113.14930, 0.00000, 90.00000, 0.00000, 65119);
864 SetDynamicObjectMaterial(retexture, 0, 3250, "cxref_oldwest", "des_ghotwood1");
865 retexture = CreateDynamicObject(14877, -1062.94446, -1214.68359, 114.65240, 0.00000, 0.00000, 0.00000, 65119);
866 SetDynamicObjectMaterial(retexture, 0, 3250, "cxref_oldwest", "des_ghotwood1");
867 SetDynamicObjectMaterial(retexture, 1, 3250, "cxref_oldwest", "des_ghotwood1");
868 retexture = CreateDynamicObject(19447, -1064.65747, -1208.36218, 116.64730, 0.00000, 90.00000, 0.00000, 65119);
869 SetDynamicObjectMaterial(retexture, 0, 3250, "cxref_oldwest", "des_ghotwood1");
870 retexture = CreateDynamicObject(19355, -1064.65747, -1201.94055, 116.64730, 0.00000, 90.00000, 0.00000, 65119);
871 SetDynamicObjectMaterial(retexture, 0, 3250, "cxref_oldwest", "des_ghotwood1");
872 retexture = CreateDynamicObject(19447, -1068.15747, -1208.36218, 116.64730, 0.00000, 90.00000, 0.00000, 65119);
873 SetDynamicObjectMaterial(retexture, 0, 3250, "cxref_oldwest", "des_ghotwood1");
874 retexture = CreateDynamicObject(19355, -1068.15747, -1201.94055, 116.64730, 0.00000, 90.00000, 0.00000, 65119);
875 SetDynamicObjectMaterial(retexture, 0, 3250, "cxref_oldwest", "des_ghotwood1");
876 retexture = CreateDynamicObject(19355, -1061.15747, -1201.94055, 116.64730, 0.00000, 90.00000, 0.00000, 65119);
877 SetDynamicObjectMaterial(retexture, 0, 3250, "cxref_oldwest", "des_ghotwood1");
878 retexture = CreateDynamicObject(19447, -1061.15747, -1208.36218, 116.64730, 0.00000, 90.00000, 0.00000, 65119);
879 SetDynamicObjectMaterial(retexture, 0, 3250, "cxref_oldwest", "des_ghotwood1");
880 retexture = CreateDynamicObject(19447, -1068.15747, -1217.99622, 116.64730, 0.00000, 90.00000, 0.00000, 65119);
881 SetDynamicObjectMaterial(retexture, 0, 3250, "cxref_oldwest", "des_ghotwood1");
882 retexture = CreateDynamicObject(19428, -1066.43335, -1199.23059, 116.64730, 0.00000, 90.00000, 0.00000, 65119);
883 SetDynamicObjectMaterial(retexture, 0, 3250, "cxref_oldwest", "des_ghotwood1");
884 retexture = CreateDynamicObject(19428, -1062.93359, -1199.23059, 116.64730, 0.00000, 90.00000, 0.00000, 65119);
885 SetDynamicObjectMaterial(retexture, 0, 3250, "cxref_oldwest", "des_ghotwood1");
886 retexture = CreateDynamicObject(19428, -1062.93359, -1199.53064, 116.64530, 0.00000, 90.00000, 0.00000, 65119);
887 SetDynamicObjectMaterial(retexture, 0, 3250, "cxref_oldwest", "des_ghotwood1");
888 retexture = CreateDynamicObject(19428, -1066.43359, -1199.53064, 116.64530, 0.00000, 90.00000, 0.00000, 65119);
889 SetDynamicObjectMaterial(retexture, 0, 3250, "cxref_oldwest", "des_ghotwood1");
890 retexture = CreateDynamicObject(19447, -1078.33594, -1197.34692, 117.12130, 0.00000, 90.00000, 0.00000, 65119);
891 SetDynamicObjectMaterial(retexture, 0, 3250, "cxref_oldwest", "des_ghotwood1");
892 retexture = CreateDynamicObject(19447, -1078.33594, -1187.71484, 117.12130, 0.00000, 90.00000, 0.00000, 65119);
893 SetDynamicObjectMaterial(retexture, 0, 3250, "cxref_oldwest", "des_ghotwood1");
894 retexture = CreateDynamicObject(19447, -1074.83594, -1197.34692, 117.12130, 0.00000, 90.00000, 0.00000, 65119);
895 SetDynamicObjectMaterial(retexture, 0, 3250, "cxref_oldwest", "des_ghotwood1");
896 retexture = CreateDynamicObject(1308, -1070.85754, -1195.65662, 123.42250, 0.00000, 90.00000, 0.00000, 65119);
897 SetDynamicObjectMaterial(retexture, 2, 1308, "telegraph", "telepole2128");
898 retexture = CreateDynamicObject(1308, -1071.48352, -1195.59265, 123.42250, 0.00000, 90.00000, 180.00000, 65119);
899 SetDynamicObjectMaterial(retexture, 2, 1308, "telegraph", "telepole2128");
900 retexture = CreateDynamicObject(1308, -1079.73706, -1201.34705, 117.42850, 0.00000, 43.80000, 90.00000, 65119);
901 SetDynamicObjectMaterial(retexture, 2, 1308, "telegraph", "telepole2128");
902 retexture = CreateDynamicObject(1308, -1079.80908, -1189.84302, 117.42850, 0.00000, 43.80000, -90.00000, 65119);
903 SetDynamicObjectMaterial(retexture, 2, 1308, "telegraph", "telepole2128");
904 retexture = CreateDynamicObject(1308, -1061.57910, -1189.84302, 117.42850, 0.00000, 43.80000, -90.00000, 65119);
905 SetDynamicObjectMaterial(retexture, 2, 1308, "telegraph", "telepole2128");
906 retexture = CreateDynamicObject(1308, -1061.49512, -1200.02197, 118.82850, 0.00000, 43.80000, 90.00000, 65119);
907 SetDynamicObjectMaterial(retexture, 2, 1308, "telegraph", "telepole2128");
908 retexture = CreateDynamicObject(1308, -1074.13599, -1198.70593, 116.84450, 0.00000, 180.00000, 90.00000, 65119);
909 SetDynamicObjectMaterial(retexture, 2, 1308, "telegraph", "telepole2128");
910 retexture = CreateDynamicObject(1308, -1074.13599, -1193.61694, 116.84450, 0.00000, 180.00000, 90.00000, 65119);
911 SetDynamicObjectMaterial(retexture, 2, 1308, "telegraph", "telepole2128");
912 retexture = CreateDynamicObject(1308, -1080.74402, -1190.67615, 112.87650, 0.00000, 180.00000, 90.00000, 65119);
913 SetDynamicObjectMaterial(retexture, 2, 1308, "telegraph", "telepole2128");
914 retexture = CreateDynamicObject(1308, -1080.77368, -1191.71704, 112.87650, 0.00000, 180.00000, 90.00000, 65119);
915 SetDynamicObjectMaterial(retexture, 2, 1308, "telegraph", "telepole2128");
916 retexture = CreateDynamicObject(1308, -1080.91833, -1186.41711, 112.87650, 0.00000, 180.00000, 90.00000, 65119);
917 SetDynamicObjectMaterial(retexture, 2, 1308, "telegraph", "telepole2128");
918 retexture = CreateDynamicObject(1308, -1080.90344, -1194.54810, 112.87650, 0.00000, 180.00000, 90.00000, 65119);
919 SetDynamicObjectMaterial(retexture, 2, 1308, "telegraph", "telepole2128");
920 retexture = CreateDynamicObject(1308, -1090.79199, -1187.22253, 112.87650, -8.00000, 180.00000, 0.00000, 65119);
921 SetDynamicObjectMaterial(retexture, 2, 1308, "telegraph", "telepole2128");
922 retexture = CreateDynamicObject(1416, -1060.88135, -1202.76221, 115.02550, 0.00000, 90.00000, 0.00000, 65119);
923 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "examwind1_lae");
924 retexture = CreateDynamicObject(1416, -1060.88135, -1208.16162, 115.02550, 0.00000, 90.00000, 0.00000, 65119);
925 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "examwind1_lae");
926 retexture = CreateDynamicObject(1416, -1060.88135, -1211.02234, 115.02550, 0.00000, 90.00000, 0.00000, 65119);
927 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "examwind1_lae");
928 retexture = CreateDynamicObject(1416, -1068.68530, -1208.31494, 115.02550, 0.00000, 90.00000, 180.00000, 65119);
929 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "examwind1_lae");
930 retexture = CreateDynamicObject(1416, -1068.68530, -1206.73047, 115.02550, 0.00000, 90.00000, 180.00000, 65119);
931 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "examwind1_lae");
932 retexture = CreateDynamicObject(1416, -1064.91284, -1214.75476, 115.02550, 0.00000, 90.00000, -90.00000, 65119);
933 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "examwind1_lae");
934 retexture = CreateDynamicObject(1416, -1073.50354, -1190.10986, 115.02550, 90.00000, 90.00000, 90.00000, 65119);
935 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "examwind1_lae");
936 retexture = CreateDynamicObject(1416, -1069.96448, -1190.10986, 115.02550, 90.00000, 90.00000, 90.00000, 65119);
937 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "examwind1_lae");
938 retexture = CreateDynamicObject(1416, -1066.60083, -1190.10986, 115.02550, 90.00000, 90.00000, 90.00000, 65119);
939 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "examwind1_lae");
940 retexture = CreateDynamicObject(1416, -1060.88086, -1196.43896, 119.11750, 0.00000, 90.00000, 0.00000, 65119);
941 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "examwind1_lae");
942 retexture = CreateDynamicObject(1416, -1060.88086, -1194.67883, 119.11750, 0.00000, 90.00000, 0.00000, 65119);
943 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "examwind1_lae");
944 retexture = CreateDynamicObject(1416, -1080.45288, -1194.60876, 119.11750, 0.00000, 90.00000, 180.00000, 65119);
945 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "examwind1_lae");
946 retexture = CreateDynamicObject(1416, -1080.45288, -1196.36902, 119.11750, 0.00000, 90.00000, 180.00000, 65119);
947 SetDynamicObjectMaterial(retexture, 0, 17008, "farmhouse", "examwind1_lae");
948 retexture = CreateDynamicObject(19448, -1078.81885, -1190.46191, 111.48640, 0.00000, 0.00000, 0.00000, 65119);
949 SetDynamicObjectMaterial(retexture, 0, 17471, "cuntwlandse", "grasstype5_dirt");
950 retexture = CreateDynamicObject(19448, -1076.01978, -1190.58459, 111.48640, 0.00000, 0.00000, 90.00000, 65119);
951 SetDynamicObjectMaterial(retexture, 0, 17471, "cuntwlandse", "grasstype5_dirt");
952 retexture = CreateDynamicObject(19448, -1076.01978, -1191.71265, 111.48640, 0.00000, 0.00000, 90.00000, 65119);
953 SetDynamicObjectMaterial(retexture, 0, 17471, "cuntwlandse", "grasstype5_dirt");
954 retexture = CreateDynamicObject(19448, -1079.08118, -1190.50464, 109.98640, 0.00000, 90.00000, 0.00000, 65119);
955 SetDynamicObjectMaterial(retexture, 0, 17471, "cuntwlandse", "grasstype5_dirt");
956 retexture = CreateDynamicObject(19448, -1081.63916, -1190.50464, 113.14640, 0.00000, 90.00000, 0.00000, 65119);
957 SetDynamicObjectMaterial(retexture, 0, 17471, "cuntwlandse", "grasstype5_dirt");
958 retexture = CreateDynamicObject(19448, -1080.74683, -1185.67883, 111.48640, 0.00000, 0.00000, 0.00000, 65119);
959 SetDynamicObjectMaterial(retexture, 0, 17471, "cuntwlandse", "grasstype5_dirt");
960 retexture = CreateDynamicObject(19448, -1080.74683, -1196.61877, 111.48640, 0.00000, 0.00000, 0.00000, 65119);
961 SetDynamicObjectMaterial(retexture, 0, 17471, "cuntwlandse", "grasstype5_dirt");
962 retexture = CreateDynamicObject(19448, -1080.74683, -1196.61877, 107.98640, 0.00000, 0.00000, 0.00000, 65119);
963 SetDynamicObjectMaterial(retexture, 0, 17471, "cuntwlandse", "grasstype5_dirt");
964 retexture = CreateDynamicObject(19448, -1080.74683, -1185.67883, 107.98640, 0.00000, 0.00000, 0.00000, 65119);
965 SetDynamicObjectMaterial(retexture, 0, 17471, "cuntwlandse", "grasstype5_dirt");
966 retexture = CreateDynamicObject(900, -1102.26514, -1202.46497, 109.41716, 0.00000, 0.00000, 0.00000, 65119);
967 SetDynamicObjectMaterial(retexture, 0, 17471, "cuntwlandse", "grasstype5_dirt");
968 retexture = CreateDynamicObject(900, -1080.82495, -1191.83545, 106.39420, 0.00000, 180.00000, 0.00000, 65119);
969 SetDynamicObjectMaterial(retexture, 0, 17471, "cuntwlandse", "grasstype5_dirt");
970 retexture = CreateDynamicObject(900, -1092.01111, -1196.88623, 115.36420, 0.00000, -1.00000, -110.00000, 65119);
971 SetDynamicObjectMaterial(retexture, 0, 17471, "cuntwlandse", "grasstype5_dirt");
972 retexture = CreateDynamicObject(900, -1096.53760, -1196.30383, 114.33620, 90.00000, -1.00000, -110.00000, 65119);
973 SetDynamicObjectMaterial(retexture, 0, 17471, "cuntwlandse", "grasstype5_dirt");
974 retexture = CreateDynamicObject(900, -1093.57141, -1184.10254, 106.39420, 90.00000, 180.00000, 0.00000, 65119);
975 SetDynamicObjectMaterial(retexture, 0, 17471, "cuntwlandse", "grasstype5_dirt");
976 retexture = CreateDynamicObject(900, -1099.05664, -1198.11304, 105.52420, 90.00000, 180.00000, 180.00000, 65119);
977 SetDynamicObjectMaterial(retexture, 0, 17471, "cuntwlandse", "grasstype5_dirt");
978 CreateDynamicObject(19304, -1088.44739, -1186.64453, 109.93100, 0.00000, 0.00000, 90.00000, 65119);
979 CreateDynamicObject(19304, -1088.44739, -1186.64453, 111.17500, 0.00000, 0.00000, 90.00000, 65119);
980 CreateDynamicObject(19304, -1088.44739, -1186.64453, 112.41800, 0.00000, 0.00000, 90.00000, 65119);
981 CreateDynamicObject(19304, -1088.44739, -1191.89453, 109.93100, 0.00000, 0.00000, 90.00000, 65119);
982 CreateDynamicObject(19304, -1088.44739, -1191.89453, 111.17500, 0.00000, 0.00000, 90.00000, 65119);
983 CreateDynamicObject(19304, -1088.44739, -1191.89453, 112.41800, 0.00000, 0.00000, 90.00000, 65119);
984 CreateDynamicObject(19304, -1088.44739, -1195.39856, 109.93100, 0.00000, 0.00000, 90.00000, 65119);
985 CreateDynamicObject(19304, -1088.44739, -1195.39856, 112.41800, 0.00000, 0.00000, 90.00000, 65119);
986 CreateDynamicObject(19304, -1088.44739, -1195.39856, 111.17500, 0.00000, 0.00000, 90.00000, 65119);
987 CreateDynamicObject(19304, -1088.44739, -1190.14648, 113.05100, 0.00000, 0.00000, 90.00000, 65119);
988 CreateDynamicObject(19468, -1089.14514, -1187.76221, 110.09460, 0.00000, 0.00000, 0.00000, 65119);
989 CreateDynamicObject(19468, -1091.69922, -1192.03979, 109.63360, 0.00000, 0.00000, 0.00000, 65119);
990 CreateDynamicObject(1437, -1079.38733, -1191.62622, 108.22540, 10.00000, 0.00000, 0.00000, 65119);
991 CreateDynamicObject(941, -1081.38721, -1188.41846, 110.33600, 0.00000, -7.00000, -90.00000, 65119);
992 CreateDynamicObject(2043, -1081.24817, -1187.69153, 110.82430, 0.00000, -7.00000, -90.00000, 65119);
993 CreateDynamicObject(2043, -1081.25623, -1187.95508, 110.85630, 0.00000, -7.00000, -90.00000, 65119);
994 CreateDynamicObject(2043, -1081.20715, -1188.19055, 110.89030, 0.00000, -7.00000, -90.00000, 65119);
995 CreateDynamicObject(356, -1081.65381, -1189.22107, 110.91110, 90.00000, 0.00000, 70.00000, 65119);
996 CreateDynamicObject(1271, -1087.49390, -1193.61108, 109.86880, 7.00000, 0.00000, 0.00000, 65119);
997 CreateDynamicObject(3014, -1086.56824, -1193.45422, 109.81460, 7.00000, 0.00000, 0.00000, 65119);
998 CreateDynamicObject(3633, -1081.79895, -1193.80469, 110.16360, 6.00000, 0.00000, 0.00000, 65119);
999 CreateDynamicObject(3633, -1083.30200, -1193.73596, 110.16360, 6.00000, 0.00000, 0.00000, 65119);
1000 CreateDynamicObject(3014, -1085.92456, -1193.80676, 109.79060, 7.00000, 0.00000, 0.00000, 65119);
1001 CreateDynamicObject(3014, -1085.94434, -1193.17102, 109.88060, 7.00000, 0.00000, 0.00000, 65119);
1002 CreateDynamicObject(1271, -1086.23291, -1187.57556, 110.31580, -4.00000, 0.00000, 0.00000, 65119);
1003 CreateDynamicObject(1271, -1085.33997, -1187.45471, 110.28980, -4.00000, 0.00000, 0.00000, 65119);
1004 CreateDynamicObject(355, -1085.99817, -1187.79626, 110.75880, -100.79970, -72.54000, -45.00000, 65119);
1005 CreateDynamicObject(1242, -1085.60876, -1187.96350, 110.14300, -4.00000, 0.00000, 180.00000, 65119);
1006 CreateDynamicObject(11392, -1056.24792, -1190.78271, 113.23570, 0.00000, 0.00000, -40.00000, 65119);
1007 CreateDynamicObject(19815, -1076.34253, -1190.65002, 114.87370, 0.00000, 0.00000, 0.00000, 65119);
1008 CreateDynamicObject(19921, -1077.27393, -1191.19031, 114.28640, 0.00000, 0.00000, 0.00000, 65119);
1009 CreateDynamicObject(19900, -1075.16919, -1191.03809, 113.23710, 0.00000, 0.00000, 0.00000, 65119);
1010 CreateDynamicObject(936, -1076.70850, -1191.27759, 113.71320, 0.00000, 0.00000, 0.00000, 65119);
1011 CreateDynamicObject(1337, -1067.42603, -1199.08789, 113.88670, 0.00000, 0.00000, 90.00000, 65119);
1012 CreateDynamicObject(1454, -1078.99524, -1198.49084, 113.90120, 90.00000, 0.00000, 0.00000, 65119);
1013 CreateDynamicObject(1454, -1077.60632, -1199.68274, 113.90120, 90.00000, 0.00000, 0.00000, 65119);
1014 CreateDynamicObject(1208, -1061.87061, -1200.30139, 113.23890, 0.00000, 0.00000, 0.00000, 65119);
1015 CreateDynamicObject(1208, -1062.65210, -1200.31311, 113.23890, 0.00000, 0.00000, 0.00000, 65119);
1016 CreateDynamicObject(2671, -1075.45862, -1198.85132, 113.23680, 0.00000, 0.00000, 0.00000, 65119);
1017 CreateDynamicObject(2674, -1067.30798, -1199.49817, 113.24560, 0.00000, 0.00000, 0.00000, 65119);
1018 CreateDynamicObject(2845, -1062.58496, -1199.70898, 113.23700, 0.00000, 0.00000, 0.00000, 65119);
1019 CreateDynamicObject(19621, -1063.70300, -1200.15588, 113.33350, 0.00000, 0.00000, 40.00000, 65119);
1020 CreateDynamicObject(365, -1063.83215, -1200.39905, 113.39980, 0.00000, 0.00000, 0.00000, 65119);
1021 CreateDynamicObject(365, -1063.85608, -1200.24451, 113.30980, 0.00000, 90.00000, 10.00000, 65119);
1022 CreateDynamicObject(1650, -1064.13220, -1200.38000, 113.54380, 0.00000, 0.00000, 217.00000, 65119);
1023 CreateDynamicObject(2372, -1064.07568, -1198.50891, 113.23730, 0.00000, 0.00000, 90.00000, 65119);
1024 CreateDynamicObject(1454, -1078.78406, -1199.43127, 117.87720, 90.00000, 0.00000, 0.00000, 65119);
1025 CreateDynamicObject(1454, -1076.99109, -1199.31140, 117.87720, 90.00000, 0.00000, 0.00000, 65119);
1026 CreateDynamicObject(1454, -1078.92029, -1197.58423, 117.87720, 90.00000, 0.00000, 0.00000, 65119);
1027 CreateDynamicObject(1454, -1075.17590, -1199.26990, 117.87720, 90.00000, 0.00000, 0.00000, 65119);
1028 CreateDynamicObject(2671, -1077.00977, -1192.58081, 113.23680, 0.00000, 0.00000, 0.00000, 65119);
1029 CreateDynamicObject(2261, -1067.62341, -1202.59436, 115.06510, 0.00000, 0.00000, 90.00000, 65119);
1030 CreateDynamicObject(2022, -1061.92456, -1201.19299, 113.23550, 0.00000, 0.00000, 0.00000, 65119);
1031 CreateDynamicObject(2019, -1061.92578, -1203.18237, 113.23550, 0.00000, 0.00000, -90.00000, 65119);
1032 CreateDynamicObject(2016, -1064.92090, -1201.21326, 113.23550, 0.00000, 0.00000, 0.00000, 65119);
1033 CreateDynamicObject(2017, -1061.92578, -1202.18408, 113.23550, 0.00000, 0.00000, -90.00000, 65119);
1034 CreateDynamicObject(2013, -1063.92114, -1201.21326, 113.23550, 0.00000, 0.00000, 0.00000, 65119);
1035 CreateDynamicObject(2015, -1061.92578, -1204.18164, 113.23550, 0.00000, 0.00000, -90.00000, 65119);
1036 CreateDynamicObject(19581, -1061.85046, -1202.86133, 114.27770, 0.00000, 0.00000, 170.00000, 65119);
1037 CreateDynamicObject(11718, -1062.11816, -1202.04871, 114.25640, 0.00000, 0.00000, 10.00000, 65119);
1038 CreateDynamicObject(2821, -1061.90540, -1203.39197, 114.23650, 0.00000, 0.00000, 10.00000, 65119);
1039 CreateDynamicObject(2829, -1064.06177, -1201.25806, 114.24480, 0.00000, 0.00000, 0.00000, 65119);
1040 CreateDynamicObject(2112, -1064.98047, -1204.54675, 113.63210, 0.00000, 0.00000, 45.00000, 65119);
1041 CreateDynamicObject(2120, -1064.49414, -1204.11487, 113.87490, 0.00000, 0.00000, 49.00000, 65119);
1042 CreateDynamicObject(2120, -1064.61194, -1205.08850, 113.87490, 0.00000, 0.00000, -48.00000, 65119);
1043 CreateDynamicObject(2120, -1066.13501, -1203.22449, 113.87490, 0.00000, 0.00000, 132.00000, 65119);
1044 CreateDynamicObject(1786, -1062.38293, -1211.90552, 113.72560, 0.00000, 0.00000, -135.00000, 65119);
1045 CreateDynamicObject(2314, -1062.06921, -1211.27478, 113.23470, 0.00000, 0.00000, -135.00000, 65119);
1046 CreateDynamicObject(1761, -1065.43958, -1208.65613, 113.23540, 0.00000, 0.00000, 25.00000, 65119);
1047 CreateDynamicObject(11734, -1062.05786, -1207.15149, 113.25250, 0.00000, 0.00000, -90.00000, 65119);
1048 CreateDynamicObject(2315, -1063.23267, -1210.16943, 113.23670, 0.00000, 0.00000, -135.00000, 65119);
1049 CreateDynamicObject(1711, -1066.38354, -1210.83850, 113.23360, 0.00000, 0.00000, 80.00000, 65119);
1050 CreateDynamicObject(2258, -1064.15747, -1212.97485, 115.52060, 0.00000, 0.00000, 180.00000, 65119);
1051 CreateDynamicObject(19560, -1064.61682, -1200.98779, 114.23600, 0.00000, 0.00000, 0.00000, 65119);
1052 CreateDynamicObject(2832, -1064.77563, -1204.60535, 114.03400, 0.00000, 0.00000, 0.00000, 65119);
1053 CreateDynamicObject(1544, -1065.07666, -1204.01367, 114.02770, 0.00000, 0.00000, 0.00000, 65119);
1054 CreateDynamicObject(2855, -1063.12695, -1210.00525, 113.72950, 0.00000, 0.00000, -135.00000, 65119);
1055 CreateDynamicObject(2852, -1063.66760, -1210.56787, 113.73156, 0.00000, 0.00000, 0.00000, 65119);
1056 CreateDynamicObject(19920, -1064.77356, -1211.22144, 113.73170, 0.00000, 0.00000, -130.00000, 65119);
1057 CreateDynamicObject(2690, -1064.89612, -1200.45020, 114.56720, 0.00000, 0.00000, 180.00000, 65119);
1058 CreateDynamicObject(11724, -1061.74670, -1209.55444, 113.75660, 0.00000, 0.00000, -90.00000, 65119);
1059 CreateDynamicObject(11725, -1061.85925, -1209.55994, 113.64190, 0.00000, 0.00000, -90.00000, 65119);
1060 CreateDynamicObject(1510, -1064.48840, -1211.01880, 113.74140, 0.00000, 0.00000, 0.00000, 65119);
1061 CreateDynamicObject(3027, -1064.50061, -1211.08289, 113.82940, 0.00000, 145.00000, 45.00000, 65119);
1062 CreateDynamicObject(19572, -1061.67761, -1208.45447, 113.23520, 0.00000, 0.00000, 0.00000, 65119);
1063 CreateDynamicObject(2283, -1061.47632, -1209.53564, 115.37890, 0.00000, 0.00000, -90.00000, 65119);
1064 CreateDynamicObject(1893, -1085.53381, -1188.59778, 112.94230, 0.00000, 0.00000, 0.00000, 65119);
1065 CreateDynamicObject(1575, -1081.05139, -1189.49768, 110.92470, 0.00000, -7.00000, -90.00000, 65119);
1066 CreateDynamicObject(957, -1063.24121, -1202.66736, 116.55600, 0.00000, 0.00000, 0.00000, 65119);
1067 CreateDynamicObject(957, -1063.24121, -1207.66736, 116.55600, 0.00000, 0.00000, 0.00000, 65119);
1068 CreateDynamicObject(957, -1063.24121, -1212.66736, 116.55600, 0.00000, 0.00000, 0.00000, 65119);
1069 CreateDynamicObject(957, -1066.24121, -1212.66736, 116.55600, 0.00000, 0.00000, 0.00000, 65119);
1070 CreateDynamicObject(957, -1066.24121, -1207.66736, 116.55600, 0.00000, 0.00000, 0.00000, 65119);
1071 CreateDynamicObject(957, -1066.24121, -1202.66736, 116.55600, 0.00000, 0.00000, 0.00000, 65119);
1072 CreateDynamicObject(2074, -1063.37683, -1209.74219, 119.77247, 0.00000, 0.00000, 0.00000, 65119);
1073 CreateDynamicObject(2074, -1066.15967, -1207.23669, 119.77247, 0.00000, 0.00000, 0.00000, 65119);
1074 CreateDynamicObject(2074, -1066.12231, -1210.54285, 119.77247, 0.00000, 0.00000, 0.00000, 65119);
1075 CreateDynamicObject(2074, -1063.38635, -1203.81470, 119.77247, 0.00000, 0.00000, 0.00000, 65119);
1076 CreateDynamicObject(2074, -1066.12244, -1203.81470, 119.77250, 0.00000, 0.00000, 0.00000, 65119);
1077 CreateDynamicObject(11734, -1067.48279, -1207.67407, 116.74910, 0.00000, 0.00000, 100.00000, 65119);
1078 CreateDynamicObject(2069, -1064.63586, -1212.80078, 113.24270, 0.00000, 0.00000, 0.00000, 65119);
1079 CreateDynamicObject(19820, -1061.64539, -1208.74036, 114.27310, 0.00000, 0.00000, 90.00000, 65119);
1080 CreateDynamicObject(957, -1064.66345, -1199.43579, 116.55600, 0.00000, 0.00000, 0.00000, 65119);
1081 CreateDynamicObject(3374, -1070.31604, -1200.56323, 113.73320, 0.00000, 0.00000, 90.00000, 65119);
1082 CreateDynamicObject(14875, -1070.02478, -1199.70239, 115.94660, 0.00000, 0.00000, 180.00000, 65119);
1083 CreateDynamicObject(14874, -1074.08350, -1191.61829, 115.45350, 0.00000, 0.00000, 0.00000, 65119);
1084 CreateDynamicObject(14875, -1075.81580, -1194.39563, 118.02580, 0.00000, 0.00000, -90.00000, 65119);
1085 CreateDynamicObject(14875, -1075.81494, -1196.19556, 118.02580, 0.00000, 0.00000, -90.00000, 65119);
1086 CreateDynamicObject(1502, -1064.89465, -1212.32129, 116.71950, 0.00000, 0.00000, 90.00000, 65119);
1087 CreateDynamicObject(2526, -1067.58130, -1210.10144, 116.73750, 0.00000, 0.00000, 90.00000, 65119);
1088 CreateDynamicObject(2524, -1067.61548, -1212.37463, 116.73570, 0.00000, 0.00000, 90.00000, 65119);
1089 CreateDynamicObject(2527, -1065.62634, -1209.84448, 116.72760, 0.00000, 0.00000, 0.00000, 65119);
1090 CreateDynamicObject(2528, -1067.03760, -1213.68799, 116.73650, 0.00000, 0.00000, 180.00000, 65119);
1091 CreateDynamicObject(11707, -1065.09326, -1210.10583, 117.87240, 0.00000, 0.00000, -90.00000, 65119);
1092 CreateDynamicObject(2272, -1065.51978, -1210.12549, 118.51960, 0.00000, 0.00000, -90.00000, 65119);
1093 CreateDynamicObject(1502, -1064.05469, -1206.19006, 116.71950, 0.00000, 0.00000, 0.00000, 65119);
1094 CreateDynamicObject(1502, -1065.45410, -1206.13196, 116.71950, 0.00000, 0.00000, 180.00000, 65119);
1095 CreateDynamicObject(2818, -1066.52258, -1210.55078, 116.72760, 0.00000, 0.00000, 0.00000, 65119);
1096 CreateDynamicObject(1742, -1065.59521, -1213.12390, 113.23230, 0.00000, 0.00000, 180.00000, 65119);
1097 CreateDynamicObject(2306, -1062.05054, -1202.29761, 116.73370, 0.00000, 0.00000, 0.00000, 65119);
1098 CreateDynamicObject(2299, -1064.23816, -1204.24048, 116.72860, 0.00000, 0.00000, 0.00000, 65119);
1099 CreateDynamicObject(2323, -1062.94519, -1204.57434, 116.72530, 0.00000, 0.00000, -90.00000, 65119);
1100 CreateDynamicObject(18870, -1062.40723, -1201.22131, 117.71870, 0.00000, 0.00000, -20.00000, 65119);
1101 CreateDynamicObject(2854, -1061.84937, -1204.60889, 117.73240, 0.00000, 0.00000, -80.00000, 65119);
1102 CreateDynamicObject(2843, -1063.43945, -1203.23425, 116.73180, 0.00000, 0.00000, 180.00000, 65119);
1103 CreateDynamicObject(2256, -1064.65100, -1204.19727, 119.18270, 0.00000, 0.00000, 90.00000, 65119);
1104 CreateDynamicObject(2566, -1068.63245, -1203.24109, 117.31380, 0.00000, 0.00000, 0.00000, 65119);
1105 CreateDynamicObject(2020, -1067.13013, -1205.07849, 116.73130, 0.00000, 0.00000, 90.00000, 65119);
1106 CreateDynamicObject(2268, -1065.76099, -1201.23096, 118.96520, 0.00000, 0.00000, 0.00000, 65119);
1107 CreateDynamicObject(2386, -1067.86780, -1205.04749, 118.12170, 0.00000, 0.00000, 0.00000, 65119);
1108 CreateDynamicObject(2251, -1067.88074, -1206.53003, 117.57850, 0.00000, 0.00000, 0.00000, 65119);
1109 CreateDynamicObject(2270, -1064.34558, -1210.03430, 119.09390, 0.00000, 0.00000, 90.00000, 65119);
1110 CreateDynamicObject(921, -1076.52454, -1190.79260, 116.20910, 0.00000, 0.00000, 0.00000, 65119);
1111 CreateDynamicObject(11706, -1067.72571, -1201.15198, 113.23510, 0.00000, 0.00000, 45.00000, 65119);
1112 CreateDynamicObject(11735, -1065.30054, -1200.34583, 113.23740, 0.00000, 0.00000, 0.00000, 65119);
1113 CreateDynamicObject(11735, -1065.46533, -1200.34924, 113.23740, 0.00000, 0.00000, 0.00000, 65119);
1114 CreateDynamicObject(11743, -1061.68799, -1204.42297, 114.23340, 0.00000, 0.00000, -90.00000, 65119);
1115 CreateDynamicObject(11721, -1064.66235, -1204.51343, 117.27710, 0.00000, 0.00000, 90.00000, 65119);
1116 CreateDynamicObject(11721, -1064.86536, -1204.57678, 117.27710, 0.00000, 0.00000, -90.00000, 65119);
1117 CreateDynamicObject(19573, -1061.85815, -1208.82520, 113.25050, 0.00000, 0.00000, -90.00000, 65119);
1118 CreateDynamicObject(2149, -1061.70605, -1203.94226, 114.38520, 0.00000, 0.00000, -90.00000, 65119);
1119 CreateDynamicObject(2228, -1074.44312, -1190.79456, 113.77800, 10.00000, 0.00000, 180.00000, 65119);
1120 CreateDynamicObject(19827, -1077.79260, -1190.67078, 114.21350, 0.00000, 0.00000, 0.00000, 65119);
1121 CreateDynamicObject(19827, -1065.51929, -1200.55908, 114.66680, 0.00000, 0.00000, 180.00000, 65119);
1122 CreateDynamicObject(19813, -1063.17175, -1200.55432, 113.45670, 0.00000, 0.00000, 180.00000, 65119);
1123 CreateDynamicObject(19827, -1061.43994, -1206.61487, 114.73150, 0.00000, 0.00000, -90.00000, 65119);
1124 CreateDynamicObject(19827, -1061.43994, -1206.43884, 114.73150, 0.00000, 0.00000, -90.00000, 65119);
1125 CreateDynamicObject(19813, -1061.94434, -1212.99597, 113.51120, 0.00000, 0.00000, 180.00000, 65119);
1126 CreateDynamicObject(19813, -1064.81946, -1213.00195, 113.45180, 0.00000, 0.00000, 180.00000, 65119);
1127 CreateDynamicObject(19813, -1061.44592, -1204.02710, 114.71570, 0.00000, 0.00000, -90.00000, 65119);
1128 CreateDynamicObject(19622, -1068.02820, -1200.07410, 113.94120, -10.00000, 0.00000, 90.00000, 65119);
1129 CreateDynamicObject(19921, -1075.16785, -1191.18677, 114.20940, 0.00000, 0.00000, 0.00000, 65119);
1130 CreateDynamicObject(19827, -1065.01379, -1210.57373, 118.23560, 0.00000, 0.00000, -90.00000, 65119);
1131 CreateDynamicObject(19813, -1062.67786, -1200.73730, 116.90833, 0.00000, 0.00000, 0.00000, 65119);
1132 CreateDynamicObject(19827, -1062.38110, -1206.07739, 118.15540, 0.00000, 0.00000, 180.00000, 65119);
1133 CreateDynamicObject(19827, -1067.11609, -1206.07739, 118.15540, 0.00000, 0.00000, 180.00000, 65119);
1134 CreateDynamicObject(19813, -1066.09241, -1200.73718, 116.88500, 0.00000, 0.00000, 0.00000, 65119);
1135 CreateDynamicObject(19827, -1063.51611, -1213.00183, 118.23260, 0.00000, 0.00000, 180.00000, 65119);
1136 CreateDynamicObject(2811, -1061.80298, -1206.60461, 116.70830, 0.00000, 0.00000, 0.00000, 65119);
1137 CreateDynamicObject(948, -1064.42285, -1212.57043, 116.72760, 0.00000, 0.00000, 0.00000, 65119);
1138 CreateDynamicObject(2274, -1064.73206, -1206.73865, 118.51960, 0.00000, 0.00000, 0.00000, 65119);
1139 CreateDynamicObject(948, -1067.87451, -1207.58057, 113.22910, 0.00000, 0.00000, 0.00000, 65119);
1140 CreateDynamicObject(1498, -1061.37695, -1206.22119, 113.22710, 0.00000, 0.00000, 90.00000, 65119);
1141 CreateDynamicObject(1498, -1068.18994, -1204.62061, 113.22710, 0.00000, 0.00000, -90.00000, 65119);
1142 CreateDynamicObject(1498, -1076.47644, -1200.62549, 113.22710, 0.00000, 0.00000, 0.00000, 65119);
1143 CreateDynamicObject(1497, -1061.40247, -1193.97327, 113.22710, 0.00000, 0.00000, -90.00000, 65119);
1144 CreateDynamicObject(1497, -1061.37451, -1196.98279, 113.22710, 0.00000, 0.00000, 90.00000, 65119);
1145 CreateDynamicObject(1497, -1068.16504, -1213.05383, 113.22710, 0.00000, 0.00000, 90.00000, 65119);
1146 CreateDynamicObject(1497, -1068.19263, -1210.04395, 113.22710, 0.00000, 0.00000, -90.00000, 65119);
1147 CreateDynamicObject(1497, -1079.92847, -1196.98279, 113.22710, 0.00000, 0.00000, 90.00000, 65119);
1148 CreateDynamicObject(1497, -1079.95642, -1193.97327, 113.22710, 0.00000, 0.00000, -90.00000, 65119);
1149 //(4)
1150 CreateObject(982, 1700.14490, -1862.91907, 13.26000, 0.00000, 0.00000, 0.00000);
1151 CreateObject(983, 1700.16418, -1846.97656, 13.24000, 0.00000, 0.00000, 0.00000);
1152 CreateObject(1215, 1699.54688, -1840.45508, 13.12000, 0.00000, 0.00000, 0.00000);
1153 CreateObject(1215, 1699.52942, -1838.33533, 13.12000, 0.00000, 0.00000, 0.00000);
1154 CreateObject(1215, 1699.56128, -1836.15381, 13.12000, 0.00000, 0.00000, 0.00000);
1155 CreateObject(640, 1703.21948, -1838.38098, 13.24930, 0.00000, 0.00000, -90.00000);
1156 CreateObject(640, 1708.46362, -1838.37061, 13.24930, 0.00000, 0.00000, -90.00000);
1157 CreateObject(640, 1713.81055, -1838.37549, 13.24930, 0.00000, 0.00000, -90.00000);
1158 CreateObject(640, 1719.17114, -1838.38611, 13.24930, 0.00000, 0.00000, -90.00000);
1159 CreateObject(640, 1724.53955, -1838.37903, 13.24930, 0.00000, 0.00000, -90.00000);
1160 CreateObject(640, 1729.90588, -1838.38647, 13.24930, 0.00000, 0.00000, -90.00000);
1161 CreateObject(640, 1735.27185, -1838.40198, 13.24930, 0.00000, 0.00000, -90.00000);
1162 CreateObject(1215, 1738.55200, -1840.49744, 13.12000, 0.00000, 0.00000, 0.00000);
1163 CreateObject(1215, 1738.50378, -1836.14172, 13.12000, 0.00000, 0.00000, 0.00000);
1164 CreateObject(1215, 1738.56482, -1838.39673, 13.12000, 0.00000, 0.00000, 0.00000);
1165 CreateObject(1215, 1741.22803, -1849.64917, 13.12000, 0.00000, 0.00000, 0.00000);
1166 CreateObject(1215, 1743.13049, -1849.66284, 13.12000, 0.00000, 0.00000, 0.00000);
1167 CreateObject(1215, 1744.95215, -1849.65234, 13.12000, 0.00000, 0.00000, 0.00000);
1168 CreateObject(982, 1760.29333, -1849.93457, 13.26000, 0.00000, 0.00000, -90.00000);
1169 CreateObject(982, 1785.90259, -1849.92078, 13.26000, 0.00000, 0.00000, -90.00000);
1170 CreateObject(982, 1798.71948, -1849.90540, 13.26000, 0.00000, 0.00000, -90.00000);
1171 CreateObject(982, 1785.97278, -1860.07019, 13.26000, 0.00000, 0.00000, -90.00000);
1172 CreateObject(982, 1793.86365, -1860.08606, 13.26000, 0.00000, 0.00000, -90.00000);
1173 CreateObject(967, 1808.16614, -1860.85779, 12.57594, 0.00000, 0.00000, 0.00000);
1174 CreateObject(966, 1808.13635, -1858.52930, 12.40610, 0.00000, 0.00000, -90.00000);
1175 CreateObject(968, 1808.12732, -1858.62927, 13.23600, 0.00000, -90.00000, -90.00000);
1176 CreateObject(1215, 1788.46375, -1865.81091, 12.94000, 0.00000, 0.00000, 0.00000);
1177 CreateObject(1215, 1788.49963, -1863.77185, 12.94000, 0.00000, 0.00000, 0.00000);
1178 CreateObject(1215, 1788.48926, -1861.95471, 12.94000, 0.00000, 0.00000, 0.00000);
1179 CreateObject(640, 1769.79688, -1860.50903, 13.24930, 0.00000, 0.00000, -90.00000);
1180 CreateObject(640, 1763.36316, -1860.49414, 13.24930, 0.00000, 0.00000, -90.00000);
1181 CreateObject(640, 1757.04932, -1860.50342, 13.24930, 0.00000, 0.00000, -90.00000);
1182 CreateObject(640, 1750.63513, -1860.46985, 13.24930, 0.00000, 0.00000, -90.00000);
1183 CreateObject(640, 1744.14514, -1860.50403, 13.24930, 0.00000, 0.00000, -90.00000);
1184 CreateObject(640, 1737.93872, -1860.48474, 13.24930, 0.00000, 0.00000, -90.00000);
1185 CreateObject(1280, 1725.90625, -1923.50000, 12.96094, 356.85840, 0.00000, -3.14159);
1186 CreateObject(983, 1715.43384, -1933.06824, 13.24930, 0.00000, 0.00000, -90.00000);
1187 CreateObject(974, 1777.98938, -1941.60730, 12.66000, 0.00000, 0.00000, 0.00000);
1188 CreateObject(974, 1771.30640, -1941.61682, 12.66000, 0.00000, 0.00000, 0.00000);
1189 CreateObject(974, 1764.60229, -1941.59668, 12.66000, 0.00000, 0.00000, 0.00000);
1190 CreateObject(974, 1757.91870, -1941.62170, 12.66000, 0.00000, 0.00000, 0.00000);
1191 CreateObject(966, 1810.35388, -1892.84094, 12.40610, 0.00000, 0.00000, -90.00000);
1192 CreateObject(968, 1810.35754, -1893.11548, 13.23600, 0.00000, -90.00000, -90.00000);
1193 CreateObject(967, 1810.56824, -1894.93896, 12.41590, 0.00000, 0.00000, 0.00000);
1194 CreateObject(983, 1811.09253, -1898.96887, 13.27380, 0.00000, 0.00000, 0.00000);
1195 CreateObject(983, 1810.36487, -1882.66907, 13.09380, 0.00000, 0.00000, 0.00000);
1196 CreateObject(982, 1787.14697, -1935.66138, 13.26000, 0.00000, 0.00000, -90.00000);
1197 CreateObject(982, 1793.97253, -1935.67859, 13.26000, 0.00000, 0.00000, -90.00000);
1198 CreateObject(982, 1806.77051, -1922.85693, 13.26000, 0.00000, 0.00000, 0.00000);
1199 CreateObject(982, 1806.76758, -1913.23657, 13.26000, 0.00000, 0.00000, 0.00000);
1200 CreateObject(982, 1774.31555, -1922.85229, 13.26000, 0.00000, 0.00000, 0.00000);
1201 CreateObject(983, 1774.32153, -1906.85986, 13.26000, 0.00000, 0.00000, 0.00000);
1202 CreateObject(983, 1774.32068, -1897.27490, 13.26000, 0.00000, 0.00000, 0.00000);
1203 CreateObject(983, 1774.31348, -1887.71399, 13.26000, 0.00000, 0.00000, 0.00000);
1204 CreateObject(1215, 1774.14075, -1902.15466, 13.11350, 0.00000, 0.00000, 0.00000);
1205 CreateObject(1215, 1774.15637, -1892.48401, 13.11350, 0.00000, 0.00000, 0.00000);
1206 CreateObject(640, 1770.55139, -1892.38037, 13.28000, 0.00000, 0.00000, -90.00000);
1207 CreateObject(640, 1770.56567, -1902.21692, 13.28000, 0.00000, 0.00000, -90.00000);
1208 CreateObject(640, 1773.95520, -1897.23645, 13.28000, 0.00000, 0.00000, 0.00000);
1209 CreateObject(9833, 1770.63843, -1897.28357, 14.00000, 0.00000, 0.00000, 0.00000);
1210 CreateObject(1280, 1766.81970, -1906.76025, 12.98000, 0.00000, 0.00000, -90.00000);
1211 CreateObject(1280, 1758.93445, -1906.72034, 12.98000, 0.00000, 0.00000, -90.00000);
1212 CreateObject(1432, 1754.00684, -1888.06372, 12.67840, 0.00000, 0.00000, 0.00000);
1213 CreateObject(1432, 1758.50061, -1886.76843, 12.67840, 0.00000, 0.00000, -62.00000);
1214 CreateObject(1432, 1765.13049, -1886.23096, 12.67840, 0.00000, 0.00000, 113.00000);
1215 CreateObject(1432, 1771.05042, -1886.46863, 12.67840, 0.00000, 0.00000, -229.00000);
1216 CreateObject(1281, 1764.20862, -1924.33081, 13.38000, 0.00000, 0.00000, 0.00000);
1217 CreateObject(1281, 1764.21375, -1931.75354, 13.38000, 0.00000, 0.00000, 0.00000);
1218 CreateObject(1281, 1764.20447, -1916.03796, 13.38000, 0.00000, 0.00000, 0.00000);
1219 CreateObject(1215, 1808.78625, -1900.57349, 13.11350, 0.00000, 0.00000, 0.00000);
1220 //(5)
1221 CreateObject(19122, -2431.80029, 518.25677, 29.96620, 0.00000, 0.00000, 0.00000);
1222 CreateObject(19122, -2453.10254, 536.91962, 29.96620, 0.00000, 0.00000, 0.00000);
1223 CreateObject(19122, -2428.30786, 521.32843, 29.96620, 0.00000, 0.00000, 0.00000);
1224 CreateObject(19122, -2424.99048, 524.12311, 29.96620, 0.00000, 0.00000, 0.00000);
1225 CreateObject(19122, -2422.17969, 527.15039, 29.96620, 0.00000, 0.00000, 0.00000);
1226 CreateObject(19122, -2419.87231, 530.15436, 29.96620, 0.00000, 0.00000, 0.00000);
1227 CreateObject(19122, -2418.24365, 533.57031, 29.96420, 0.00000, 0.00000, 0.00000);
1228 CreateObject(19122, -2417.33862, 536.66968, 29.94020, 0.00000, 0.00000, 0.00000);
1229 CreateObject(19122, -2417.18384, 540.11188, 29.94020, 0.00000, 0.00000, 0.00000);
1230 CreateObject(18652, -2444.45068, 516.33789, 32.82670, 0.00000, 0.00000, 90.00000);
1231 CreateObject(18652, -2442.44458, 516.33789, 32.82670, 0.00000, 0.00000, 90.00000);
1232 CreateObject(18652, -2446.45679, 516.33789, 32.82670, 0.00000, 0.00000, 90.00000);
1233 CreateObject(18652, -2440.45557, 516.34857, 32.82670, 0.00000, 0.00000, 90.00000);
1234 CreateObject(1229, -2428.70288, 499.29880, 30.51370, 0.00000, 0.00000, 180.00000);
1235 CreateObject(19949, -2438.99512, 496.89209, 29.09930, 0.00000, 0.00000, 164.00000);
1236 //(6)
1237 new Chao= CreateObject(3997, 1479.33594, -1802.28906, 12.54690, 0.00000, 0.00000, 0.00000);
1238 SetObjectMaterial(Chao, 2, 10412, "hotel1", "ws_stationfloor", 0xFFFFFFFF);
1239 SetObjectMaterial(Chao, 3, 3919, "librest", "DinerFloor", 0xFFFFFFFF);
1240 SetObjectMaterial(Chao, 1, 4824, "griffobs_las", "sjmlahus28", 0xFFFFFFFF);
1241 new Base= CreateObject(4824, 1481.04053, -1766.57092, 15.00960, 0.00000, 0.00000, 90.00000);
1242 SetObjectMaterial(Base, 0, 4866, "airprtrunway_las", "ws_carpark2", 0xFF9C9C9C);
1243 SetObjectMaterial(Base, 2, 8671, "vegassland62", "ws_stonewall", 0xFFFFFFFF);
1244 new Chao1[3];
1245 Chao1[0]= CreateObject(18981, 1503.63782, -1792.73804, 19.59140, 0.00000, 90.00000, 0.00000);
1246 Chao1[1]= CreateObject(18981, 1478.64282, -1792.73254, 19.59030, 0.00000, 90.00000, 0.00000);
1247 Chao1[2]= CreateObject(18981, 1458.16760, -1792.74072, 19.58840, 0.00000, 90.00000, 0.00000);
1248 for(new i = 0; i != 3; i++) SetObjectMaterial(Chao1[i],0,10412, "hotel1", "ws_stationfloor", 0xFFFFFFFF);
1249 CreateObject(18981, 1446.08081, -1779.28223, 4.92310, 0.00000, 0.00000, 360.00000);
1250 CreateObject(18981, 1446.08508, -1792.71631, 7.46030, 0.00000, 0.00000, 360.00000);
1251 CreateObject(18981, 1515.62415, -1779.69214, 5.25520, 0.00000, 0.00000, 360.00000);
1252 CreateObject(18981, 1515.64294, -1792.73315, 7.58480, 0.00000, 0.00000, 360.00000);
1253 CreateObject(18981, 1503.52014, -1780.54102, 7.58480, 0.00000, 0.00000, 90.00000);
1254 CreateObject(18981, 1482.20532, -1785.10437, 7.54480, 0.00000, 0.00000, 90.00000);
1255 CreateObject(18981, 1458.99194, -1780.19373, 7.54480, 0.00000, 0.00000, 90.00000);
1256 CreateObject(18981, 1458.87537, -1804.67590, 7.56030, 0.00000, 0.00000, 90.00000);
1257 CreateObject(18981, 1502.69409, -1804.72498, 7.56030, 0.00000, 0.00000, 90.00000);
1258 CreateObject(980, 1486.98438, -1804.88904, 15.43190, 0.00000, 0.00000, 0.00000);
1259 new Pref[6];
1260 Pref[0]= CreateObject(10844, 1502.47742, -1793.17566, 23.03080, 0.00000, 0.00000, 7.00000);
1261 Pref[1]= CreateObject(10844, 1462.55640, -1793.38916, 23.03080, 0.00000, 0.00000, -7.00000);
1262 Pref[2]= CreateObject(10844, 1462.55640, -1793.38916, 29.10360, 0.00000, 0.00000, -7.00000);
1263 Pref[3]= CreateObject(10844, 1462.55640, -1793.38916, 35.11470, 0.00000, 0.00000, -7.00000);
1264 Pref[4]= CreateObject(10844, 1502.45752, -1793.17749, 29.10360, 0.00000, 0.00000, 7.00000);
1265 Pref[5]= CreateObject(10844, 1502.47742, -1793.17566, 35.11470, 0.00000, 0.00000, 7.00000);
1266 for(new i = 0; i != 6; i++) SetObjectMaterial(Pref[i],2,3979, "civic01_lan", "sl_laglasswall2", 0xFF2F4F4F);
1267 for(new i = 0; i != 6; i++) SetObjectMaterial(Pref[i],1,3979, "civic01_lan", "sl_laglasswall2", 0xFF2F4F4F);
1268 for(new i = 0; i != 6; i++) SetObjectMaterial(Pref[i],3,6338, "sunset01_law2", "concpanel_la", 0xFF000000);
1269 for(new i = 0; i != 6; i++) SetObjectMaterial(Pref[i],0, 11301, "carshow_sfse", "ws_carpark2", 0xFF4F4F4F);
1270 new Preto[18];
1271 Preto[0]= CreateObject(18765, 1480.78247, -1790.24231, 22.53707, 0.00000, 0.00000, 0.00000);
1272 Preto[1]= CreateObject(18765, 1479.50415, -1790.20801, 22.52240, 0.00000, 0.00000, 357.91891);
1273 Preto[2]= CreateObject(18765, 1480.78247, -1790.24231, 27.46670, 0.00000, 0.00000, 0.00000);
1274 Preto[3]= CreateObject(18765, 1480.78247, -1790.24231, 32.35371, 0.00000, 0.00000, 0.00000);
1275 Preto[4]= CreateObject(18765, 1480.78247, -1790.24231, 35.78959, 0.00000, 0.00000, 0.00000);
1276 Preto[5]= CreateObject(18765, 1479.50415, -1790.20801, 27.48020, 0.00000, 0.00000, 357.91891);
1277 Preto[6]= CreateObject(18765, 1479.50415, -1790.20801, 32.41580, 0.00000, 0.00000, 357.91891);
1278 Preto[7]= CreateObject(18765, 1479.50415, -1790.22803, 35.77630, 0.00000, 0.00000, 357.91891);
1279 Preto[8]= CreateObject(18765, 1477.92456, -1799.11475, 22.53710, 0.00000, 0.00000, 0.00000);
1280 Preto[9]= CreateObject(18765, 1483.12048, -1799.24817, 22.53710, 0.00000, 0.00000, 359.20981);
1281 Preto[10]= CreateObject(18765, 1477.92456, -1799.11475, 27.30650, 0.00000, 0.00000, 0.00000);
1282 Preto[11]= CreateObject(18765, 1483.12036, -1799.22815, 27.20640, 0.00000, 0.00000, 359.20981);
1283 Preto[12]= CreateObject(18765, 1477.92456, -1799.11475, 32.03970, 0.00000, 0.00000, 0.00000);
1284 Preto[13]= CreateObject(18765, 1483.12036, -1799.22815, 32.03500, 0.00000, 0.00000, 359.20981);
1285 Preto[14]= CreateObject(18765, 1483.12036, -1799.20813, 35.76700, 0.00000, 0.00000, 359.20981);
1286 Preto[15]= CreateObject(18765, 1477.92456, -1799.11475, 35.76940, 0.08000, 0.00000, 0.00000);
1287 Preto[16]= CreateObject(18762, 1486.30872, -1792.11523, 37.75330, 0.00000, 90.00000, 96.94466);
1288 Preto[17]= CreateObject(18762, 1485.63635, -1788.96130, 37.76920, 0.00000, 90.00000, 90.00000);
1289 for(new i = 0; i != 18; i++) SetObjectMaterial(Preto[i],0, 11301, "carshow_sfse", "ws_carpark2", 0xFF4F4F4F);
1290 new Grama= CreateObject(19456, 1509.43054, -1761.05005, 12.48190, 0.00000, 90.00000, 90.00000);
1291 SetObjectMaterial(Grama, 0, 4824, "griffobs_las", "sjmlahus28", 0xFFFFFFFF);
1292 new Grama1= CreateObject(19456, 1452.65564, -1761.04211, 12.48190, 0.00000, 90.00000, 90.00000);
1293 SetObjectMaterial(Grama1, 0, 4824, "griffobs_las", "sjmlahus28", 0xFFFFFFFF);
1294 new Branco[13];
1295 Branco[0]= CreateObject(18762, 1483.12561, -1784.78748, 37.90150, 0.00000, 90.00000, 0.00000);
1296 Branco[1]= CreateObject(18762, 1478.28125, -1784.74780, 37.90150, 0.00000, 90.00000, 0.00000);
1297 Branco[2]= CreateObject(18762, 1476.39124, -1784.63867, 37.88150, 0.00000, 90.00000, 0.00000);
1298 Branco[3]= CreateObject(18762, 1483.12988, -1784.76794, 31.97458, 0.00000, 90.00000, 0.00000);
1299 Branco[4]= CreateObject(18762, 1478.28125, -1784.74780, 31.98410, 0.00000, 90.00000, 0.00000);
1300 Branco[5]= CreateObject(18762, 1476.3912, -1784.7386, 31.979800, 0.00000, 90.00000, 0.00000);
1301 Branco[6]= CreateObject(18762, 1476.3912, -1784.7386, 25.7402000, 0.00000, 90.00000, 0.00000);
1302 Branco[7]= CreateObject(18762, 1478.28125, -1784.74780, 25.74570, 0.00000, 90.00000, 0.00000);
1303 Branco[8]= CreateObject(18762, 1483.12561, -1784.78748, 25.74980, 0.00000, 90.00000, 0.00000);
1304 Branco[9]= CreateObject(18980, 1474.89636, -1784.57727, 25.85280, 0.00000, 0.00000, 0.00000);
1305 Branco[10]= CreateObject(18980, 1474.19592, -1784.57202, 25.85280, 0.00000, 0.00000, 0.00000);
1306 Branco[11]= CreateObject(18980, 1485.89722, -1784.59766, 25.85280, 0.00000, 0.00000, 0.00000);
1307 Branco[12]= CreateObject(18980, 1486.73218, -1784.60828, 25.85280, 0.00000, 0.00000, 0.00000);
1308 for(new i = 0; i != 13; i++) SetObjectMaterial(Branco[i],0, 6338, "sunset01_law2", "concpanel_la", 0xFFFFFFFF);
1309 new Telhado[12];
1310 Telhado[0]= CreateObject(19700, 1467.82129, -1796.90857, 38.16210, 0.00000, 0.00000, 352.81699);
1311 Telhado[1]= CreateObject(19700, 1455.74841, -1795.57715, 38.10270, 0.00000, 0.00000, 352.81699);
1312 Telhado[2]= CreateObject(19700, 1452.74072, -1795.00024, 38.14270, 0.00000, 0.00000, 352.81699);
1313 Telhado[3]= CreateObject(19700, 1453.49438, -1788.85059, 38.12270, 0.00000, 0.00000, 352.81699);
1314 Telhado[4]= CreateObject(19700, 1465.24707, -1790.40686, 38.12270, 0.00000, 0.00000, 352.81699);
1315 Telhado[5]= CreateObject(19700, 1468.52747, -1790.93018, 38.18270, 0.00000, 0.00000, 352.81699);
1316 Telhado[6]= CreateObject(19700, 1493.73804, -1797.01965, 38.14290, 0.00000, 0.00000, 7.00000);
1317 Telhado[7]= CreateObject(19700, 1492.97815, -1791.04773, 38.12270, 0.00000, 0.00000, 7.00000);
1318 Telhado[8]= CreateObject(19700, 1506.09619, -1795.72681, 38.12270, 0.00000, 0.00000, 7.00000);
1319 Telhado[9]= CreateObject(19700, 1505.33789, -1789.30518, 38.14270, 0.00000, 0.00000, 7.00000);
1320 Telhado[10]= CreateObject(19700, 1508.64307, -1795.25269, 38.10270, 0.00000, 0.00000, 7.00000);
1321 Telhado[11]= CreateObject(19700, 1507.82031, -1788.90173, 38.08270, 0.00000, 0.00000, 7.00000);
1322 for(new i = 0; i != 11; i++) SetObjectMaterial(Telhado[i],0, 6863,"vgsnbuild07","luxorwall01_128");
1323 CreateObject(18764, 1470.14221, -1783.10510, 11.96920, 0.00000, 0.00000, 0.00000);
1324 CreateObject(18764, 1470.14221, -1783.08508, 16.85780, 0.00000, 0.00000, 0.00000);
1325 CreateObject(18764, 1492.19604, -1782.99194, 11.96920, 0.00000, 0.00000, 0.00000);
1326 CreateObject(18764, 1492.19604, -1782.99194, 16.71254, 0.00000, 0.00000, 0.00000);
1327 new Vidro[5];
1328 Vidro[0]= CreateObject(3851, 1480.18335, -1784.33789, 36.10717, 0.00000, 0.00000, 90.00000);
1329 Vidro[1]= CreateObject(3851, 1480.16382, -1784.33362, 32.14190, 0.00000, 0.00000, 90.00000);
1330 Vidro[2]= CreateObject(3851, 1480.16382, -1784.33362, 28.18600, 0.00000, 0.00000, 90.00000);
1331 Vidro[3]= CreateObject(3851, 1480.16382, -1784.33362, 23.36390, 0.00000, 0.00000, 90.00000);
1332 Vidro[4]= CreateObject(3851, 1480.16382, -1784.33362, 19.40240, 0.00000, 0.00000, 90.00000);
1333 for(new i = 0; i != 5; i++) SetObjectMaterial(Vidro[i],0, 3979, "civic01_lan", "sl_laglasswall2", 0xFF2F4F4F);
1334 new Porta= CreateObject(1557, 1479.18396, -1784.36694, 20.08440, 0.00000, 0.00000, 0.00000);
1335 SetObjectMaterial(Porta, 0, 9908, "smallertxd", "ws_glassnbrassdoor", 0xFFFFFFFF);
1336 new Porta1= CreateObject(1557, 1482.17114, -1784.39856, 20.08440, 0.00000, 0.00000, 180.00000);
1337 SetObjectMaterial(Porta1, 0, 9908, "smallertxd", "ws_glassnbrassdoor", 0xFFFFFFFF);
1338 CreateObject(673, 1486.71399, -1771.41028, 15.53436, 0.00000, 0.00000, 0.00000);
1339 CreateObject(673, 1475.71863, -1771.35767, 15.59506, 0.00000, 0.00000, 0.00000);
1340 CreateObject(673, 1475.71863, -1758.79907, 11.08746, 0.00000, 0.00000, 0.63100);
1341 CreateObject(673, 1499.21570, -1771.41028, 15.40916, 0.00000, 0.00000, 0.00000);
1342 CreateObject(673, 1464.15601, -1771.35767, 15.70887, 0.00000, 0.00000, 0.00000);
1343 new Flor[6];
1344 Flor[0]= CreateObject(3660, 1498.06604, -1767.01233, 17.70060, 0.00000, 0.00000, 0.00000);
1345 Flor[1]= CreateObject(3660, 1504.48279, -1766.91040, 12.61516, 0.00000, -180.00000, 0.00000);
1346 Flor[2]= CreateObject(3660, 1504.13501, -1766.97107, 17.70060, 0.00000, 0.00000, 0.00000);
1347 Flor[3]= CreateObject(3660, 1463.95129, -1767.48999, 17.70060, 0.00000, 0.00000, 180.00000);
1348 Flor[5]= CreateObject(3660, 1457.19128, -1766.92517, 12.61516, 0.00000, -180.00000, 0.00000);
1349 Flor[5]= CreateObject(3660, 1457.31531, -1767.52954, 17.70060, 0.00000, 0.00000, 180.00000);
1350 for(new i = 0; i != 6; i++) SetObjectMaterial(Flor[i],0, 8671, "vegassland62", "ws_stonewall", 0xFFFFFFFF);
1351 new Muro[8];
1352 Muro[0]= CreateObject(984, 1490.82410, -1777.21729, 20.39960, 180.00000, 0.00000, 90.00000);
1353 Muro[1]= CreateObject(984, 1502.01819, -1777.23669, 20.39960, 180.00000, 0.00000, 90.00000);
1354 Muro[2]= CreateObject(984, 1471.11584, -1777.21729, 20.39960, 180.00000, 0.00000, 90.00000);
1355 Muro[3]= CreateObject(984, 1458.33936, -1777.26392, 20.39960, 180.00000, 0.00000, 90.00000);
1356 Muro[4]= CreateObject(984, 1477.53210, -1777.90967, 14.63040, 90.00000, 0.00000, 180.00000);
1357 Muro[5]= CreateObject(984, 1477.51746, -1779.17285, 14.63040, 90.00000, 0.00000, 180.00000);
1358 Muro[6]= CreateObject(984, 1484.45361, -1777.94971, 14.63040, 90.00000, 0.00000, 180.00000);
1359 Muro[7]= CreateObject(984, 1484.44995, -1779.16602, 14.63040, 90.00000, 0.00000, 180.00000);
1360 for(new i = 0; i != 8; i++) SetObjectMaterial(Muro[i],0, 6873, "vgnshambild1", "fitzwallvgn3_256", 0xFFFFFFFF);
1361 for(new i = 0; i != 8; i++) SetObjectMaterial(Muro[i],9, 6873, "vgnshambild1", "fitzwallvgn3_256", 0xFFFFFFFF);
1362 CreateObject(1256, 1486.79700, -1778.71509, 20.72520, 0.00000, 0.00000, 90.00000);
1363 CreateObject(1256, 1496.18225, -1778.71509, 20.72520, 0.00000, 0.00000, 90.00000);
1364 CreateObject(1256, 1505.47119, -1778.71509, 20.72520, 0.00000, 0.00000, 90.00000);
1365 CreateObject(1256, 1475.30969, -1778.71509, 20.72520, 0.00000, 0.00000, 90.00000);
1366 CreateObject(1256, 1464.59863, -1778.71509, 20.72520, 0.00000, 0.00000, 90.00000);
1367 CreateObject(1256, 1456.03699, -1778.71509, 20.72520, 0.00000, 0.00000, 90.00000);
1368 CreateObject(1235, 1477.13733, -1777.64209, 20.60370, 0.00000, 0.00000, 0.00000);
1369 CreateObject(1235, 1484.82690, -1777.61755, 20.60370, 0.00000, 0.00000, 0.00000);
1370 CreateObject(1300, 1470.03467, -1778.74023, 20.42730, 0.00000, 0.00000, 0.00000);
1371 CreateObject(1300, 1460.21021, -1778.74023, 20.42730, 0.00000, 0.00000, 0.00000);
1372 CreateObject(1300, 1490.66919, -1778.74023, 20.42730, 0.00000, 0.00000, 0.00000);
1373 CreateObject(1300, 1501.17468, -1778.74023, 20.42730, 0.00000, 0.00000, 0.00000);
1374 CreateObject(980, 1475.47913, -1804.88904, 15.43190, 0.00000, 0.00000, 0.00000);
1375 new Detran= CreateObject(4005, 1534.20935, -1780.47705, 21.04080, 0.00000, 0.00000, 0.00000);
1376 SetObjectMaterial(Detran, 0, 6338, "sunset01_law2", "concpanel_la", 0xFFFFFFFF);
1377 SetObjectMaterial(Detran, 2, 4866, "airprtrunway_las", "ws_carpark2", 0xFF9C9C9C);
1378 SetObjectMaterial(Detran, 1, 5870, "sunst18_lawn", "laspowrec2", 0xFF8A0000);
1379 new Detran1= CreateObject(18766, 1542.66504, -1788.81824, 12.53040, 0.00000, 90.00000, 105.00000);
1380 SetObjectMaterial(Detran1, 0, 4866, "airprtrunway_las", "ws_carpark2", 0xFF9C9C9C);
1381 new PDetran= CreateObject(1557, 1543.49133, -1790.14246, 13.03670, 0.00000, 0.00000, 105.00000);
1382 SetObjectMaterial(PDetran, 0, 9908, "smallertxd", "ws_glassnbrassdoor", 0xFFFFFFFF);
1383 new PDetran1= CreateObject(1557, 1542.69568, -1787.23901, 13.03670, 0.00000, 0.00000, 285.00000);
1384 SetObjectMaterial(PDetran1, 0, 9908, "smallertxd", "ws_glassnbrassdoor", 0xFFFFFFFF);
1385 CreateObject(673, 1486.70825, -1758.43762, 11.61329, 0.00000, 0.00000, 0.00000);
1386 CreateObject(19545, 1455.53369, -1773.37634, 12.55660, 0.00000, 0.00000, 0.00000);
1387 CreateObject(19545, 1470.43787, -1773.34387, 12.55660, 0.00000, 0.00000, 0.00000);
1388 CreateObject(19545, 1485.41980, -1773.28040, 12.57660, 0.00000, 0.00000, 0.00000);
1389 CreateObject(19545, 1500.28638, -1773.25793, 12.55660, 0.00000, 0.00000, 0.00000);
1390 CreateObject(19545, 1506.85425, -1773.26587, 12.55790, 0.00000, 0.00000, 0.00000);
1391 CreateObject(7664, 1428.79333, -1771.96838, 14.01250, 0.00000, 0.00000, 0.00000);
1392 CreateObject(7664, 1529.59351, -1772.03003, 14.01250, 0.00000, 0.00000, 270.00000);
1393 CreateObject(18762, 1499.17725, -1742.50549, 11.34440, 0.00000, 0.00000, 0.00000);
1394 CreateObject(18762, 1459.18445, -1742.43958, 11.34440, 0.00000, 0.00000, 0.00000);
1395 CreateObject(1232, 1499.18848, -1742.54919, 11.51950, 0.00000, 0.00000, 0.00000);
1396 CreateObject(1232, 1459.23364, -1742.49292, 11.50119, 0.00000, 0.00000, 0.00000);
1397 CreateObject(970, 1491.27905, -1741.95557, 13.05320, 0.00000, 0.00000, 0.00000);
1398 CreateObject(970, 1480.26917, -1742.01453, 13.05320, 0.00000, 0.00000, 0.00000);
1399 CreateObject(970, 1465.34778, -1741.93872, 13.05320, 0.00000, 0.00000, 0.00000);
1400 CreateObject(19543, 1438.14246, -1774.01807, 12.57760, 0.00000, 0.00000, 0.00000);
1401 CreateObject(19543, 1423.16040, -1774.01392, 12.57760, 0.00000, 0.00000, 0.00000);
1402 CreateObject(19543, 1408.19324, -1774.01428, 12.57760, 0.00000, 0.00000, 0.00000);
1403 CreateObject(19543, 1406.60339, -1774.01855, 12.57700, 0.00000, 0.00000, 0.00000);
1404 CreateObject(11413, 1424.56055, -1780.83093, 14.20769, 0.00000, 0.00000, 0.00000);
1405 CreateObject(8623, 1441.16785, -1800.29199, 12.97045, 0.00000, 0.00000, 322.77905);
1406 CreateObject(8623, 1406.17969, -1799.45496, 12.97040, 0.00000, 0.00000, -322.77911);
1407 CreateObject(6965, 1423.38269, -1782.22864, 16.24350, 0.00000, 0.00000, 0.00000);
1408 CreateObject(18762, 1559.12695, -1802.13440, 11.32750, 0.00000, 0.00000, 0.00000);
1409 CreateObject(1232, 1559.15601, -1802.36865, 11.55920, 0.00000, 0.00000, 0.00000);
1410 //(7)
1411 //Objects////////////////////////////////////////////////////////////////////////////////////////////////////////
1412 new tmpobjid;
1413 tmpobjid = CreateDynamicObject(19377, 1222.543945, 139.735290, 19.483747, 0.000000, 0.000000, 66.500007, -1, -1, -1, 400.00, 400.00);
1414 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1415 tmpobjid = CreateDynamicObject(19377, 1213.711425, 143.575256, 19.483747, 0.000000, 0.000000, 66.500007, -1, -1, -1, 400.00, 400.00);
1416 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1417 tmpobjid = CreateDynamicObject(19377, 1204.889038, 147.411270, 19.483747, 0.000000, 0.000000, 66.500007, -1, -1, -1, 400.00, 400.00);
1418 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1419 tmpobjid = CreateDynamicObject(19377, 1201.505371, 148.882690, 19.483747, 0.000000, 0.000000, 66.500007, -1, -1, -1, 400.00, 400.00);
1420 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1421 tmpobjid = CreateDynamicObject(19377, 1240.334838, 168.737228, 15.193748, 0.000014, -0.000017, 156.499816, -1, -1, -1, 400.00, 400.00);
1422 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1423 tmpobjid = CreateDynamicObject(19377, 1236.490356, 159.895538, 15.193743, 0.000014, -0.000017, 156.499816, -1, -1, -1, 400.00, 400.00);
1424 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1425 tmpobjid = CreateDynamicObject(19377, 1232.654296, 151.073150, 15.193748, 0.000014, -0.000017, 156.499816, -1, -1, -1, 400.00, 400.00);
1426 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1427 tmpobjid = CreateDynamicObject(19377, 1228.802856, 142.249694, 19.483747, 0.000009, -0.000003, 156.499908, -1, -1, -1, 400.00, 400.00);
1428 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1429 tmpobjid = CreateDynamicObject(19377, 1210.583496, 181.750518, 19.483747, 0.000037, -0.000066, 156.599502, -1, -1, -1, 400.00, 400.00);
1430 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1431 tmpobjid = CreateDynamicObject(19377, 1206.766845, 172.929672, 19.483747, 0.000037, -0.000066, 156.599502, -1, -1, -1, 400.00, 400.00);
1432 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1433 tmpobjid = CreateDynamicObject(19377, 1202.942138, 164.091415, 19.483747, 0.000037, -0.000066, 156.599502, -1, -1, -1, 400.00, 400.00);
1434 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1435 tmpobjid = CreateDynamicObject(19377, 1199.110107, 155.270431, 19.483747, 0.000029, -0.000050, 156.599639, -1, -1, -1, 400.00, 400.00);
1436 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1437 tmpobjid = CreateDynamicObject(19440, 1241.462402, 173.416213, 22.973400, 0.000048, 0.000019, 66.299957, -1, -1, -1, 400.00, 400.00);
1438 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1439 tmpobjid = CreateDynamicObject(19440, 1241.462402, 173.416213, 19.523393, 0.000048, 0.000020, 66.299957, -1, -1, -1, 400.00, 400.00);
1440 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1441 tmpobjid = CreateDynamicObject(19440, 1239.136108, 174.437240, 23.913404, 89.999992, 336.334136, -90.034049, -1, -1, -1, 400.00, 400.00);
1442 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1443 tmpobjid = CreateDynamicObject(19440, 1235.948608, 175.836044, 23.913404, 89.999992, 336.334136, -90.034049, -1, -1, -1, 400.00, 400.00);
1444 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1445 tmpobjid = CreateDynamicObject(19440, 1233.643554, 176.848815, 22.963399, 0.000048, 0.000020, 66.299957, -1, -1, -1, 400.00, 400.00);
1446 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1447 tmpobjid = CreateDynamicObject(19440, 1233.643554, 176.848815, 19.503398, 0.000048, 0.000020, 66.299957, -1, -1, -1, 400.00, 400.00);
1448 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1449 tmpobjid = CreateDynamicObject(19440, 1231.315185, 177.869857, 23.913404, 89.999992, 336.334136, -90.034049, -1, -1, -1, 400.00, 400.00);
1450 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1451 tmpobjid = CreateDynamicObject(19440, 1228.146240, 179.260574, 23.913404, 89.999992, 336.334136, -90.034049, -1, -1, -1, 400.00, 400.00);
1452 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1453 tmpobjid = CreateDynamicObject(19440, 1225.841918, 180.273468, 22.963399, 0.000048, 0.000020, 66.299957, -1, -1, -1, 400.00, 400.00);
1454 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1455 tmpobjid = CreateDynamicObject(19440, 1225.841918, 180.273468, 19.463396, 0.000048, 0.000020, 66.299957, -1, -1, -1, 400.00, 400.00);
1456 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1457 tmpobjid = CreateDynamicObject(19440, 1223.521850, 181.290405, 23.913404, 89.999992, 336.334136, -90.034049, -1, -1, -1, 400.00, 400.00);
1458 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1459 tmpobjid = CreateDynamicObject(19440, 1220.325927, 182.693206, 23.913404, 89.999992, 336.334136, -90.034049, -1, -1, -1, 400.00, 400.00);
1460 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1461 tmpobjid = CreateDynamicObject(19440, 1223.521850, 181.290405, 19.553369, 89.999992, 336.313323, -90.013168, -1, -1, -1, 400.00, 400.00);
1462 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1463 tmpobjid = CreateDynamicObject(19440, 1220.325927, 182.693206, 19.553369, 89.999992, 336.313323, -90.013168, -1, -1, -1, 400.00, 400.00);
1464 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1465 tmpobjid = CreateDynamicObject(19440, 1217.129272, 184.096115, 23.913404, 89.999992, 336.334136, -90.034049, -1, -1, -1, 400.00, 400.00);
1466 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1467 tmpobjid = CreateDynamicObject(19387, 1214.011230, 185.450271, 21.303567, 0.000000, 0.000000, 66.499954, -1, -1, -1, 400.00, 400.00);
1468 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1469 tmpobjid = CreateDynamicObject(19440, 1214.141601, 185.396865, 23.853403, 89.999992, 336.334136, -89.834037, -1, -1, -1, 400.00, 400.00);
1470 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1471 tmpobjid = CreateDynamicObject(19440, 1214.142211, 185.396789, 18.773387, 89.999992, 336.334136, -89.834037, -1, -1, -1, 400.00, 400.00);
1472 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1473 tmpobjid = CreateDynamicObject(19440, 1216.210449, 184.501861, 21.513397, 0.000048, 0.000020, 66.299957, -1, -1, -1, 400.00, 400.00);
1474 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1475 tmpobjid = CreateDynamicObject(19440, 1216.210449, 184.501861, 18.083389, 0.000048, 0.000020, 66.299957, -1, -1, -1, 400.00, 400.00);
1476 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1477 tmpobjid = CreateDynamicObject(19440, 1217.927246, 183.746261, 19.553369, 89.999992, 336.313323, -90.013168, -1, -1, -1, 400.00, 400.00);
1478 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1479 tmpobjid = CreateDynamicObject(1499, 1213.315063, 185.769515, 19.540546, 0.000000, 0.000000, -23.300016, -1, -1, -1, 400.00, 400.00);
1480 SetDynamicObjectMaterial(tmpobjid, 0, 19787, "samplcdtvs1", "samplcdtv1screen", 0x00000000);
1481 SetDynamicObjectMaterial(tmpobjid, 1, 10101, "2notherbuildsfe", "ferry_build14", 0x00000000);
1482 tmpobjid = CreateDynamicObject(2960, 1225.482421, 142.374847, 19.954576, -0.000003, 90.000007, 65.599975, -1, -1, -1, 400.00, 400.00);
1483 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "a51_floorpanel1", 0x00000000);
1484 tmpobjid = CreateDynamicObject(2960, 1225.291992, 142.318572, 19.954576, 0.000006, 90.000000, 155.599945, -1, -1, -1, 400.00, 400.00);
1485 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "a51_floorpanel1", 0x00000000);
1486 tmpobjid = CreateDynamicObject(2960, 1222.433959, 143.521377, 19.954576, -0.000018, 90.000061, -24.400022, -1, -1, -1, 400.00, 400.00);
1487 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "a51_floorpanel1", 0x00000000);
1488 tmpobjid = CreateDynamicObject(2960, 1222.377807, 143.711807, 19.954576, 0.000058, 89.999992, 65.599891, -1, -1, -1, 400.00, 400.00);
1489 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "a51_floorpanel1", 0x00000000);
1490 tmpobjid = CreateDynamicObject(19447, 1231.049438, 181.380401, 26.539054, -0.599999, 0.000000, 66.600006, -1, -1, -1, 400.00, 400.00);
1491 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "ferry_build14", 0x00000000);
1492 tmpobjid = CreateDynamicObject(1478, 1224.950439, 142.159179, 19.610622, 90.000000, 90.000000, 16.900020, -1, -1, -1, 400.00, 400.00);
1493 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1494 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1495 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1496 tmpobjid = CreateDynamicObject(1478, 1225.135498, 142.634521, 19.610622, 90.000000, 90.000000, -63.099979, -1, -1, -1, 400.00, 400.00);
1497 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1498 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1499 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1500 tmpobjid = CreateDynamicObject(1478, 1222.638549, 143.138427, 19.610622, 90.000000, 90.000000, 116.900024, -1, -1, -1, 400.00, 400.00);
1501 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1502 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1503 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1504 tmpobjid = CreateDynamicObject(1478, 1222.842163, 143.702423, 19.610622, 90.000000, 90.000000, 196.900024, -1, -1, -1, 400.00, 400.00);
1505 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1506 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1507 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1508 tmpobjid = CreateDynamicObject(2432, 1225.019287, 142.154403, 19.340614, 270.000000, 0.000000, 426.500000, -1, -1, -1, 400.00, 400.00);
1509 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1510 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1511 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1512 tmpobjid = CreateDynamicObject(2432, 1223.561523, 142.788391, 19.340614, 270.000000, 0.000000, 426.500000, -1, -1, -1, 400.00, 400.00);
1513 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1514 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1515 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1516 tmpobjid = CreateDynamicObject(2432, 1224.446655, 144.824249, 19.330614, 270.000000, 0.000000, 426.500000, -1, -1, -1, 400.00, 400.00);
1517 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1518 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1519 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1520 tmpobjid = CreateDynamicObject(2432, 1225.904052, 144.190353, 19.330614, 270.000000, 0.000000, 426.500000, -1, -1, -1, 400.00, 400.00);
1521 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1522 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1523 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1524 tmpobjid = CreateDynamicObject(2960, 1226.913818, 145.684631, 19.944576, 0.000003, 90.000007, 65.599975, -1, -1, -1, 400.00, 400.00);
1525 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "a51_floorpanel1", 0x00000000);
1526 tmpobjid = CreateDynamicObject(2960, 1226.723388, 145.628356, 19.944576, 0.000009, 89.999992, 155.599899, -1, -1, -1, 400.00, 400.00);
1527 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "a51_floorpanel1", 0x00000000);
1528 tmpobjid = CreateDynamicObject(2960, 1223.865356, 146.831161, 19.944576, -0.000020, 90.000068, -24.400022, -1, -1, -1, 400.00, 400.00);
1529 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "a51_floorpanel1", 0x00000000);
1530 tmpobjid = CreateDynamicObject(2960, 1223.809204, 147.021591, 19.944576, 0.000065, 89.999992, 65.599891, -1, -1, -1, 400.00, 400.00);
1531 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "a51_floorpanel1", 0x00000000);
1532 tmpobjid = CreateDynamicObject(1478, 1226.381835, 145.468963, 19.600622, 89.999992, 180.000000, -73.099975, -1, -1, -1, 400.00, 400.00);
1533 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1534 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1535 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1536 tmpobjid = CreateDynamicObject(1478, 1226.566894, 145.944305, 19.600622, 89.999992, 114.343658, -87.443626, -1, -1, -1, 400.00, 400.00);
1537 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1538 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1539 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1540 tmpobjid = CreateDynamicObject(1478, 1224.069946, 146.448211, 19.600622, 89.999992, -65.656326, -87.443656, -1, -1, -1, 400.00, 400.00);
1541 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1542 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1543 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1544 tmpobjid = CreateDynamicObject(1478, 1224.273559, 147.012207, 19.600622, 89.999992, 0.000007, -73.099937, -1, -1, -1, 400.00, 400.00);
1545 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1546 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1547 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1548 tmpobjid = CreateDynamicObject(19826, 1227.035034, 145.435607, 21.147630, 0.000000, 0.000000, 66.699966, -1, -1, -1, 400.00, 400.00);
1549 SetDynamicObjectMaterialText(tmpobjid, 0, "{000000}^", 60, "Ariel", 80, 1, 0x00000000, 0x00000000, 1);
1550 tmpobjid = CreateDynamicObject(19826, 1227.035034, 145.435607, 21.057630, 0.000000, 180.000000, 66.699966, -1, -1, -1, 400.00, 400.00);
1551 SetDynamicObjectMaterialText(tmpobjid, 0, "{000000}^", 60, "Ariel", 80, 1, 0x00000000, 0x00000000, 1);
1552 tmpobjid = CreateDynamicObject(2960, 1220.410278, 144.594879, 19.954576, 0.000024, 90.000007, 65.599975, -1, -1, -1, 400.00, 400.00);
1553 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "a51_floorpanel1", 0x00000000);
1554 tmpobjid = CreateDynamicObject(2960, 1220.219848, 144.538604, 19.954576, 0.000018, 89.999969, 155.599868, -1, -1, -1, 400.00, 400.00);
1555 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "a51_floorpanel1", 0x00000000);
1556 tmpobjid = CreateDynamicObject(2960, 1217.361816, 145.741409, 19.954576, -0.000029, 90.000091, -24.400022, -1, -1, -1, 400.00, 400.00);
1557 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "a51_floorpanel1", 0x00000000);
1558 tmpobjid = CreateDynamicObject(2960, 1217.305664, 145.931838, 19.954576, 0.000084, 89.999992, 65.599891, -1, -1, -1, 400.00, 400.00);
1559 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "a51_floorpanel1", 0x00000000);
1560 tmpobjid = CreateDynamicObject(1478, 1219.878295, 144.379211, 19.610622, 89.999992, 194.727279, -87.827209, -1, -1, -1, 400.00, 400.00);
1561 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1562 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1563 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1564 tmpobjid = CreateDynamicObject(1478, 1220.063354, 144.854553, 19.610622, 89.999992, 116.580307, -89.680206, -1, -1, -1, 400.00, 400.00);
1565 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1566 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1567 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1568 tmpobjid = CreateDynamicObject(1478, 1217.566406, 145.358459, 19.610622, 89.999992, -63.419715, -89.680213, -1, -1, -1, 400.00, 400.00);
1569 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1570 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1571 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1572 tmpobjid = CreateDynamicObject(1478, 1217.770019, 145.922454, 19.610622, 89.999992, 14.727320, -87.827209, -1, -1, -1, 400.00, 400.00);
1573 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1574 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1575 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1576 tmpobjid = CreateDynamicObject(2432, 1219.947143, 144.374435, 19.340614, -89.999992, 29.819355, 96.319252, -1, -1, -1, 400.00, 400.00);
1577 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1578 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1579 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1580 tmpobjid = CreateDynamicObject(2432, 1218.489379, 145.008422, 19.340614, -89.999992, 29.819355, 96.319252, -1, -1, -1, 400.00, 400.00);
1581 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1582 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1583 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1584 tmpobjid = CreateDynamicObject(2432, 1219.374511, 147.044281, 19.330614, -89.999992, 29.819355, 96.319252, -1, -1, -1, 400.00, 400.00);
1585 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1586 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1587 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1588 tmpobjid = CreateDynamicObject(2432, 1220.831909, 146.410385, 19.330614, -89.999992, 29.819355, 96.319252, -1, -1, -1, 400.00, 400.00);
1589 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1590 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1591 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1592 tmpobjid = CreateDynamicObject(2960, 1221.841674, 147.904663, 19.944576, 0.000029, 90.000007, 65.599975, -1, -1, -1, 400.00, 400.00);
1593 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "a51_floorpanel1", 0x00000000);
1594 tmpobjid = CreateDynamicObject(2960, 1221.651245, 147.848388, 19.944576, 0.000022, 89.999961, 155.599868, -1, -1, -1, 400.00, 400.00);
1595 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "a51_floorpanel1", 0x00000000);
1596 tmpobjid = CreateDynamicObject(2960, 1218.793212, 149.051193, 19.944576, -0.000033, 90.000099, -24.400022, -1, -1, -1, 400.00, 400.00);
1597 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "a51_floorpanel1", 0x00000000);
1598 tmpobjid = CreateDynamicObject(2960, 1218.737060, 149.241622, 19.944576, 0.000092, 89.999992, 65.599891, -1, -1, -1, 400.00, 400.00);
1599 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "a51_floorpanel1", 0x00000000);
1600 tmpobjid = CreateDynamicObject(1478, 1221.309692, 147.688995, 19.600622, 89.999992, 195.813278, -88.913192, -1, -1, -1, 400.00, 400.00);
1601 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1602 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1603 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1604 tmpobjid = CreateDynamicObject(1478, 1221.494750, 148.164337, 19.600622, 89.999992, 116.740203, -89.840080, -1, -1, -1, 400.00, 400.00);
1605 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1606 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1607 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1608 tmpobjid = CreateDynamicObject(1478, 1218.997802, 148.668243, 19.600622, 89.999992, -63.259822, -89.840087, -1, -1, -1, 400.00, 400.00);
1609 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1610 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1611 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1612 tmpobjid = CreateDynamicObject(1478, 1219.201416, 149.232238, 19.600622, 89.999992, 15.813324, -88.913192, -1, -1, -1, 400.00, 400.00);
1613 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1614 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1615 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1616 tmpobjid = CreateDynamicObject(19826, 1221.962890, 147.655639, 21.147630, 0.000028, 0.000012, 66.699958, -1, -1, -1, 400.00, 400.00);
1617 SetDynamicObjectMaterialText(tmpobjid, 0, "{000000}^", 60, "Ariel", 80, 1, 0x00000000, 0x00000000, 1);
1618 tmpobjid = CreateDynamicObject(19826, 1221.962890, 147.655639, 21.057630, 0.000028, 180.000000, 66.699958, -1, -1, -1, 400.00, 400.00);
1619 SetDynamicObjectMaterialText(tmpobjid, 0, "{000000}^", 60, "Ariel", 80, 1, 0x00000000, 0x00000000, 1);
1620 tmpobjid = CreateDynamicObject(2960, 1215.299194, 146.804931, 19.954576, 0.000045, 90.000007, 65.599975, -1, -1, -1, 400.00, 400.00);
1621 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "a51_floorpanel1", 0x00000000);
1622 tmpobjid = CreateDynamicObject(2960, 1215.108764, 146.748657, 19.954576, 0.000028, 89.999946, 155.599868, -1, -1, -1, 400.00, 400.00);
1623 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "a51_floorpanel1", 0x00000000);
1624 tmpobjid = CreateDynamicObject(2960, 1212.250732, 147.951461, 19.954576, -0.000039, 90.000114, -24.400022, -1, -1, -1, 400.00, 400.00);
1625 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "a51_floorpanel1", 0x00000000);
1626 tmpobjid = CreateDynamicObject(2960, 1212.194580, 148.141891, 19.954576, 0.000105, 89.999992, 65.599891, -1, -1, -1, 400.00, 400.00);
1627 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "a51_floorpanel1", 0x00000000);
1628 tmpobjid = CreateDynamicObject(1478, 1214.767211, 146.589263, 19.610622, 89.999992, 196.628356, -89.728240, -1, -1, -1, 400.00, 400.00);
1629 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1630 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1631 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1632 tmpobjid = CreateDynamicObject(1478, 1214.952270, 147.064605, 19.610622, 89.999992, 116.860145, -89.959991, -1, -1, -1, 400.00, 400.00);
1633 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1634 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1635 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1636 tmpobjid = CreateDynamicObject(1478, 1212.455322, 147.568511, 19.610622, 89.999992, -63.139877, -89.959991, -1, -1, -1, 400.00, 400.00);
1637 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1638 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1639 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1640 tmpobjid = CreateDynamicObject(1478, 1212.658935, 148.132507, 19.610622, 89.999992, 16.628410, -89.728240, -1, -1, -1, 400.00, 400.00);
1641 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1642 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1643 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1644 tmpobjid = CreateDynamicObject(2432, 1214.836059, 146.584487, 19.340614, -89.999992, 24.293190, 90.793022, -1, -1, -1, 400.00, 400.00);
1645 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1646 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1647 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1648 tmpobjid = CreateDynamicObject(2432, 1213.378295, 147.218475, 19.340614, -89.999992, 24.293190, 90.793022, -1, -1, -1, 400.00, 400.00);
1649 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1650 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1651 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1652 tmpobjid = CreateDynamicObject(2432, 1214.263427, 149.254333, 19.330614, -89.999992, 24.293190, 90.793022, -1, -1, -1, 400.00, 400.00);
1653 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1654 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1655 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1656 tmpobjid = CreateDynamicObject(2432, 1215.720825, 148.620437, 19.330614, -89.999992, 24.293190, 90.793022, -1, -1, -1, 400.00, 400.00);
1657 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1658 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1659 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1660 tmpobjid = CreateDynamicObject(2960, 1216.730590, 150.114715, 19.944576, 0.000050, 90.000007, 65.599975, -1, -1, -1, 400.00, 400.00);
1661 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "a51_floorpanel1", 0x00000000);
1662 tmpobjid = CreateDynamicObject(2960, 1216.540161, 150.058441, 19.944576, 0.000031, 89.999938, 155.599868, -1, -1, -1, 400.00, 400.00);
1663 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "a51_floorpanel1", 0x00000000);
1664 tmpobjid = CreateDynamicObject(2960, 1213.682128, 151.261245, 19.944576, -0.000043, 90.000122, -24.400022, -1, -1, -1, 400.00, 400.00);
1665 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "a51_floorpanel1", 0x00000000);
1666 tmpobjid = CreateDynamicObject(2960, 1213.625976, 151.451675, 19.944576, 0.000113, 89.999992, 65.599891, -1, -1, -1, 400.00, 400.00);
1667 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "a51_floorpanel1", 0x00000000);
1668 tmpobjid = CreateDynamicObject(1478, 1216.198608, 149.899047, 19.600622, 89.999992, 196.764236, -89.864097, -1, -1, -1, 400.00, 400.00);
1669 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1670 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1671 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1672 tmpobjid = CreateDynamicObject(1478, 1216.383666, 150.374389, 19.600622, 89.999992, 116.880149, -89.979972, -1, -1, -1, 400.00, 400.00);
1673 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1674 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1675 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1676 tmpobjid = CreateDynamicObject(1478, 1213.886718, 150.878295, 19.600622, 89.999992, -63.119873, -89.979972, -1, -1, -1, 400.00, 400.00);
1677 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1678 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1679 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1680 tmpobjid = CreateDynamicObject(1478, 1214.090332, 151.442291, 19.600622, 89.999992, 16.764289, -89.864097, -1, -1, -1, 400.00, 400.00);
1681 SetDynamicObjectMaterial(tmpobjid, 0, 16640, "a51", "sl_metalwalk", 0x00000000);
1682 SetDynamicObjectMaterial(tmpobjid, 1, 16640, "a51", "sl_metalwalk", 0x00000000);
1683 SetDynamicObjectMaterial(tmpobjid, 2, 16640, "a51", "sl_metalwalk", 0x00000000);
1684 tmpobjid = CreateDynamicObject(19826, 1216.851806, 149.865692, 21.147630, 0.000048, 0.000020, 66.699958, -1, -1, -1, 400.00, 400.00);
1685 SetDynamicObjectMaterialText(tmpobjid, 0, "{000000}^", 60, "Ariel", 80, 1, 0x00000000, 0x00000000, 1);
1686 tmpobjid = CreateDynamicObject(19826, 1216.851806, 149.865692, 21.057630, 0.000048, 180.000000, 66.699958, -1, -1, -1, 400.00, 400.00);
1687 SetDynamicObjectMaterialText(tmpobjid, 0, "{000000}^", 60, "Ariel", 80, 1, 0x00000000, 0x00000000, 1);
1688 tmpobjid = CreateDynamicObject(19377, 1203.462158, 153.444808, 24.744705, 0.000014, 90.000000, 66.599990, -1, -1, -1, 400.00, 400.00);
1689 SetDynamicObjectMaterial(tmpobjid, 0, 18646, "matcolours", "grey-80-percent", 0x00000000);
1690 tmpobjid = CreateDynamicObject(19377, 1207.632324, 163.081222, 24.744705, 0.000014, 90.000000, 66.599990, -1, -1, -1, 400.00, 400.00);
1691 SetDynamicObjectMaterial(tmpobjid, 0, 18646, "matcolours", "grey-80-percent", 0x00000000);
1692 tmpobjid = CreateDynamicObject(19377, 1211.798095, 172.708465, 24.744705, 0.000014, 90.000000, 66.599990, -1, -1, -1, 400.00, 400.00);
1693 SetDynamicObjectMaterial(tmpobjid, 0, 18646, "matcolours", "grey-80-percent", 0x00000000);
1694 tmpobjid = CreateDynamicObject(19377, 1215.955200, 182.317443, 24.744705, 0.000014, 90.000000, 66.599990, -1, -1, -1, 400.00, 400.00);
1695 SetDynamicObjectMaterial(tmpobjid, 0, 18646, "matcolours", "grey-80-percent", 0x00000000);
1696 tmpobjid = CreateDynamicObject(19377, 1212.300537, 149.620269, 24.744705, 0.000014, 90.000000, 66.599990, -1, -1, -1, 400.00, 400.00);
1697 SetDynamicObjectMaterial(tmpobjid, 0, 18646, "matcolours", "grey-80-percent", 0x00000000);
1698 tmpobjid = CreateDynamicObject(19377, 1221.111450, 145.807662, 24.744705, 0.000014, 90.000000, 66.599990, -1, -1, -1, 400.00, 400.00);
1699 SetDynamicObjectMaterial(tmpobjid, 0, 18646, "matcolours", "grey-80-percent", 0x00000000);
1700 tmpobjid = CreateDynamicObject(19377, 1224.571533, 144.310470, 24.744705, 0.000014, 90.000000, 66.599990, -1, -1, -1, 400.00, 400.00);
1701 SetDynamicObjectMaterial(tmpobjid, 0, 18646, "matcolours", "grey-80-percent", 0x00000000);
1702 tmpobjid = CreateDynamicObject(19377, 1228.747558, 153.911483, 24.744705, 0.000014, 90.000000, 66.599990, -1, -1, -1, 400.00, 400.00);
1703 SetDynamicObjectMaterial(tmpobjid, 0, 18646, "matcolours", "grey-80-percent", 0x00000000);
1704 tmpobjid = CreateDynamicObject(19377, 1232.932128, 163.530807, 24.744705, 0.000014, 90.000000, 66.599990, -1, -1, -1, 400.00, 400.00);
1705 SetDynamicObjectMaterial(tmpobjid, 0, 18646, "matcolours", "grey-80-percent", 0x00000000);
1706 tmpobjid = CreateDynamicObject(19377, 1237.106933, 173.154113, 24.744705, 0.000014, 90.000000, 66.599990, -1, -1, -1, 400.00, 400.00);
1707 SetDynamicObjectMaterial(tmpobjid, 0, 18646, "matcolours", "grey-80-percent", 0x00000000);
1708 tmpobjid = CreateDynamicObject(19377, 1224.772338, 178.491729, 24.744705, 0.000014, 90.000000, 66.599990, -1, -1, -1, 400.00, 400.00);
1709 SetDynamicObjectMaterial(tmpobjid, 0, 18646, "matcolours", "grey-80-percent", 0x00000000);
1710 tmpobjid = CreateDynamicObject(19377, 1230.811035, 175.878524, 24.744705, 0.000014, 90.000000, 66.599990, -1, -1, -1, 400.00, 400.00);
1711 SetDynamicObjectMaterial(tmpobjid, 0, 18646, "matcolours", "grey-80-percent", 0x00000000);
1712 tmpobjid = CreateDynamicObject(1327, 1201.365722, 157.786941, 19.460620, 0.000000, 90.000000, 0.000000, -1, -1, -1, 400.00, 400.00);
1713 SetDynamicObjectMaterial(tmpobjid, 0, 12805, "ce_loadbay", "sw_wheel1", 0x00000000);
1714 tmpobjid = CreateDynamicObject(1327, 1201.475830, 157.786941, 20.080635, 0.000000, 90.000000, 0.000000, -1, -1, -1, 400.00, 400.00);
1715 SetDynamicObjectMaterial(tmpobjid, 0, 12805, "ce_loadbay", "sw_wheel1", 0x00000000);
1716 tmpobjid = CreateDynamicObject(1327, 1201.365722, 157.866928, 20.710639, 0.000000, 90.000000, 0.000000, -1, -1, -1, 400.00, 400.00);
1717 SetDynamicObjectMaterial(tmpobjid, 0, 12805, "ce_loadbay", "sw_wheel1", 0x00000000);
1718 tmpobjid = CreateDynamicObject(1327, 1201.205566, 157.706924, 21.340639, 0.000000, 90.000000, 0.000000, -1, -1, -1, 400.00, 400.00);
1719 SetDynamicObjectMaterial(tmpobjid, 0, 12805, "ce_loadbay", "sw_wheel1", 0x00000000);
1720 tmpobjid = CreateDynamicObject(19377, 1219.198120, 177.864532, 19.483745, 0.000043, -0.000079, 156.599411, -1, -1, -1, 400.00, 400.00);
1721 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1722 tmpobjid = CreateDynamicObject(19377, 1211.666992, 172.325347, 19.483747, 0.000000, 0.000000, 66.500007, -1, -1, -1, 400.00, 400.00);
1723 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1724 tmpobjid = CreateDynamicObject(19440, 1216.641845, 171.992294, 23.933404, 89.999992, 400.857330, -64.257225, -1, -1, -1, 400.00, 400.00);
1725 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1726 tmpobjid = CreateDynamicObject(19387, 1216.650268, 171.981246, 21.363561, 0.000000, 0.000000, 156.499954, -1, -1, -1, 400.00, 400.00);
1727 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1728 tmpobjid = CreateDynamicObject(19387, 1216.650268, 171.981231, 17.873569, 0.000000, 0.000000, 156.499954, -1, -1, -1, 400.00, 400.00);
1729 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1730 tmpobjid = CreateDynamicObject(1499, 1216.356933, 171.253906, 19.610624, 0.000000, 0.000000, 66.899955, -1, -1, -1, 400.00, 400.00);
1731 SetDynamicObjectMaterial(tmpobjid, 0, 18646, "matcolours", "grey-80-percent", 0x00000000);
1732 SetDynamicObjectMaterial(tmpobjid, 1, 4833, "airprtrunway_las", "policeha02black_128", 0x00000000);
1733 tmpobjid = CreateDynamicObject(11737, 1213.720947, 184.633972, 19.460611, 0.000000, 0.000000, -22.699995, -1, -1, -1, 400.00, 400.00);
1734 SetDynamicObjectMaterial(tmpobjid, 0, 18064, "ab_sfammuunits", "rubber_mat", 0x00000000);
1735 tmpobjid = CreateDynamicObject(19172, 1219.174560, 178.055343, 22.570657, 0.000000, -0.199999, -113.599990, -1, -1, -1, 400.00, 400.00);
1736 SetDynamicObjectMaterial(tmpobjid, 0, 14420, "dr_gsbits", "mp_apt1_pic6", 0x00000000);
1737 tmpobjid = CreateDynamicObject(1003, 1229.681274, 144.325271, 21.405073, 93.599990, 0.000000, -113.700027, -1, -1, -1, 400.00, 400.00);
1738 SetDynamicObjectMaterial(tmpobjid, 0, -1, "none", "none", 0xFF00CCFF);
1739 tmpobjid = CreateDynamicObject(19440, 1241.935180, 172.422164, 22.883409, 0.000048, 0.000019, 156.499969, -1, -1, -1, 400.00, 400.00);
1740 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1741 tmpobjid = CreateDynamicObject(19440, 1241.935180, 172.422164, 19.443412, 0.000048, 0.000019, 156.499969, -1, -1, -1, 400.00, 400.00);
1742 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1743 tmpobjid = CreateDynamicObject(19440, 1240.919433, 170.082748, 23.843420, 89.999992, -23.465850, -0.034049, -1, -1, -1, 400.00, 400.00);
1744 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1745 tmpobjid = CreateDynamicObject(19440, 1239.543579, 166.918914, 23.843420, 89.999992, -23.465850, -0.034049, -1, -1, -1, 400.00, 400.00);
1746 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1747 tmpobjid = CreateDynamicObject(19440, 1238.147705, 163.709228, 23.843420, 89.999992, -23.465850, -0.034049, -1, -1, -1, 400.00, 400.00);
1748 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1749 tmpobjid = CreateDynamicObject(19440, 1236.752075, 160.499542, 23.843420, 89.999992, -23.465850, -0.034049, -1, -1, -1, 400.00, 400.00);
1750 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1751 tmpobjid = CreateDynamicObject(19440, 1235.356811, 157.289855, 23.843420, 89.999992, -23.465850, -0.034049, -1, -1, -1, 400.00, 400.00);
1752 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1753 tmpobjid = CreateDynamicObject(19440, 1233.968994, 154.098510, 23.843420, 89.999992, -23.465850, -0.034049, -1, -1, -1, 400.00, 400.00);
1754 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1755 tmpobjid = CreateDynamicObject(19440, 1232.577514, 150.897994, 23.843420, 89.999992, -23.465850, -0.034049, -1, -1, -1, 400.00, 400.00);
1756 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1757 tmpobjid = CreateDynamicObject(19440, 1231.429443, 148.256881, 23.843420, 89.999992, -23.465850, -0.034049, -1, -1, -1, 400.00, 400.00);
1758 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1759 tmpobjid = CreateDynamicObject(19440, 1236.272949, 159.399993, 21.383420, 0.000048, 0.000019, 156.499969, -1, -1, -1, 400.00, 400.00);
1760 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1761 tmpobjid = CreateDynamicObject(19440, 1233.462036, 152.934768, 21.383420, 0.000048, 0.000019, 156.499969, -1, -1, -1, 400.00, 400.00);
1762 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1763 tmpobjid = CreateDynamicObject(19440, 1238.929199, 165.507583, 21.383419, 0.000048, 0.000019, 156.499969, -1, -1, -1, 400.00, 400.00);
1764 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "sl_vicwall01", 0x00000000);
1765 tmpobjid = CreateDynamicObject(19826, 1234.031127, 176.583526, 21.147630, 0.000020, 0.000025, -23.300064, -1, -1, -1, 400.00, 400.00);
1766 SetDynamicObjectMaterialText(tmpobjid, 0, "{000000}^", 60, "Ariel", 80, 1, 0x00000000, 0x00000000, 1);
1767 tmpobjid = CreateDynamicObject(19826, 1234.031127, 176.583526, 21.057630, 0.000020, 180.000000, -23.300064, -1, -1, -1, 400.00, 400.00);
1768 SetDynamicObjectMaterialText(tmpobjid, 0, "{000000}^", 60, "Ariel", 80, 1, 0x00000000, 0x00000000, 1);
1769 tmpobjid = CreateDynamicObject(19826, 1233.130249, 176.973464, 21.147630, 0.000012, 0.000047, -23.300060, -1, -1, -1, 400.00, 400.00);
1770 SetDynamicObjectMaterialText(tmpobjid, 0, "{000000}^", 60, "Ariel", 80, 1, 0x00000000, 0x00000000, 1);
1771 tmpobjid = CreateDynamicObject(19826, 1233.130249, 176.973464, 21.057630, 0.000012, 180.000000, -23.300060, -1, -1, -1, 400.00, 400.00);
1772 SetDynamicObjectMaterialText(tmpobjid, 0, "{000000}^", 60, "Ariel", 80, 1, 0x00000000, 0x00000000, 1);
1773 tmpobjid = CreateDynamicObject(19482, 1229.948608, 181.980941, 26.724685, 0.000000, 0.000000, 66.700004, -1, -1, -1, 400.00, 400.00);
1774 SetDynamicObjectMaterialText(tmpobjid, 0, "{000000}Montgomery", 90, "Ariel", 50, 1, 0x00000000, 0x00000000, 1);
1775 tmpobjid = CreateDynamicObject(19447, 1224.432617, 184.243728, 26.473558, -0.599999, 0.000000, 66.600006, -1, -1, -1, 400.00, 400.00);
1776 SetDynamicObjectMaterial(tmpobjid, 0, 10101, "2notherbuildsfe", "ferry_build14", 0x00000000);
1777 tmpobjid = CreateDynamicObject(19482, 1225.503295, 183.895385, 26.724685, 0.000000, 0.000000, 66.700004, -1, -1, -1, 400.00, 400.00);
1778 SetDynamicObjectMaterialText(tmpobjid, 0, "{000000}Garage", 90, "Ariel", 50, 1, 0x00000000, 0x00000000, 1);
1779 tmpobjid = CreateDynamicObject(19482, 1222.536743, 185.173004, 25.374673, 0.000000, 0.000000, 66.700004, -1, -1, -1, 400.00, 400.00);
1780 SetDynamicObjectMaterialText(tmpobjid, 0, "{000000}Open 24/7", 130, "Ariel", 50, 1, 0x00000000, 0x00000000, 1);
1781 tmpobjid = CreateDynamicObject(19482, 1233.108398, 180.620285, 26.634683, 0.000000, 0.000000, 66.700004, -1, -1, -1, 400.00, 400.00);
1782 SetDynamicObjectMaterialText(tmpobjid, 0, "{000000}@", 90, "Webdings", 50, 1, 0x00000000, 0x00000000, 1);
1783 tmpobjid = CreateDynamicObject(19482, 1223.400268, 184.801193, 26.634683, 0.000000, 0.000000, 246.700012, -1, -1, -1, 400.00, 400.00);
1784 SetDynamicObjectMaterialText(tmpobjid, 0, "{000000}@", 90, "Webdings", 50, 1, 0x00000000, 0x00000000, 1);
1785 tmpobjid = CreateDynamicObject(19482, 1233.971923, 180.248474, 25.364681, 0.000000, 0.000000, 246.700012, -1, -1, -1, 400.00, 400.00);
1786 SetDynamicObjectMaterialText(tmpobjid, 0, "{000000})", 90, "Wingdings", 40, 1, 0x00000000, 0x00000000, 1);
1787 tmpobjid = CreateDynamicObject(19482, 1233.135742, 180.608459, 25.364681, 0.000000, 0.000000, 426.700012, -1, -1, -1, 400.00, 400.00);
1788 SetDynamicObjectMaterialText(tmpobjid, 0, "{000000}300", 90, "Calibri", 30, 1, 0x00000000, 0x00000000, 1);
1789 /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
1790 /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
1791 /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
1792 tmpobjid = CreateDynamicObject(19377, 1203.589721, 153.719009, 19.374683, 0.000000, 90.000000, 66.600006, -1, -1, -1, 400.00, 400.00);
1793 tmpobjid = CreateDynamicObject(19377, 1212.427734, 149.894485, 19.374683, 0.000000, 90.000000, 66.600006, -1, -1, -1, 400.00, 400.00);
1794 tmpobjid = CreateDynamicObject(19377, 1221.247070, 146.077896, 19.374683, 0.000000, 90.000000, 66.600006, -1, -1, -1, 400.00, 400.00);
1795 tmpobjid = CreateDynamicObject(19377, 1224.651855, 144.604476, 19.375032, -0.399998, 90.000000, 66.600006, -1, -1, -1, 400.00, 400.00);
1796 tmpobjid = CreateDynamicObject(19377, 1207.710937, 163.309036, 19.374683, 0.000007, 90.000000, 66.599990, -1, -1, -1, 400.00, 400.00);
1797 tmpobjid = CreateDynamicObject(19377, 1216.548950, 159.484512, 19.374683, 0.000007, 90.000000, 66.599990, -1, -1, -1, 400.00, 400.00);
1798 tmpobjid = CreateDynamicObject(19377, 1225.368286, 155.667922, 19.374683, 0.000007, 90.000000, 66.599990, -1, -1, -1, 400.00, 400.00);
1799 tmpobjid = CreateDynamicObject(19377, 1228.791259, 154.186584, 19.375173, -0.399991, 90.000000, 66.599990, -1, -1, -1, 400.00, 400.00);
1800 tmpobjid = CreateDynamicObject(19377, 1211.872314, 172.919204, 19.374683, 0.000014, 90.000000, 66.599990, -1, -1, -1, 400.00, 400.00);
1801 tmpobjid = CreateDynamicObject(19377, 1220.710327, 169.094680, 19.374683, 0.000014, 90.000000, 66.599990, -1, -1, -1, 400.00, 400.00);
1802 tmpobjid = CreateDynamicObject(19377, 1229.529663, 165.278091, 19.374683, 0.000014, 90.000000, 66.599990, -1, -1, -1, 400.00, 400.00);
1803 tmpobjid = CreateDynamicObject(19377, 1232.943481, 163.800720, 19.375104, -0.399984, 90.000000, 66.599990, -1, -1, -1, 400.00, 400.00);
1804 tmpobjid = CreateDynamicObject(19377, 1215.353027, 180.819229, 19.374683, -0.000311, 90.000823, 66.599914, -1, -1, -1, 400.00, 400.00);
1805 tmpobjid = CreateDynamicObject(19377, 1224.191040, 176.994689, 19.374685, -0.000311, 90.000823, 66.599914, -1, -1, -1, 400.00, 400.00);
1806 tmpobjid = CreateDynamicObject(19377, 1233.010375, 173.178100, 19.374685, -0.000311, 90.000823, 66.599914, -1, -1, -1, 400.00, 400.00);
1807 tmpobjid = CreateDynamicObject(19377, 1236.369262, 171.724563, 19.374683, -0.400310, 90.000823, 66.599945, -1, -1, -1, 400.00, 400.00);
1808 tmpobjid = CreateDynamicObject(11313, 1236.735229, 173.266143, 23.082931, -0.000048, 270.000000, -113.699851, -1, -1, -1, 400.00, 400.00);
1809 tmpobjid = CreateDynamicObject(11313, 1228.933837, 176.690734, 23.082931, -0.000048, 270.000000, -113.699851, -1, -1, -1, 400.00, 400.00);
1810 tmpobjid = CreateDynamicObject(19325, 1223.370849, 181.350860, 21.727880, 0.000000, 0.000000, 66.299980, -1, -1, -1, 400.00, 400.00);
1811 tmpobjid = CreateDynamicObject(19325, 1218.445312, 183.513381, 20.807867, 90.000000, 180.000000, 66.299980, -1, -1, -1, 400.00, 400.00);
1812 tmpobjid = CreateDynamicObject(2893, 1226.503906, 146.605117, 19.800621, 0.000000, 0.000000, 156.599975, -1, -1, -1, 400.00, 400.00);
1813 tmpobjid = CreateDynamicObject(2893, 1224.797241, 147.343872, 19.800621, 0.000000, 0.000000, 156.599975, -1, -1, -1, 400.00, 400.00);
1814 tmpobjid = CreateDynamicObject(19828, 1227.050048, 145.476287, 21.160612, 0.000000, 0.000000, 425.299865, -1, -1, -1, 400.00, 400.00);
1815 tmpobjid = CreateDynamicObject(19828, 1227.050048, 145.476287, 21.040609, 0.000000, 0.000000, 425.299865, -1, -1, -1, 400.00, 400.00);
1816 tmpobjid = CreateDynamicObject(2893, 1221.431762, 148.825149, 19.800621, 0.000012, -0.000028, 156.599792, -1, -1, -1, 400.00, 400.00);
1817 tmpobjid = CreateDynamicObject(2893, 1219.725097, 149.563903, 19.800621, 0.000012, -0.000028, 156.599792, -1, -1, -1, 400.00, 400.00);
1818 tmpobjid = CreateDynamicObject(19828, 1221.977905, 147.696319, 21.160612, 0.000027, 0.000012, 65.299865, -1, -1, -1, 400.00, 400.00);
1819 tmpobjid = CreateDynamicObject(19828, 1221.977905, 147.696319, 21.040609, 0.000027, 0.000012, 65.299865, -1, -1, -1, 400.00, 400.00);
1820 tmpobjid = CreateDynamicObject(2893, 1216.320678, 151.035202, 19.800621, 0.000020, -0.000048, 156.599716, -1, -1, -1, 400.00, 400.00);
1821 tmpobjid = CreateDynamicObject(2893, 1214.614013, 151.773956, 19.800621, 0.000020, -0.000048, 156.599716, -1, -1, -1, 400.00, 400.00);
1822 tmpobjid = CreateDynamicObject(19828, 1216.866821, 149.906372, 21.160612, 0.000048, 0.000022, 65.299865, -1, -1, -1, 400.00, 400.00);
1823 tmpobjid = CreateDynamicObject(19828, 1216.866821, 149.906372, 21.040609, 0.000048, 0.000022, 65.299865, -1, -1, -1, 400.00, 400.00);
1824 tmpobjid = CreateDynamicObject(19903, 1226.387939, 142.706024, 19.480844, 0.000000, 0.000000, 90.000000, -1, -1, -1, 400.00, 400.00);
1825 tmpobjid = CreateDynamicObject(19903, 1221.226318, 145.115997, 19.480844, 0.000000, 0.000000, 90.000000, -1, -1, -1, 400.00, 400.00);
1826 tmpobjid = CreateDynamicObject(19903, 1215.986328, 147.426025, 19.480844, 0.000000, 0.000000, 90.000000, -1, -1, -1, 400.00, 400.00);
1827 tmpobjid = CreateDynamicObject(14693, 1222.625244, 144.656295, 19.880641, 0.000000, 0.000000, 155.499923, -1, -1, -1, 400.00, 400.00);
1828 tmpobjid = CreateDynamicObject(14693, 1217.628662, 146.933090, 19.880641, 0.000000, 0.000000, 155.499923, -1, -1, -1, 400.00, 400.00);
1829 tmpobjid = CreateDynamicObject(14693, 1212.569458, 149.238739, 19.880641, 0.000000, 0.000000, 155.499923, -1, -1, -1, 400.00, 400.00);
1830 tmpobjid = CreateDynamicObject(19899, 1223.263427, 140.041275, 19.442251, 0.000000, 0.000000, 66.600013, -1, -1, -1, 400.00, 400.00);
1831 tmpobjid = CreateDynamicObject(1308, 1243.541137, 174.445236, 19.476423, 1.074771, -3.897238, -22.510971, -1, -1, -1, 400.00, 400.00);
1832 tmpobjid = CreateDynamicObject(19325, 1220.498657, 172.542800, 24.787900, 0.000000, 90.000000, 66.299980, -1, -1, -1, 400.00, 400.00);
1833 tmpobjid = CreateDynamicObject(19325, 1226.577758, 169.873855, 24.787900, 0.000000, 90.000000, 66.299980, -1, -1, -1, 400.00, 400.00);
1834 tmpobjid = CreateDynamicObject(19325, 1232.657226, 167.204727, 24.787900, 0.000000, 90.000000, 66.299980, -1, -1, -1, 400.00, 400.00);
1835 tmpobjid = CreateDynamicObject(19325, 1231.001098, 163.432220, 24.787900, 0.000000, 90.000000, 66.299980, -1, -1, -1, 400.00, 400.00);
1836 tmpobjid = CreateDynamicObject(19325, 1224.921752, 166.101379, 24.787900, 0.000000, 90.000000, 66.299980, -1, -1, -1, 400.00, 400.00);
1837 tmpobjid = CreateDynamicObject(19325, 1218.842529, 168.770233, 24.787900, 0.000000, 90.000000, 66.299980, -1, -1, -1, 400.00, 400.00);
1838 tmpobjid = CreateDynamicObject(19325, 1217.185546, 164.997802, 24.787900, 0.000000, 90.000000, 66.299980, -1, -1, -1, 400.00, 400.00);
1839 tmpobjid = CreateDynamicObject(19325, 1223.265014, 162.328918, 24.787900, 0.000000, 90.000000, 66.299980, -1, -1, -1, 400.00, 400.00);
1840 tmpobjid = CreateDynamicObject(19325, 1229.344116, 159.659973, 24.787900, 0.000000, 90.000000, 66.299980, -1, -1, -1, 400.00, 400.00);
1841 tmpobjid = CreateDynamicObject(19325, 1215.529541, 161.225296, 24.787900, 0.000000, 90.000000, 66.299980, -1, -1, -1, 400.00, 400.00);
1842 tmpobjid = CreateDynamicObject(19325, 1221.608642, 158.556381, 24.787900, 0.000000, 90.000000, 66.299980, -1, -1, -1, 400.00, 400.00);
1843 tmpobjid = CreateDynamicObject(19325, 1227.687866, 155.887496, 24.787900, 0.000000, 90.000000, 66.299980, -1, -1, -1, 400.00, 400.00);
1844 tmpobjid = CreateDynamicObject(19325, 1213.873046, 157.452819, 24.787900, 0.000000, 90.000000, 66.299980, -1, -1, -1, 400.00, 400.00);
1845 tmpobjid = CreateDynamicObject(19325, 1219.952148, 154.783813, 24.787900, 0.000000, 90.000000, 66.299980, -1, -1, -1, 400.00, 400.00);
1846 tmpobjid = CreateDynamicObject(19325, 1226.031494, 152.114944, 24.787900, 0.000000, 90.000000, 66.299980, -1, -1, -1, 400.00, 400.00);
1847 tmpobjid = CreateDynamicObject(19325, 1212.216308, 153.680419, 24.787900, 0.000000, 90.000000, 66.299980, -1, -1, -1, 400.00, 400.00);
1848 tmpobjid = CreateDynamicObject(19325, 1218.295776, 151.011489, 24.787900, 0.000000, 90.000000, 66.299980, -1, -1, -1, 400.00, 400.00);
1849 tmpobjid = CreateDynamicObject(19325, 1224.375244, 148.342575, 24.787900, 0.000000, 90.000000, 66.299980, -1, -1, -1, 400.00, 400.00);
1850 tmpobjid = CreateDynamicObject(19921, 1224.240722, 140.116058, 20.790622, 0.000000, 0.000000, 156.300018, -1, -1, -1, 400.00, 400.00);
1851 tmpobjid = CreateDynamicObject(19921, 1224.212524, 140.051971, 21.160631, 0.000000, 0.000000, 156.300018, -1, -1, -1, 400.00, 400.00);
1852 tmpobjid = CreateDynamicObject(19921, 1224.212524, 140.051971, 21.630634, 0.000000, 0.000000, 156.300018, -1, -1, -1, 400.00, 400.00);
1853 tmpobjid = CreateDynamicObject(19893, 1223.378662, 140.234878, 20.692272, 0.000000, 0.000000, 180.000000, -1, -1, -1, 400.00, 400.00);
1854 tmpobjid = CreateDynamicObject(18644, 1222.727416, 140.321624, 20.752012, 90.000000, 0.000000, 0.000000, -1, -1, -1, 400.00, 400.00);
1855 tmpobjid = CreateDynamicObject(18644, 1222.295043, 140.455535, 20.752012, 90.000000, -30.999998, 0.000000, -1, -1, -1, 400.00, 400.00);
1856 tmpobjid = CreateDynamicObject(19627, 1222.928100, 140.464340, 20.712867, 180.000000, 180.000000, 0.000000, -1, -1, -1, 400.00, 400.00);
1857 tmpobjid = CreateDynamicObject(19627, 1222.928100, 140.274322, 20.712867, 180.000000, 180.000000, -53.399997, -1, -1, -1, 400.00, 400.00);
1858 tmpobjid = CreateDynamicObject(18633, 1222.584350, 140.468582, 20.711971, 180.000000, 90.000000, 0.000000, -1, -1, -1, 400.00, 400.00);
1859 tmpobjid = CreateDynamicObject(18633, 1223.085205, 139.908859, 20.711971, 180.000000, 90.000000, -85.999969, -1, -1, -1, 400.00, 400.00);
1860 tmpobjid = CreateDynamicObject(19621, 1222.255493, 140.294784, 20.783433, 0.000000, 0.000000, 85.500030, -1, -1, -1, 400.00, 400.00);
1861 tmpobjid = CreateDynamicObject(11738, 1223.492309, 140.254745, 21.563381, 0.000000, 0.000000, 156.000061, -1, -1, -1, 400.00, 400.00);
1862 tmpobjid = CreateDynamicObject(11738, 1223.313354, 139.852798, 21.563381, 0.000000, 0.000000, 156.000061, -1, -1, -1, 400.00, 400.00);
1863 tmpobjid = CreateDynamicObject(1210, 1222.570068, 140.615783, 21.620893, 90.000000, 360.000000, 158.699951, -1, -1, -1, 400.00, 400.00);
1864 tmpobjid = CreateDynamicObject(1210, 1223.082275, 140.416046, 21.620893, 90.000000, 360.000000, 158.699951, -1, -1, -1, 400.00, 400.00);
1865 tmpobjid = CreateDynamicObject(19900, 1221.729125, 140.532089, 19.460620, 0.000000, 0.000000, -23.499980, -1, -1, -1, 400.00, 400.00);
1866 tmpobjid = CreateDynamicObject(19815, 1217.912353, 141.850646, 20.950616, 0.000000, 0.000000, 156.500091, -1, -1, -1, 400.00, 400.00);
1867 tmpobjid = CreateDynamicObject(1073, 1213.631713, 143.831069, 22.180624, 0.000000, 0.000000, 66.700004, -1, -1, -1, 400.00, 400.00);
1868 tmpobjid = CreateDynamicObject(1073, 1214.778686, 143.336746, 22.180624, 0.000000, 0.000000, 66.700004, -1, -1, -1, 400.00, 400.00);
1869 tmpobjid = CreateDynamicObject(1073, 1212.475097, 144.329406, 22.180624, 0.000000, 0.000000, 66.700004, -1, -1, -1, 400.00, 400.00);
1870 tmpobjid = CreateDynamicObject(1073, 1211.345581, 144.815902, 22.180624, 0.000000, 0.000000, 66.700004, -1, -1, -1, 400.00, 400.00);
1871 tmpobjid = CreateDynamicObject(1075, 1211.344238, 144.842269, 21.120611, 0.000000, 0.000000, 66.599937, -1, -1, -1, 400.00, 400.00);
1872 tmpobjid = CreateDynamicObject(1075, 1212.500366, 144.341873, 21.120611, 0.000000, 0.000000, 66.599937, -1, -1, -1, 400.00, 400.00);
1873 tmpobjid = CreateDynamicObject(1075, 1213.656738, 143.841461, 21.120611, 0.000000, 0.000000, 66.599937, -1, -1, -1, 400.00, 400.00);
1874 tmpobjid = CreateDynamicObject(1075, 1214.794799, 143.348999, 21.120611, 0.000000, 0.000000, 66.599937, -1, -1, -1, 400.00, 400.00);
1875 tmpobjid = CreateDynamicObject(1185, 1208.631347, 145.991241, 22.840631, 0.000000, 0.000000, -23.699998, -1, -1, -1, 400.00, 400.00);
1876 tmpobjid = CreateDynamicObject(1141, 1208.593017, 145.790542, 22.400625, 0.000000, 0.000000, 156.499923, -1, -1, -1, 400.00, 400.00);
1877 tmpobjid = CreateDynamicObject(1155, 1206.661743, 146.614196, 21.720624, 0.000000, 0.000000, -23.399982, -1, -1, -1, 400.00, 400.00);
1878 tmpobjid = CreateDynamicObject(1187, 1208.562133, 145.987808, 20.650627, 0.000000, 0.000000, 157.199905, -1, -1, -1, 400.00, 400.00);
1879 tmpobjid = CreateDynamicObject(1128, 1204.157104, 147.625381, 21.020616, 270.000000, 0.000000, -23.100004, -1, -1, -1, 400.00, 400.00);
1880 tmpobjid = CreateDynamicObject(1131, 1201.338867, 148.622665, 21.260646, 270.000000, 0.000000, -23.799993, -1, -1, -1, 400.00, 400.00);
1881 tmpobjid = CreateDynamicObject(3761, 1199.310058, 153.477951, 21.440637, 0.000000, 0.000000, -23.299993, -1, -1, -1, 400.00, 400.00);
1882 tmpobjid = CreateDynamicObject(1010, 1200.235595, 155.865631, 21.070648, 0.000000, 0.000000, -23.600002, -1, -1, -1, 400.00, 400.00);
1883 tmpobjid = CreateDynamicObject(1010, 1199.983032, 155.288330, 21.070648, 0.000000, 0.000000, -23.600002, -1, -1, -1, 400.00, 400.00);
1884 tmpobjid = CreateDynamicObject(1008, 1199.707153, 154.511917, 21.080621, 0.000000, 0.000000, -23.199996, -1, -1, -1, 400.00, 400.00);
1885 tmpobjid = CreateDynamicObject(1008, 1199.501953, 154.033996, 21.080621, 0.000000, 0.000000, -23.199996, -1, -1, -1, 400.00, 400.00);
1886 tmpobjid = CreateDynamicObject(1009, 1198.807739, 152.512039, 21.070615, 0.000000, 0.000000, -19.300003, -1, -1, -1, 400.00, 400.00);
1887 tmpobjid = CreateDynamicObject(1009, 1198.972534, 152.984054, 21.070615, 0.000000, 0.000000, -19.300003, -1, -1, -1, 400.00, 400.00);
1888 tmpobjid = CreateDynamicObject(2798, 1198.294555, 150.953887, 21.080631, 90.000000, 0.000000, 0.000000, -1, -1, -1, 400.00, 400.00);
1889 tmpobjid = CreateDynamicObject(2798, 1198.634887, 151.513900, 21.080631, 90.000000, 0.000000, 0.000000, -1, -1, -1, 400.00, 400.00);
1890 tmpobjid = CreateDynamicObject(3633, 1201.847534, 159.742263, 19.930608, 0.000000, 0.000000, -23.399990, -1, -1, -1, 400.00, 400.00);
1891 tmpobjid = CreateDynamicObject(3633, 1201.940429, 159.704620, 20.890625, 0.000000, 0.000000, -13.499987, -1, -1, -1, 400.00, 400.00);
1892 tmpobjid = CreateDynamicObject(1370, 1202.400146, 161.045349, 19.980630, 0.000000, 0.000000, 0.000000, -1, -1, -1, 400.00, 400.00);
1893 tmpobjid = CreateDynamicObject(1370, 1202.740478, 161.955307, 19.980630, 0.000000, 0.000000, 0.000000, -1, -1, -1, 400.00, 400.00);
1894 tmpobjid = CreateDynamicObject(930, 1204.504028, 166.576889, 19.890628, 0.000000, 0.000000, 65.900009, -1, -1, -1, 400.00, 400.00);
1895 tmpobjid = CreateDynamicObject(930, 1204.977294, 167.635650, 19.890628, 0.000000, 0.000000, 65.900009, -1, -1, -1, 400.00, 400.00);
1896 tmpobjid = CreateDynamicObject(1271, 1202.940917, 162.829544, 19.830627, 0.000000, 0.000000, -22.900003, -1, -1, -1, 400.00, 400.00);
1897 tmpobjid = CreateDynamicObject(1271, 1202.940917, 162.829544, 20.500635, 0.000000, 0.000000, -22.900003, -1, -1, -1, 400.00, 400.00);
1898 tmpobjid = CreateDynamicObject(1271, 1202.940917, 162.829544, 21.170637, 0.000000, 0.000000, -22.900003, -1, -1, -1, 400.00, 400.00);
1899 tmpobjid = CreateDynamicObject(1271, 1202.940917, 162.829544, 21.830644, 0.000000, 0.000000, -22.900003, -1, -1, -1, 400.00, 400.00);
1900 tmpobjid = CreateDynamicObject(941, 1203.857910, 164.529434, 19.930614, 0.000000, 0.000000, -113.499969, -1, -1, -1, 400.00, 400.00);
1901 tmpobjid = CreateDynamicObject(19917, 1203.643432, 163.929901, 20.410617, 0.000000, 0.000000, -24.200004, -1, -1, -1, 400.00, 400.00);
1902 tmpobjid = CreateDynamicObject(920, 1203.901489, 164.938079, 20.840644, 0.000000, 0.000000, 157.199996, -1, -1, -1, 400.00, 400.00);
1903 tmpobjid = CreateDynamicObject(2001, 1207.791137, 173.225845, 19.460620, 0.000000, 0.000000, 0.000000, -1, -1, -1, 400.00, 400.00);
1904 tmpobjid = CreateDynamicObject(19898, 1221.087036, 158.033508, 19.490621, 0.000000, 0.000000, 0.000000, -1, -1, -1, 400.00, 400.00);
1905 tmpobjid = CreateDynamicObject(19898, 1227.257080, 161.573486, 19.490621, 0.000000, 0.000000, 146.000000, -1, -1, -1, 400.00, 400.00);
1906 tmpobjid = CreateDynamicObject(11706, 1207.124267, 172.594650, 19.460620, 0.000000, 0.000000, -23.000000, -1, -1, -1, 400.00, 400.00);
1907 tmpobjid = CreateDynamicObject(2994, 1206.007934, 169.798767, 19.970624, 0.000000, 0.000000, -24.199993, -1, -1, -1, 400.00, 400.00);
1908 tmpobjid = CreateDynamicObject(1778, 1206.273315, 171.344985, 19.460620, 0.000000, 0.000000, 107.799995, -1, -1, -1, 400.00, 400.00);
1909 tmpobjid = CreateDynamicObject(2165, 1211.175903, 176.624938, 19.460676, 0.000000, 0.000000, -23.299999, -1, -1, -1, 400.00, 400.00);
1910 tmpobjid = CreateDynamicObject(1671, 1211.194580, 175.069305, 19.910623, 0.000000, 0.000000, 159.999954, -1, -1, -1, 400.00, 400.00);
1911 tmpobjid = CreateDynamicObject(1811, 1212.757934, 177.644775, 20.000673, 0.000000, 0.000000, 61.899990, -1, -1, -1, 400.00, 400.00);
1912 tmpobjid = CreateDynamicObject(1811, 1211.642578, 178.110656, 20.020668, 0.000000, 0.000000, 89.699996, -1, -1, -1, 400.00, 400.00);
1913 tmpobjid = CreateDynamicObject(2606, 1211.741943, 172.659301, 21.350624, 0.000000, 0.000000, 156.200027, -1, -1, -1, 400.00, 400.00);
1914 tmpobjid = CreateDynamicObject(2606, 1211.741943, 172.659301, 21.810621, 0.000000, 0.000000, 156.200027, -1, -1, -1, 400.00, 400.00);
1915 tmpobjid = CreateDynamicObject(2368, 1220.419799, 181.404800, 19.460691, 0.000000, 0.000000, -114.399993, -1, -1, -1, 400.00, 400.00);
1916 tmpobjid = CreateDynamicObject(19929, 1208.885742, 174.055419, 19.460620, 0.000000, 0.000000, 66.299995, -1, -1, -1, 400.00, 400.00);
1917 tmpobjid = CreateDynamicObject(19929, 1211.504638, 172.905853, 19.460620, 0.000000, 0.000000, 66.299995, -1, -1, -1, 400.00, 400.00);
1918 tmpobjid = CreateDynamicObject(1518, 1209.743164, 173.677734, 20.660633, 0.000000, 0.000000, 148.000015, -1, -1, -1, 400.00, 400.00);
1919 tmpobjid = CreateDynamicObject(11743, 1208.422607, 174.243133, 20.380628, 0.000000, 0.000000, 157.600051, -1, -1, -1, 400.00, 400.00);
1920 tmpobjid = CreateDynamicObject(2437, 1208.119873, 174.168350, 20.340623, 0.000000, 0.000000, -108.500000, -1, -1, -1, 400.00, 400.00);
1921 tmpobjid = CreateDynamicObject(1785, 1210.701416, 173.413619, 20.490625, 0.000000, 0.000000, -10.399998, -1, -1, -1, 400.00, 400.00);
1922 tmpobjid = CreateDynamicObject(11706, 1213.333984, 172.134445, 19.460620, 0.000000, 0.000000, 67.600006, -1, -1, -1, 400.00, 400.00);
1923 tmpobjid = CreateDynamicObject(1703, 1218.909667, 178.760711, 19.460638, 0.000000, 0.000000, -113.200042, -1, -1, -1, 400.00, 400.00);
1924 tmpobjid = CreateDynamicObject(1703, 1217.909057, 176.426132, 19.460638, 0.000000, 0.000000, -113.200042, -1, -1, -1, 400.00, 400.00);
1925 tmpobjid = CreateDynamicObject(2167, 1209.827148, 179.708618, 19.460638, 0.000000, 0.000000, 67.000022, -1, -1, -1, 400.00, 400.00);
1926 tmpobjid = CreateDynamicObject(2167, 1209.827148, 179.708618, 20.940637, 0.000000, 0.000000, 67.000022, -1, -1, -1, 400.00, 400.00);
1927 tmpobjid = CreateDynamicObject(2167, 1210.182617, 180.546310, 19.460638, 0.000000, 0.000000, 67.000022, -1, -1, -1, 400.00, 400.00);
1928 tmpobjid = CreateDynamicObject(2167, 1210.182617, 180.546310, 20.940637, 0.000000, 0.000000, 67.000022, -1, -1, -1, 400.00, 400.00);
1929 tmpobjid = CreateDynamicObject(2608, 1211.017089, 181.871658, 20.100605, 0.000000, 0.000000, 67.600006, -1, -1, -1, 400.00, 400.00);
1930 tmpobjid = CreateDynamicObject(19894, 1212.296020, 172.819763, 20.420627, 0.000000, 0.000000, 0.000000, -1, -1, -1, 400.00, 400.00);
1931 tmpobjid = CreateDynamicObject(1808, 1208.498046, 176.435867, 19.460620, 0.000000, 0.000000, 70.999977, -1, -1, -1, 400.00, 400.00);
1932 tmpobjid = CreateDynamicObject(19898, 1208.636840, 162.493515, 19.490621, 0.000000, 0.000000, 146.300003, -1, -1, -1, 400.00, 400.00);
1933 tmpobjid = CreateDynamicObject(1003, 1229.587402, 144.366470, 23.031866, 93.599990, 0.000000, -113.700027, -1, -1, -1, 400.00, 400.00);
1934 tmpobjid = CreateDynamicObject(1002, 1229.408813, 144.466598, 22.086435, 0.000000, 0.000000, 66.100006, -1, -1, -1, 400.00, 400.00);
1935 tmpobjid = CreateDynamicObject(19325, 1240.364501, 168.856018, 21.727880, 0.000000, 0.000000, 156.500000, -1, -1, -1, 400.00, 400.00);
1936 tmpobjid = CreateDynamicObject(19325, 1237.608764, 162.519180, 21.727880, 0.000000, 0.000000, 156.500000, -1, -1, -1, 400.00, 400.00);
1937 tmpobjid = CreateDynamicObject(19325, 1234.889160, 156.264877, 21.727880, 0.000000, 0.000000, 156.500000, -1, -1, -1, 400.00, 400.00);
1938 tmpobjid = CreateDynamicObject(19325, 1231.902709, 149.396148, 21.727880, 0.000000, 0.000000, 156.500000, -1, -1, -1, 400.00, 400.00);
1939 tmpobjid = CreateDynamicObject(19828, 1234.071899, 176.568389, 21.160612, 0.000019, 0.000024, -24.700159, -1, -1, -1, 400.00, 400.00);
1940 tmpobjid = CreateDynamicObject(19828, 1234.071899, 176.568389, 21.040609, 0.000019, 0.000024, -24.700159, -1, -1, -1, 400.00, 400.00);
1941 tmpobjid = CreateDynamicObject(19828, 1233.171020, 176.958328, 21.160612, 0.000011, 0.000046, -24.700159, -1, -1, -1, 400.00, 400.00);
1942 tmpobjid = CreateDynamicObject(19828, 1233.171020, 176.958328, 21.040609, 0.000011, 0.000046, -24.700159, -1, -1, -1, 400.00, 400.00);
1943 //(9)
1944 CreateDynamicObject(17114,-722.9824200,-7350.5839800,-8.6526900,353.0950000,0.0000000,0.0000000, -1, -1, -1,sd,dd);
1945 CreateDynamicObject(17140,-503.5354900,-7153.4067400,16.2118100,353.0900000,0.0000000,0.0000000, -1, -1, -1,sd,dd);
1946 CreateDynamicObject(17143,-405.5605500,-6997.1347700,-19.9782500,353.0950000,0.0000000,0.0000000, -1, -1, -1,sd,dd);
1947 CreateDynamicObject(17141,-311.7879600,-7108.1460000,26.7776200,353.1000000,0.0000000,0.0000000, -1, -1, -1,sd,dd);
1948 CreateDynamicObject(17132,-255.9355500,-7351.9375000,-13.8559500,353.0900000,0.0000000,-0.0600000, -1, -1, -1,sd,dd);
1949 CreateDynamicObject(17133,-471.5564300,-7322.6909200,-1.3618100,353.0900000,0.0000000,0.0000000, -1, -1, -1,sd,dd);
1950 CreateDynamicObject(17134,-200.0058600,-7124.6577100,-0.1944400,-6.9000000,0.0000000,0.0000000, -1, -1, -1,sd,dd);
1951 CreateDynamicObject(17088,-982.8496100,-7308.7050800,-25.9733500,353.0950000,0.0000000,0.0000000, -1, -1, -1,sd,dd);
1952 CreateDynamicObject(17142,-384.9511700,-6926.7724600,-57.8855400,-6.9000000,0.0000000,0.0000000, -1, -1, -1,sd,dd);
1953 CreateDynamicObject(17130,-172.2949200,-6852.7724600,-95.4461700,-6.9000000,0.0000000,0.0000000, -1, -1, -1,sd,dd);
1954 CreateDynamicObject(17139,-722.6152300,-7141.3193000,-15.4280200,353.0900000,0.0000000,0.0000000, -1, -1, -1,sd,dd);
1955 CreateDynamicObject(17150,-554.8730500,-7328.1884800,-14.1250500,-6.9000000,0.0000000,0.0000000, -1, -1, -1,sd,dd);
1956 CreateDynamicObject(17148,-796.2168000,-7389.8994100,-1.6915100,-6.9000000,0.0000000,0.0000000, -1, -1, -1,sd,dd);
1957 CreateDynamicObject(17146,-1000.2636700,-7408.7285200,2.4915000,-6.9000000,0.0000000,0.0000000, -1, -1, -1,sd,dd);
1958
1959 //to be retextured
1960 new myobject3 = CreateDynamicObject(4852,-579.7050800,-7355.1953100,14.6729900,1.3900000,0.0000000,24.2910000, -1, -1, -1,sd,dd); //retextured
1961 SetDynamicObjectMaterial(myobject3, 6, 17114, "cuntwlandwest", "grasstype4", 0);
1962 SetDynamicObjectMaterial(myobject3, 5, 17114, "cuntwlandwest", "rock_country128", 0);
1963 SetDynamicObjectMaterial(myobject3, 7, 17114, "cuntwlandwest", "cw2_mounttrail", 0);
1964 new myobject4 = CreateDynamicObject(4851,-782.5293000,-7439.2695300,19.3962200,1.3950000,0.0000000,24.2960000, -1, -1, -1,sd,dd); //retextured
1965 SetDynamicObjectMaterial(myobject4, 2, 17114, "cuntwlandwest", "grasstype4", 0);
1966 SetDynamicObjectMaterial(myobject4, 3, 17114, "cuntwlandwest", "cw2_mounttrail", 0);
1967 new myobject5 = CreateDynamicObject(4823,-644.6085200,-7364.8657200,16.2825800,1.4000000,0.0000000,24.3000000, -1, -1, -1,sd,dd); //retextured
1968 SetDynamicObjectMaterial(myobject5, 4, 17114, "cuntwlandwest", "grasstype4", 0);
1969 SetDynamicObjectMaterial(myobject5, 5, 17114, "cuntwlandwest", "cw2_mounttrailblank", 0);
1970 SetDynamicObjectMaterial(myobject5, 3, 17114, "cuntwlandwest", "rocktq128_grass4blend", 0);
1971 SetDynamicObjectMaterial(myobject5, 7, 17114, "cuntwlandwest", "grasstype4", 0);
1972 new myobject1 = CreateDynamicObject(4875,-615.6357400,-7593.4033200,16.8556100,1.3900000,0.0000000,24.2910000, -1, -1, -1,sd,dd); //retextured
1973 SetDynamicObjectMaterial(myobject1, 5, 17114, "cuntwlandwest", "grasstype4", 0);
1974 SetDynamicObjectMaterial(myobject1, 4, 17114, "cuntwlandwest", "rock_country128", 0);
1975 SetDynamicObjectMaterial(myobject1, 6, 17114, "cuntwlandwest", "cw2_mounttrail", 0);
1976 new myobject2 = CreateDynamicObject(4810,-768.5390600,-7681.5371100,15.5941000,1.3900000,0.0000000,24.2910000, -1, -1, -1,sd,dd); //retextured
1977 SetDynamicObjectMaterial(myobject2, 5, 17114, "cuntwlandwest", "grasstype4", 0);
1978 SetDynamicObjectMaterial(myobject2, 4, 17114, "cuntwlandwest", "rock_country128", 0);
1979 SetDynamicObjectMaterial(myobject2, 6, 17114, "cuntwlandwest", "cw2_mounttrail", 0);
1980 new myobject6 = CreateDynamicObject(4825,-794.8242200,-7499.6552700,43.7059100,1.3950000,0.0000000,24.2960000, -1, -1, -1,sd,dd); //retextured
1981 SetDynamicObjectMaterial(myobject6, 0, 17114, "cuntwlandwest", "grasstype4", 0);
1982 SetDynamicObjectMaterial(myobject6, 1, 17114, "cuntwlandwest", "grasstype4", 0);
1983 SetDynamicObjectMaterial(myobject6, 2, 17114, "cuntwlandwest", "ws_rottenwall", 0);
1984 SetDynamicObjectMaterial(myobject6, 3, 17114, "cuntwlandwest", "ws_rottenwall", 0);
1985 SetDynamicObjectMaterial(myobject6, 4, 4825, "griffobs_las", "ws_neatwoodfence", 0);
1986
1987 CreateDynamicObject(5023,-797.9458600,-7735.5000000,6.5995400,1.4000000,0.0000000,24.3000000, -1, -1, -1,sd,dd);
1988 CreateDynamicObject(4812,-853.8361200,-7666.7724600,-1.8497200,1.4000000,0.0000000,24.3000000, -1, -1, -1,sd,dd);
1989 CreateDynamicObject(4813,-892.7047700,-7534.8208000,1.4803000,1.4000000,0.0000000,24.3000000, -1, -1, -1,sd,dd);
1990 CreateDynamicObject(4824,-723.3232400,-7467.3110400,41.1205300,1.4000000,0.0000000,24.3000000, -1, -1, -1,sd,dd);
1991 CreateDynamicObject(5062,-793.8483300,-7564.7710000,37.7599900,1.4000000,0.0000000,24.3000000, -1, -1, -1,sd,dd);
1992 CreateDynamicObject(4811,-768.5499300,-7743.2143600,-4.4101400,1.4000000,0.0000000,24.3000000, -1, -1, -1,sd,dd);
1993 CreateDynamicObject(4809,-826.1928100,-7696.1010700,-11.7211800,1.4000000,0.0000000,24.3000000, -1, -1, -1,sd,dd);
1994 CreateDynamicObject(5021,-892.9930400,-7527.7656300,-3.9550700,1.4000000,0.0000000,24.3000000, -1, -1, -1,sd,dd);
1995 CreateDynamicObject(18309,-1044.8189700,-7579.9658200,121.2366000,0.0000000,0.0000000,178.7000000, -1, -1, -1,sd,dd);
1996 CreateDynamicObject(18310,-1221.3890400,-7533.5332000,99.0334500,0.0000000,0.0000000,178.7000000, -1, -1, -1,sd,dd);
1997 CreateDynamicObject(18317,-1034.8773200,-7350.9213900,84.1350400,0.0000000,0.0000000,178.7000000, -1, -1, -1,sd,dd);
1998 CreateDynamicObject(18319,-1226.7973600,-7343.5029300,62.2209500,0.0000000,0.0000000,178.7000000, -1, -1, -1,sd,dd);
1999 CreateDynamicObject(18327,-1023.8239700,-7161.7329100,-8.8180800,0.0000000,0.0000000,178.7000000, -1, -1, -1,sd,dd);
2000 CreateDynamicObject(18328,-1225.1535600,-7154.6943400,-22.1696800,0.0000000,0.0000000,178.7000000, -1, -1, -1,sd,dd);
2001 CreateDynamicObject(18311,-1325.4389600,-7527.3193400,-60.0837500,0.0000000,0.0000000,178.7000000, -1, -1, -1,sd,dd);
2002 CreateDynamicObject(18302,-1049.4121100,-7763.0498000,-18.9274600,0.0000000,0.0000000,178.6980000, -1, -1, -1,sd,dd);
2003 CreateDynamicObject(18303,-1253.5583500,-7737.9262700,-19.2712400,0.0000000,0.0000000,178.7000000, -1, -1, -1,sd,dd);
2004 CreateDynamicObject(18316,-810.8490000,-7334.6567400,-54.5915100,0.0000000,0.0000000,178.7000000, -1, -1, -1,sd,dd);
2005 CreateDynamicObject(18307,-846.7667800,-7552.0224600,33.7209900,0.0000000,0.0000000,178.7000000, -1, -1, -1,sd,dd);
2006
2007 //to be retextured
2008 new myobject13 = CreateDynamicObject(16260,-681.8273300,-7740.9384800,2.4080900,0.0000000,-0.5000000,-132.7000000, -1, -1, -1,sd,dd); //retextured
2009 SetDynamicObjectMaterial(myobject13, 0, 6281, "santamonicalaw2", "sandnew_law", 0);
2010 SetDynamicObjectMaterial(myobject13, 1, 6281, "santamonicalaw2", "sandnew_law", 0);
2011 new myobject14 = CreateDynamicObject(16198,-641.5855700,-7533.3857400,-3.3722700,0.0000000,-0.5000000,-132.7000000, -1, -1, -1,sd,dd); //retextured
2012 SetDynamicObjectMaterial(myobject14, 0, 6281, "santamonicalaw2", "sandnew_law", 0);
2013 SetDynamicObjectMaterial(myobject14, 1, 6281, "santamonicalaw2", "sandnew_law", 0);
2014 new myobject15 = CreateDynamicObject(16194,-595.7285200,-7645.5722700,-0.1662400,0.0000000,359.4950000,227.2960000, -1, -1, -1,sd,dd); //retextured
2015 SetDynamicObjectMaterial(myobject15, 0, 6281, "santamonicalaw2", "sandnew_law", 0);
2016 SetDynamicObjectMaterial(myobject15, 1, 6281, "santamonicalaw2", "sandnew_law", 0);
2017 new myobject16 = CreateDynamicObject(16260,-589.9486700,-7578.3764600,2.7252400,0.0000000,-0.5000000,-151.8000000, -1, -1, -1,sd,dd); //retextured
2018 SetDynamicObjectMaterial(myobject16, 0, 6281, "santamonicalaw2", "sandnew_law", 0);
2019 SetDynamicObjectMaterial(myobject16, 1, 6281, "santamonicalaw2", "sandnew_law", 0);
2020 new myobject17 = CreateDynamicObject(16198,-484.0074200,-7395.4179700,-3.0551200,0.0000000,-0.5000000,-151.8000000, -1, -1, -1,sd,dd); //retextured
2021 SetDynamicObjectMaterial(myobject17, 0, 6281, "santamonicalaw2", "sandnew_law", 0);
2022 SetDynamicObjectMaterial(myobject17, 1, 6281, "santamonicalaw2", "sandnew_law", 0);
2023 new myobject18 = CreateDynamicObject(16194,-477.3844300,-7516.4331100,0.1509100,0.0000000,-0.5000000,-151.8000000, -1, -1, -1,sd,dd); //retextured
2024 SetDynamicObjectMaterial(myobject18, 0, 6281, "santamonicalaw2", "sandnew_law", 0);
2025 SetDynamicObjectMaterial(myobject18, 1, 6281, "santamonicalaw2", "sandnew_law", 0);
2026
2027 CreateDynamicObject(10826,-676.8307500,-7249.5317400,-14.8151100,0.0000000,0.0000000,94.1000000, -1, -1, -1,sd,dd);
2028 CreateDynamicObject(11103,-655.5892900,-7196.6650400,4.5850600,0.0000000,0.0000000,-85.9000000, -1, -1, -1,sd,dd);
2029 CreateDynamicObject(17031, -762.66382, -7125.29492, -6.30000, 2.88000, -9.66000, -35.50600, -1, -1, -1,sd,dd);
2030 CreateDynamicObject(11012,-673.0214800,-7211.7861300,7.4756900,0.0000000,0.0000000,274.0980000, -1, -1, -1,sd,dd);
2031 CreateDynamicObject(11007,-684.3117700,-7215.0156300,7.3897500,0.0000000,0.0000000,-85.9000000, -1, -1, -1,sd,dd);
2032 CreateDynamicObject(11085,-673.9550800,-7214.2734400,8.0147500,0.0000000,0.0000000,274.0980000, -1, -1, -1,sd,dd);
2033 CreateDynamicObject(11233,-691.6834700,-7215.5439500,4.7335000,0.0000000,0.0000000,-85.9000000, -1, -1, -1,sd,dd);
2034 CreateDynamicObject(11234,-688.9155900,-7199.3046900,4.6006900,0.0000000,0.0000000,-85.9000000, -1, -1, -1,sd,dd);
2035 CreateDynamicObject(11235,-698.7107500,-7200.0068400,4.6006900,0.0000000,0.0000000,-85.9000000, -1, -1, -1,sd,dd);
2036 CreateDynamicObject(11236,-691.6834700,-7215.5439500,4.7335000,0.0000000,0.0000000,-85.9000000, -1, -1, -1,sd,dd);
2037 CreateDynamicObject(11087,-696.0024400,-7237.1347700,4.7022500,0.0000000,0.0000000,-85.9000000, -1, -1, -1,sd,dd);
2038 CreateDynamicObject(11086,-673.7295500,-7214.2573200,10.0303800,0.0000000,0.0000000,-85.9000000, -1, -1, -1,sd,dd);
2039 CreateDynamicObject(11089,-701.7070900,-7195.1381800,5.3741300,0.0000000,0.0000000,-85.9000000, -1, -1, -1,sd,dd);
2040 CreateDynamicObject(941,-685.1164600,-7204.4448200,2.6006900,0.0000000,0.0000000,-85.9000000, -1, -1, -1,sd,dd);
2041 CreateDynamicObject(941,-684.8623000,-7207.9902300,2.6006900,0.0000000,0.0000000,-85.9000000, -1, -1, -1,sd,dd);
2042 CreateDynamicObject(941,-684.6098600,-7211.5127000,2.6006900,0.0000000,0.0000000,-85.9000000, -1, -1, -1,sd,dd);
2043 CreateDynamicObject(941,-684.3495500,-7215.1435500,2.6006900,0.0000000,0.0000000,-85.9000000, -1, -1, -1,sd,dd);
2044 CreateDynamicObject(941,-684.1127300,-7218.4477500,2.6006900,0.0000000,0.0000000,-85.9000000, -1, -1, -1,sd,dd);
2045 CreateDynamicObject(10826,-888.1748000,-7721.6220700,22.1534200,0.0000000,0.0000000,289.9950000, -1, -1, -1,sd,dd);
2046 CreateDynamicObject(10833,-991.5214800,-7707.6738300,10.2003100,0.0000000,0.0000000,289.9900000, -1, -1, -1,sd,dd);
2047 CreateDynamicObject(10827,-951.9602100,-7604.1420900,38.8565700,0.0000000,0.0000000,-70.0000000, -1, -1, -1,sd,dd);
2048 CreateDynamicObject(10834,-813.6170000,-7731.0083000,10.2003000,0.0000000,0.0000000,-70.0000000, -1, -1, -1,sd,dd);
2049 CreateDynamicObject(10824,-890.5613400,-7719.4062500,17.2315600,0.0000000,0.0000000,-70.0000000, -1, -1, -1,sd,dd);
2050 CreateDynamicObject(9587,-592.7509800,-7704.2226600,18.7586600,11.2990000,357.5990000,74.6960000, -1, -1, -1,sd,dd);
2051 CreateDynamicObject(9588,-596.4311500,-7705.7011700,2.9488500,11.3000000,-2.4000000,74.7000000, -1, -1, -1,sd,dd);
2052 CreateDynamicObject(9589,-592.9888900,-7691.1455100,0.0636700,11.3000000,-2.4000000,74.7000000, -1, -1, -1,sd,dd);
2053 CreateDynamicObject(9590,-596.0459000,-7705.1279300,4.0891300,11.2990000,357.5990000,74.6960000, -1, -1, -1,sd,dd);
2054 CreateDynamicObject(1558,-595.5892900,-7700.8608400,-2.7694100,11.3000000,-2.4000000,74.7000000, -1, -1, -1,sd,dd);
2055 CreateDynamicObject(18259, -1062.27319, -7102.73340, 34.55359, 0.00000, 0.00000, -124.73999, -1, -1, -1,sd,dd);
2056 CreateDynamicObject(1558,-606.9035600,-7722.3022500,-2.7149100,11.3000000,-2.4000000,74.7000000, -1, -1, -1,sd,dd);
2057 CreateDynamicObject(1558,-602.9563600,-7717.7573200,-3.0200900,11.3000000,-2.4000000,74.7000000, -1, -1, -1,sd,dd);
2058 CreateDynamicObject(1558,-610.9873700,-7737.5351600,-0.4785900,11.3000000,-2.4000000,74.7000000, -1, -1, -1,sd,dd);
2059 CreateDynamicObject(1558,-611.2610500,-7738.5043900,-0.5199700,11.3000000,-2.4000000,74.7000000, -1, -1, -1,sd,dd);
2060 CreateDynamicObject(1558,-614.4556900,-7736.4609400,-2.6907000,11.3000000,-2.4000000,74.7000000, -1, -1, -1,sd,dd);
2061 CreateDynamicObject(1558,-614.7293700,-7737.4301800,-2.7320800,11.3000000,-2.4000000,74.7000000, -1, -1, -1,sd,dd);
2062 CreateDynamicObject(1558,-600.7995600,-7733.0419900,-4.8793900,11.3000000,-2.4000000,74.7000000, -1, -1, -1,sd,dd);
2063 CreateDynamicObject(1558,-594.0910600,-7731.7807600,-4.9416500,11.3000000,-2.4000000,74.7000000, -1, -1, -1,sd,dd);
2064 CreateDynamicObject(1558,-594.6790200,-7733.1298800,-5.9983200,11.3000000,-2.4000000,74.7000000, -1, -1, -1,sd,dd);
2065 CreateDynamicObject(1558,-594.4201700,-7732.2133800,-5.9591800,11.3000000,-2.4000000,74.7000000, -1, -1, -1,sd,dd);
2066 CreateDynamicObject(1558,-594.1273800,-7731.1767600,-5.9149000,11.3000000,-2.4000000,74.7000000, -1, -1, -1,sd,dd);
2067 CreateDynamicObject(9586,-596.9055200,-7714.1801800,11.8948000,11.3000000,-2.4000000,74.7000000, -1, -1, -1,sd,dd);
2068 CreateDynamicObject(9604,-591.1217000,-7695.8710900,20.5394500,11.3000000,-2.4000000,74.7000000, -1, -1, -1,sd,dd);
2069 CreateDynamicObject(9584,-615.0900900,-7785.1699200,17.8623000,11.3000000,-2.4000000,74.7000000, -1, -1, -1,sd,dd);
2070 CreateDynamicObject(9585,-598.0722700,-7711.0620100,2.1450000,11.3000000,357.6000000,74.7000000, -1, -1, -1,sd,dd);
2071 CreateDynamicObject(9698,-610.3483900,-7774.6884800,20.9290400,11.3000000,-2.4000000,74.7000000, -1, -1, -1,sd,dd);
2072 CreateDynamicObject(9820,-611.1635100,-7775.7143600,25.0472500,11.3000000,-2.4000000,74.7000000, -1, -1, -1,sd,dd);
2073 CreateDynamicObject(9819,-615.7214400,-7770.1499000,26.4769200,11.3000000,-2.4000000,74.7000000, -1, -1, -1,sd,dd);
2074 CreateDynamicObject(9761,-594.9226700,-7714.3974600,21.7531200,11.3000000,-2.4000000,74.7000000, -1, -1, -1,sd,dd);
2075 CreateDynamicObject(9818,-609.7184400,-7771.6293900,25.9901800,11.3000000,-2.4000000,74.7000000, -1, -1, -1,sd,dd);
2076 CreateDynamicObject(9821,-614.6087600,-7774.1362300,17.3364600,11.3000000,-2.4000000,74.7000000, -1, -1, -1,sd,dd);
2077 CreateDynamicObject(9583,-624.8397800,-7772.4238300,26.0520100,11.3000000,-2.4000000,74.7000000, -1, -1, -1,sd,dd);
2078 CreateDynamicObject(3269,-396.3362700,-7211.0805700,66.7900600,0.0000000,0.0000000,0.0000000, -1, -1, -1,sd,dd);
2079 CreateDynamicObject(3369,-396.3362700,-7211.0805700,66.7900600,0.0000000,0.0000000,0.0000000, -1, -1, -1,sd,dd);
2080 CreateDynamicObject(3271,-366.1944300,-7230.3422900,73.6653700,32.1000000,0.0000000,-153.3000000, -1, -1, -1,sd,dd);
2081 CreateDynamicObject(3367,-366.1944300,-7230.3422900,73.6653700,32.1000000,0.0000000,-153.3000000, -1, -1, -1,sd,dd);
2082 CreateDynamicObject(10357,-1147.5000000,-7522.8999000,245.6000100,0.0000000,0.0000000,0.0000000, -1, -1, -1,sd,dd);
2083 CreateDynamicObject(6295,-236.8999900,-7163.8999000,62.8000000,0.0000000,0.0000000,250.0000000, -1, -1, -1,sd,dd);
2084 CreateDynamicObject(17026,-719.9000200,-7769.7002000,-4.8000000,0.0000000,0.0000000,216.0000000, -1, -1, -1,sd,dd);
2085 CreateDynamicObject(17026,-442.7999900,-7413.7998000,-1.9000000,0.0000000,0.0000000,261.9970000, -1, -1, -1,sd,dd);
2086 CreateDynamicObject(17031,-607.2002000,-7624.8994100,2.1000000,0.0000000,0.0000000,0.0000000, -1, -1, -1,sd,dd);
2087 CreateDynamicObject(18228,-628.9000200,-7721.5000000,1.1000000,0.0000000,0.0000000,222.0000000, -1, -1, -1,sd,dd);
2088 CreateDynamicObject(18228,-653.7999900,-7755.7002000,-2.5000000,0.0000000,0.0000000,193.9950000, -1, -1, -1,sd,dd);
2089 CreateDynamicObject(17026,-516.7999900,-7548.2002000,-3.6000000,0.0000000,0.0000000,303.9960000, -1, -1, -1,sd,dd);
2090 CreateDynamicObject(17026,-340.8999900,-7352.2998000,-3.5000000,0.0000000,0.0000000,237.9920000, -1, -1, -1,sd,dd);
2091 CreateDynamicObject(17026,-238.8999900,-7316.2002000,-2.2000000,0.0000000,0.0000000,311.9910000, -1, -1, -1,sd,dd);
2092 CreateDynamicObject(17031,-179.1000100,-7154.0000000,1.0000000,0.0000000,0.0000000,10.0000000, -1, -1, -1,sd,dd);
2093 CreateDynamicObject(17031,-298.7000100,-7053.8999000,0.6000000,0.0000000,0.0000000,91.9980000, -1, -1, -1,sd,dd);
2094 CreateDynamicObject(17031,-433.2999900,-7095.0000000,0.0000000,0.0000000,0.0000000,73.9940000, -1, -1, -1,sd,dd);
2095 CreateDynamicObject(17031,-749.5999800,-7175.1001000,-6.3000000,0.0000000,0.0000000,55.9940000, -1, -1, -1,sd,dd);
2096 CreateDynamicObject(17031,-1184.3000500,-7230.3999000,-1.2000000,0.0000000,0.0000000,119.9920000, -1, -1, -1,sd,dd);
2097 CreateDynamicObject(803,-681.1845700,-7202.5644500,3.3982600,0.0000000,0.0000000,0.0000000, -1, -1, -1,sd,dd);
2098 CreateDynamicObject(17026,-388.3999900,-7356.0000000,-0.8000000,0.0000000,0.0000000,239.9910000, -1, -1, -1,sd,dd);
2099 CreateDynamicObject(689, -354.29999, -7270.70020, 69.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2100 CreateDynamicObject(689, -717.11127, -7392.71436, 19.20429, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2101 CreateDynamicObject(689, -648.24219, -7477.63525, 14.32120, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2102 CreateDynamicObject(689, -599.69824, -7455.89355, 16.92498, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2103 CreateDynamicObject(689, -562.65955, -7434.36816, 8.12211, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2104 CreateDynamicObject(689, -526.17413, -7418.60010, 10.74588, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2105 CreateDynamicObject(689, -497.88385, -7373.50586, -2.18506, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2106 CreateDynamicObject(689, -537.46735, -7305.94238, 18.77411, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2107 CreateDynamicObject(689, -601.83429, -7307.18945, 5.02064, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2108 CreateDynamicObject(689, -642.84576, -7249.19189, -5.73804, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2109 CreateDynamicObject(689, -643.29053, -7278.98291, -6.84087, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2110 CreateDynamicObject(689, -1069.76343, -7431.50488, 145.06396, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2111 CreateDynamicObject(689, -1049.25024, -7434.32275, 124.55835, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2112 CreateDynamicObject(689, -1041.29529, -7456.16162, 130.68637, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2113 CreateDynamicObject(689, -982.48303, -7419.12891, 99.66325, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2114 CreateDynamicObject(689, -975.20508, -7402.17285, 86.27419, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2115 CreateDynamicObject(689, -985.63763, -7385.68359, 95.71262, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2116 CreateDynamicObject(689, -968.10181, -7377.16846, 83.39412, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2117 CreateDynamicObject(689, -969.14240, -7436.10352, 81.90887, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2118 CreateDynamicObject(689, -990.39081, -7362.27100, 93.15427, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2119 CreateDynamicObject(689, -987.24683, -7340.07373, 82.86706, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2120 CreateDynamicObject(689, -1011.85791, -7321.54199, 90.44798, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2121 CreateDynamicObject(689, -921.44513, -7420.98193, 70.95816, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2122 CreateDynamicObject(689, -915.80499, -7400.11182, 62.19176, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2123 CreateDynamicObject(689, -931.57336, -7391.27051, 67.06133, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2124 CreateDynamicObject(689, -919.51569, -7365.16943, 56.49749, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2125 CreateDynamicObject(689, -943.29669, -7353.65869, 67.63078, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2126 CreateDynamicObject(689, -853.70319, -7440.09277, 13.28315, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2127 CreateDynamicObject(689, -813.10590, -7412.77246, 19.20405, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2128 CreateDynamicObject(689, -859.66266, -7399.33545, 2.91816, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2129 CreateDynamicObject(689, -809.60809, -7381.95752, 1.79675, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2130 CreateDynamicObject(689, -826.00983, -7322.02344, 27.58136, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2131 CreateDynamicObject(689, -886.95294, -7321.10889, 16.95414, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2132 CreateDynamicObject(689, -866.77509, -7312.90430, 23.28356, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2133 CreateDynamicObject(689, -882.53424, -7296.46924, 22.34754, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2134 CreateDynamicObject(689, -807.65930, -7195.02979, -5.66238, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2135 CreateDynamicObject(689, -777.66370, -7176.32178, 2.13023, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2136 CreateDynamicObject(689, -648.02020, -7323.96094, -10.74947, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2137 CreateDynamicObject(689, -781.48413, -7596.95752, 24.25986, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2138 CreateDynamicObject(689, -799.19855, -7657.01172, 15.46491, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2139 CreateDynamicObject(689, -791.43042, -7692.28320, 15.76111, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2140 CreateDynamicObject(689, -775.99115, -7724.48145, 10.26342, 0.00000, 0.00000, -35.82000, -1, -1, -1,sd,dd);
2141 CreateDynamicObject(689, -746.41541, -7606.99463, 31.22133, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2142 CreateDynamicObject(689, -686.12415, -7502.48633, 22.50000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2143 CreateDynamicObject(689, -785.16089, -7089.04590, 27.82912, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2144 CreateDynamicObject(689, -781.97040, -7126.97656, 26.65476, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2145 CreateDynamicObject(689, -920.01978, -7019.75732, 22.91189, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2146 CreateDynamicObject(689, -1052.00037, -7139.27539, 17.20000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2147 CreateDynamicObject(689, -1026.09998, -7107.21826, 19.80000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2148 CreateDynamicObject(689, -697.39294, -7627.37598, 20.76392, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2149 CreateDynamicObject(689, -572.35016, -7491.66699, 11.11436, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2150 CreateDynamicObject(689, -782.31598, -7407.07568, 18.41035, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2151 CreateDynamicObject(689, -842.00604, -7314.02686, 27.58136, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2152 CreateDynamicObject(689, -828.87488, -7342.13818, 15.74212, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2153 CreateDynamicObject(689, -849.19360, -7363.06104, 15.74212, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2154 CreateDynamicObject(689, -916.80011, -7270.52393, 18.50000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2155 CreateDynamicObject(689, -572.21606, -7294.53760, 11.39985, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2156 CreateDynamicObject(689, -551.67218, -7286.01855, 12.94772, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2157 CreateDynamicObject(689, -561.38629, -7251.25488, 9.41626, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2158 CreateDynamicObject(689, -720.66907, -7250.04297, 1.80000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2159 CreateDynamicObject(689, -721.98596, -7274.16309, 1.80000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2160 CreateDynamicObject(689, -612.97516, -7271.99609, 2.57655, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2161 CreateDynamicObject(689, -620.74548, -7240.38770, 4.24206, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2162 CreateDynamicObject(689, -579.10364, -7209.89063, -0.90283, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2163 CreateDynamicObject(689, -683.93219, -7379.90625, 17.58070, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2164 CreateDynamicObject(689, -749.26129, -7401.23633, 21.74803, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2165 CreateDynamicObject(689, -485.80591, -7395.50879, 0.70000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2166 CreateDynamicObject(689, -542.78912, -7454.48145, 3.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2167 CreateDynamicObject(689, -645.44867, -7548.63379, 18.40000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2168 CreateDynamicObject(689, -661.00769, -7577.38037, 13.70000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2169 CreateDynamicObject(689, -727.13318, -7633.43994, 26.00860, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2170 CreateDynamicObject(689, -768.59033, -7693.04443, 16.44851, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2171 CreateDynamicObject(689, -663.21460, -7489.01953, 22.18337, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2172 CreateDynamicObject(689, -627.03851, -7519.32373, 13.93444, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2173 CreateDynamicObject(689, -612.64923, -7478.88135, 20.78382, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2174 CreateDynamicObject(689, -750.44073, -7654.80713, 26.00860, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2175 CreateDynamicObject(689, -721.38452, -7659.01270, 19.40211, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2176 CreateDynamicObject(689, -739.37299, -7683.28760, 19.40211, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2177 CreateDynamicObject(689, -592.52972, -7524.83887, 1.60000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2178 CreateDynamicObject(689, -510.35583, -7404.15332, 9.70675, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2179 CreateDynamicObject(689, -1164.67981, -7421.37451, 155.49188, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2180 CreateDynamicObject(689, -1187.92859, -7418.21533, 153.75462, 0.00000, 0.00000, -43.02000, -1, -1, -1,sd,dd);
2181 CreateDynamicObject(689, -1179.50598, -7437.25342, 151.77138, 0.00000, 0.00000, -43.02000, -1, -1, -1,sd,dd);
2182 CreateDynamicObject(689, -1176.38062, -7458.72461, 151.77138, 0.00000, 0.00000, -43.02000, -1, -1, -1,sd,dd);
2183 CreateDynamicObject(689, -1151.34863, -7432.71582, 151.77138, 0.00000, 0.00000, -43.02000, -1, -1, -1,sd,dd);
2184 CreateDynamicObject(689, -1178.25195, -7480.54639, 151.77138, 0.00000, 0.00000, -116.70000, -1, -1, -1,sd,dd);
2185 CreateDynamicObject(689, -1158.04895, -7499.38086, 151.77138, 0.00000, 0.00000, -147.95999, -1, -1, -1,sd,dd);
2186 CreateDynamicObject(689, -1179.32703, -7502.24805, 151.77138, 0.00000, 0.00000, -147.95999, -1, -1, -1,sd,dd);
2187 CreateDynamicObject(689, -1139.23376, -7504.47461, 151.77138, 0.00000, 0.00000, -173.93993, -1, -1, -1,sd,dd);
2188 CreateDynamicObject(689, -1121.41101, -7516.23877, 151.77138, 0.00000, 0.00000, -173.93993, -1, -1, -1,sd,dd);
2189 CreateDynamicObject(689, -1146.33594, -7522.05420, 151.77138, 0.00000, 0.00000, -173.93993, -1, -1, -1,sd,dd);
2190 CreateDynamicObject(689, -916.20001, -7102.39990, 24.90000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2191 CreateDynamicObject(689, -864.40002, -7123.79980, 29.80000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2192 CreateDynamicObject(689, -833.63495, -7104.19238, 27.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2193 CreateDynamicObject(689, -794.90002, -7070.10010, 28.77023, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2194 CreateDynamicObject(689, -665.30621, -7425.64941, 28.20000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2195 CreateDynamicObject(689, -656.20001, -7406.00000, 24.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2196 CreateDynamicObject(689, -622.53711, -7418.49805, 23.20000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2197 CreateDynamicObject(689, -657.09998, -7374.20020, 19.10000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2198 CreateDynamicObject(689, -626.00000, -7389.20020, 15.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2199 CreateDynamicObject(689, -607.90002, -7359.20020, 14.50000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2200 CreateDynamicObject(689, -595.59998, -7381.39990, 14.90000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2201 CreateDynamicObject(689, -568.20001, -7380.00000, 18.60000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2202 CreateDynamicObject(689, -619.11938, -7460.84229, 24.80000, 0.00000, 0.00000, -41.51998, -1, -1, -1,sd,dd);
2203 CreateDynamicObject(689, -581.70801, -7440.44336, 21.00000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2204 CreateDynamicObject(689, -534.00000, -7373.50000, 16.80000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2205 CreateDynamicObject(689, -554.20001, -7314.79980, 16.00000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2206 CreateDynamicObject(689, -712.85474, -7348.11572, 2.70000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2207 CreateDynamicObject(689, -692.23413, -7338.18457, -1.50000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2208 CreateDynamicObject(689, -626.20001, -7331.39990, -1.10000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2209 CreateDynamicObject(689, -673.14349, -7292.11182, -5.10000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2210 CreateDynamicObject(689, -727.97028, -7307.95361, -6.50000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2211 CreateDynamicObject(689, -707.90002, -7297.00000, -6.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2212 CreateDynamicObject(689, -605.90002, -7285.39990, 8.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2213 CreateDynamicObject(689, -582.00000, -7270.50000, 8.80000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2214 CreateDynamicObject(689, -591.09998, -7238.39990, -0.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2215 CreateDynamicObject(689, -625.09998, -7260.20020, -1.50000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2216 CreateDynamicObject(689, -664.79999, -7273.29980, -13.80000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2217 CreateDynamicObject(689, -578.63312, -7316.09570, 15.40000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2218 CreateDynamicObject(689, -634.29999, -7297.89990, 2.60000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2219 CreateDynamicObject(689, -449.36685, -7384.73291, 0.99440, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2220 CreateDynamicObject(689, -469.59796, -7363.21973, -6.60000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2221 CreateDynamicObject(689, -452.48297, -7401.50537, 0.31345, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2222 CreateDynamicObject(689, -581.84772, -7398.14258, 22.40000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2223 CreateDynamicObject(689, -711.90002, -7415.70020, 28.90000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2224 CreateDynamicObject(689, -702.50000, -7567.00000, 26.90000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2225 CreateDynamicObject(689, -644.09479, -7428.33057, 25.60000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2226 CreateDynamicObject(689, -668.40784, -7335.94971, -5.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2227 CreateDynamicObject(689, -747.24518, -7315.72900, -0.70000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2228 CreateDynamicObject(689, -779.20001, -7384.20020, 1.60000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2229 CreateDynamicObject(689, -1028.72253, -7083.94287, 27.70000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2230 CreateDynamicObject(689, -1051.40002, -7112.20020, 19.80000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2231 CreateDynamicObject(689, -1059.80005, -7073.39990, 19.60000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2232 CreateDynamicObject(689, -1083.50000, -7113.39990, 20.10000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2233 CreateDynamicObject(689, -1073.19995, -7141.39990, 17.20000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2234 CreateDynamicObject(689, -1032.09998, -7163.29980, 28.60000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2235 CreateDynamicObject(689, -950.79999, -7058.39990, 25.80000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2236 CreateDynamicObject(689, -916.00000, -7035.39990, 22.20000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2237 CreateDynamicObject(689, -891.40002, -7034.00000, 32.90000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2238 CreateDynamicObject(689, -860.00000, -7023.20020, 29.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2239 CreateDynamicObject(689, -902.70001, -7182.70020, 18.50000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2240 CreateDynamicObject(689, -873.35645, -7162.21338, 23.10000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2241 CreateDynamicObject(689, -852.00000, -7174.00000, 15.00000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2242 CreateDynamicObject(689, -874.29999, -7187.89990, 17.20000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2243 CreateDynamicObject(689, -914.00000, -7208.50000, 15.80000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2244 CreateDynamicObject(689, -828.29999, -7153.70020, 20.50000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2245 CreateDynamicObject(689, -817.20001, -7130.79980, 23.80000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2246 CreateDynamicObject(689, -798.59998, -7138.00000, 16.10000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2247 CreateDynamicObject(689, -827.90002, -7176.39990, 13.20000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2248 CreateDynamicObject(689, -931.40002, -7169.39990, 28.50000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2249 CreateDynamicObject(689, -939.00000, -7195.89990, 17.90000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2250 CreateDynamicObject(689, -957.20001, -7210.89990, 16.10000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2251 CreateDynamicObject(689, -934.59998, -7214.50000, 13.10000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2252 CreateDynamicObject(689, -852.53992, -7145.43750, 29.60000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2253 CreateDynamicObject(689, -845.00000, -7122.10010, 28.50000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2254 CreateDynamicObject(689, -983.50000, -7201.10010, 25.70000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2255 CreateDynamicObject(689, -976.27936, -7176.56104, 28.70000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2256 CreateDynamicObject(689, -955.21814, -7166.30322, 30.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2257 CreateDynamicObject(689, -952.20001, -7116.00000, 23.50000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2258 CreateDynamicObject(689, -956.70624, -7137.81006, 28.20000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2259 CreateDynamicObject(689, -984.70001, -7138.70020, 28.20000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2260 CreateDynamicObject(689, -996.20001, -7164.70020, 24.00000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2261 CreateDynamicObject(689, -1012.00000, -7189.29980, 25.60000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2262 CreateDynamicObject(689, -811.79303, -7094.15771, 27.10000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2263 CreateDynamicObject(689, -789.70001, -7109.70020, 21.40000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2264 CreateDynamicObject(689, -859.75934, -7099.75488, 29.80000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2265 CreateDynamicObject(689, -916.50000, -7070.89990, 25.10000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2266 CreateDynamicObject(689, -887.20001, -7080.29980, 29.80000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2267 CreateDynamicObject(689, -981.29999, -7114.70020, 26.70000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2268 CreateDynamicObject(689, -1025.40002, -7135.79980, 28.80000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2269 CreateDynamicObject(689, -1012.79999, -7119.79980, 27.80000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2270 CreateDynamicObject(689, -860.59998, -7059.20020, 29.80000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2271 CreateDynamicObject(689, -817.29999, -7062.79980, 26.00000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2272 CreateDynamicObject(689, -902.70001, -7005.89990, 18.90000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2273 CreateDynamicObject(689, -829.00000, -7036.50000, 26.50000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2274 CreateDynamicObject(689, -1004.90735, -7045.97412, 26.50000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2275 CreateDynamicObject(689, -997.94183, -7089.99561, 26.60258, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2276 CreateDynamicObject(689, -968.49579, -7019.76416, 21.84134, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2277 CreateDynamicObject(689, -1083.79358, -7021.44629, 14.76689, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2278 CreateDynamicObject(689, -1056.19995, -7016.29980, 12.80000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2279 CreateDynamicObject(689, -1077.90002, -7050.00000, 15.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2280 CreateDynamicObject(689, -1044.69995, -7046.39990, 21.50000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2281 CreateDynamicObject(689, -1099.19995, -7071.10010, -2.50000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2282 CreateDynamicObject(689, -1047.48596, -6982.08936, 8.28482, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2283 CreateDynamicObject(689, -1070.67346, -6958.00391, -0.68162, 0.00000, 0.00000, 15.24000, -1, -1, -1,sd,dd);
2284 CreateDynamicObject(689, -958.15552, -6961.19434, -7.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2285 CreateDynamicObject(689, -796.59998, -7178.20020, -0.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2286 CreateDynamicObject(689, -786.50000, -7203.29980, -2.10000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2287 CreateDynamicObject(689, -757.20001, -7226.10010, -0.70000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2288 CreateDynamicObject(689, -754.79999, -7189.79980, -3.20000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2289 CreateDynamicObject(689, -801.40002, -7045.20020, 21.80000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2290 CreateDynamicObject(689, -838.59998, -7066.50000, 31.60000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2291 CreateDynamicObject(689, -941.09497, -7078.93213, 31.90000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2292 CreateDynamicObject(689, -874.40002, -7006.89990, 27.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2293 CreateDynamicObject(689, -754.90002, -7084.20020, -7.80000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2294 CreateDynamicObject(689, -1010.87256, -7016.20068, 27.25102, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2295 CreateDynamicObject(689, -534.00000, -7397.70020, 17.70000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2296 CreateDynamicObject(689, -516.59998, -7356.20020, 8.60000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2297 CreateDynamicObject(689, -687.59998, -7664.70020, 0.10000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2298 CreateDynamicObject(689, -770.09998, -7634.79980, 32.10000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2299 CreateDynamicObject(689, -805.23590, -7620.49414, 22.70000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2300 CreateDynamicObject(689, -1165.44128, -7521.06885, 151.77138, 0.00000, 0.00000, -221.09991, -1, -1, -1,sd,dd);
2301 CreateDynamicObject(689, -1164.95166, -7402.43359, 153.69774, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2302 CreateDynamicObject(689, -1143.82019, -7412.11523, 159.32558, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2303 CreateDynamicObject(689, -1124.16614, -7427.80957, 153.96902, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2304 CreateDynamicObject(689, -1204.94934, -7413.15332, 150.75955, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2305 CreateDynamicObject(689, -1204.64014, -7393.55615, 150.11562, 0.00000, 0.00000, -31.86000, -1, -1, -1,sd,dd);
2306 CreateDynamicObject(689, -1220.83667, -7393.75098, 147.39006, 0.00000, 0.00000, -73.32000, -1, -1, -1,sd,dd);
2307 CreateDynamicObject(689, -1222.98120, -7374.62012, 147.39006, 0.00000, 0.00000, -107.93999, -1, -1, -1,sd,dd);
2308 CreateDynamicObject(689, -1188.24341, -7333.80957, 119.46092, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2309 CreateDynamicObject(689, -1180.49939, -7317.90137, 119.46092, 0.00000, 0.00000, -28.26000, -1, -1, -1,sd,dd);
2310 CreateDynamicObject(689, -1172.40271, -7306.87598, 113.41811, 0.00000, 0.00000, -2.64001, -1, -1, -1,sd,dd);
2311 CreateDynamicObject(689, -1159.93152, -7297.63281, 110.45074, 0.00000, 0.00000, -47.28001, -1, -1, -1,sd,dd);
2312 CreateDynamicObject(689, -874.28839, -7345.79980, 13.15054, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2313 CreateDynamicObject(689, -764.56110, -7321.64746, -0.70000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2314 CreateDynamicObject(689, -373.29999, -7265.20020, 66.60000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2315 CreateDynamicObject(689, -350.50000, -7286.29980, 60.90000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2316 CreateDynamicObject(689, -365.70001, -7283.20020, 67.40000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2317 CreateDynamicObject(689, -391.79999, -7272.50000, 67.00000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2318 CreateDynamicObject(689, -385.20001, -7288.29980, 62.90000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2319 CreateDynamicObject(689, -391.10001, -7253.10010, 70.80000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2320 CreateDynamicObject(689, -407.60001, -7263.89990, 67.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2321 CreateDynamicObject(689, -408.00000, -7289.20020, 63.10000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2322 CreateDynamicObject(689, -419.60001, -7276.60010, 59.70000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2323 CreateDynamicObject(689, -384.10001, -7314.20020, 47.40000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2324 CreateDynamicObject(689, -368.60001, -7299.89990, 56.40000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2325 CreateDynamicObject(689, -352.60001, -7301.60010, 48.20000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2326 CreateDynamicObject(689, -403.50000, -7308.70020, 53.50000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2327 CreateDynamicObject(689, -363.60001, -7316.10010, 49.40000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2328 CreateDynamicObject(689, -373.29999, -7329.89990, 34.80000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2329 CreateDynamicObject(689, -399.00000, -7326.00000, 33.50000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2330 CreateDynamicObject(689, -424.39999, -7303.10010, 53.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2331 CreateDynamicObject(689, -421.79999, -7256.89990, 56.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2332 CreateDynamicObject(689, -409.10001, -7236.50000, 54.60000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2333 CreateDynamicObject(689, -432.39999, -7244.50000, 50.10000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2334 CreateDynamicObject(689, -440.10001, -7269.10010, 47.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2335 CreateDynamicObject(689, -433.29999, -7290.10010, 51.70000, 354.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2336 CreateDynamicObject(689, -443.70001, -7301.10010, 47.10000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2337 CreateDynamicObject(689, -454.10001, -7284.79980, 42.50000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2338 CreateDynamicObject(689, -458.60001, -7262.29980, 41.50000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2339 CreateDynamicObject(689, -450.10001, -7247.50000, 44.40000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2340 CreateDynamicObject(689, -424.29999, -7317.60010, 37.70000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2341 CreateDynamicObject(689, -447.60001, -7317.50000, 38.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2342 CreateDynamicObject(689, -474.89999, -7282.00000, 37.50000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2343 CreateDynamicObject(689, -471.20001, -7308.50000, 40.20000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2344 CreateDynamicObject(689, -464.70001, -7321.60010, 34.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2345 CreateDynamicObject(689, -490.10001, -7319.10010, 31.40000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2346 CreateDynamicObject(689, -496.60001, -7298.39990, 33.90000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2347 CreateDynamicObject(689, -499.79999, -7278.39990, 35.70000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2348 CreateDynamicObject(689, -492.29999, -7257.29980, 36.50000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2349 CreateDynamicObject(689, -471.50000, -7229.39990, 42.60000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2350 CreateDynamicObject(689, -491.89999, -7232.79980, 32.10000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2351 CreateDynamicObject(689, -516.20001, -7256.70020, 28.90000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2352 CreateDynamicObject(689, -526.00000, -7283.10010, 20.90000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2353 CreateDynamicObject(689, -516.20001, -7312.20020, 20.40000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2354 CreateDynamicObject(689, -504.50000, -7336.39990, 19.40000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2355 CreateDynamicObject(689, -450.20001, -7227.89990, 51.10000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2356 CreateDynamicObject(689, -430.50000, -7214.00000, 53.60000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2357 CreateDynamicObject(689, -446.10001, -7202.00000, 52.90000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2358 CreateDynamicObject(689, -470.50000, -7207.20020, 47.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2359 CreateDynamicObject(689, -462.60001, -7188.20020, 51.40000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2360 CreateDynamicObject(689, -491.00000, -7208.50000, 42.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2361 CreateDynamicObject(689, -486.89999, -7186.39990, 42.90000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2362 CreateDynamicObject(689, -510.29999, -7204.89990, 35.10000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2363 CreateDynamicObject(689, -443.70001, -7176.20020, 53.90000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2364 CreateDynamicObject(689, -417.00000, -7180.29980, 61.70000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2365 CreateDynamicObject(689, -523.09998, -7232.70020, 16.70000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2366 CreateDynamicObject(689, -538.59998, -7262.70020, 11.80000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2367 CreateDynamicObject(689, -804.59998, -7559.89990, 29.80000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2368 CreateDynamicObject(689, -776.79999, -7558.70020, 26.50000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2369 CreateDynamicObject(689, -793.82471, -7581.44092, 22.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2370 CreateDynamicObject(689, -758.20001, -7545.29980, 27.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2371 CreateDynamicObject(689, -770.29529, -7580.37646, 32.90000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2372 CreateDynamicObject(689, -732.90002, -7534.60010, 29.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2373 CreateDynamicObject(689, -740.75659, -7560.25684, 30.90000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2374 CreateDynamicObject(689, -840.40002, -7460.79980, 24.10000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2375 CreateDynamicObject(689, -819.79999, -7451.89990, 28.40000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2376 CreateDynamicObject(689, -803.00000, -7433.60010, 26.90000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2377 CreateDynamicObject(689, -831.50000, -7434.20020, 17.70000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2378 CreateDynamicObject(689, -703.09961, -7522.50000, 22.50000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2379 CreateDynamicObject(689, -767.09998, -7424.39990, 22.60000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2380 CreateDynamicObject(689, -788.70001, -7414.79980, 15.60000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2381 CreateDynamicObject(689, -743.40002, -7418.10010, 22.90000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2382 CreateDynamicObject(689, -672.59961, -7547.70020, 13.70000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2383 CreateDynamicObject(689, -701.70001, -7605.70020, 14.60000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2384 CreateDynamicObject(689, -727.29999, -7589.20020, 31.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2385 CreateDynamicObject(689, -748.86011, -7631.37598, 25.70000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2386 CreateDynamicObject(689, -667.70001, -7490.79980, 19.90000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2387 CreateDynamicObject(689, -833.09998, -7392.00000, 4.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2388 CreateDynamicObject(689, -808.50000, -7361.29980, -2.20000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2389 CreateDynamicObject(689, -773.79999, -7349.00000, -1.90000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2390 CreateDynamicObject(689, -741.90002, -7382.70020, 18.20000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2391 CreateDynamicObject(689, -688.14508, -7401.08740, 20.70000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2392 CreateDynamicObject(689, -674.13098, -7623.88672, 1.10000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2393 CreateDynamicObject(689, -976.25812, -7056.46533, 23.69995, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2394 CreateDynamicObject(689, -975.44312, -7095.85938, 23.69995, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2395 CreateDynamicObject(689, -1005.13440, -7128.42676, 27.80000, 0.00000, 0.00000, 18.18000, -1, -1, -1,sd,dd);
2396 CreateDynamicObject(689, -1032.71680, -7133.92871, 28.80000, 0.00000, 0.00000, 22.92000, -1, -1, -1,sd,dd);
2397 CreateDynamicObject(689, -856.99921, -7079.59131, 31.60000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2398 CreateDynamicObject(689, -848.29962, -7039.61914, 26.50000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2399 CreateDynamicObject(689, -804.94879, -7105.85547, 21.40000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2400 CreateDynamicObject(689, -1030.78442, -7018.24609, 33.35592, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2401 CreateDynamicObject(689, -928.12482, -7049.44727, 22.20000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2402 CreateDynamicObject(689, -611.00000, -7541.20020, 1.60000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2403 CreateDynamicObject(689, -865.27563, -7062.77100, 31.60000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2404 CreateDynamicObject(689, -728.59998, -7684.20020, 5.80000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2405 CreateDynamicObject(689, -783.09998, -7668.60010, 7.60000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2406 CreateDynamicObject(689, -829.29999, -7643.60010, 4.90000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2407 CreateDynamicObject(689, -632.45306, -7490.81006, 8.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2408 CreateDynamicObject(689, -563.00000, -7468.89990, 3.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2409 CreateDynamicObject(689, -601.50000, -7407.79980, 13.90000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2410 CreateDynamicObject(689, -656.29999, -7522.79980, 18.40000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2411 CreateDynamicObject(689, -544.70001, -7419.20020, 13.40000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2412 CreateDynamicObject(689, -515.40564, -7380.77197, 0.70000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2413 CreateDynamicObject(689, -532.50000, -7338.70020, 18.40000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2414 CreateDynamicObject(689, -629.79999, -7577.10010, -6.00000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2415 CreateDynamicObject(689, -667.29999, -7601.39990, 1.80000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2416 CreateDynamicObject(689, -739.50000, -7730.00000, -3.20000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2417 CreateDynamicObject(689, -549.40002, -7210.79980, 5.60000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2418 CreateDynamicObject(689, -576.59998, -7357.79980, 14.80000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2419 CreateDynamicObject(689, -739.70001, -7216.10010, -11.20000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2420 CreateDynamicObject(689, -744.59998, -7262.70020, 1.80000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2421 CreateDynamicObject(689, -751.79999, -7291.60010, 1.00000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2422 CreateDynamicObject(689, -767.79999, -7274.70020, 4.90000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2423 CreateDynamicObject(689, -787.50000, -7263.10010, 11.90000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2424 CreateDynamicObject(689, -797.50000, -7283.79980, 17.70000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2425 CreateDynamicObject(689, -784.40002, -7307.39990, 11.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2426 CreateDynamicObject(689, -769.00000, -7295.20020, 7.60000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2427 CreateDynamicObject(689, -816.00000, -7272.60010, 26.30000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2428 CreateDynamicObject(689, -815.00000, -7298.89990, 24.10000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2429 CreateDynamicObject(689, -805.70001, -7321.20020, 15.00000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2430 CreateDynamicObject(689, -833.79999, -7282.60010, 20.90000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2431 CreateDynamicObject(689, -843.00000, -7315.10010, 23.10000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2432 CreateDynamicObject(689, -864.00000, -7289.70020, 24.00000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2433 CreateDynamicObject(689, -854.59998, -7340.70020, 8.70000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2434 CreateDynamicObject(689, -902.50000, -7297.10010, 19.10000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2435 CreateDynamicObject(689, -834.79999, -7257.79980, 20.40000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2436 CreateDynamicObject(689, -811.59998, -7257.29980, 16.80000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2437 CreateDynamicObject(689, -859.20020, -7268.50000, 19.00000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2438 CreateDynamicObject(689, -886.40002, -7271.39990, 18.50000, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2439 CreateDynamicObject(3761,-672.0999800,-7232.5000000,4.1000000,0.0000000,0.0000000,266.0000000, -1, -1, -1,sd,dd);
2440 CreateDynamicObject(3761,-667.4000200,-7193.5000000,4.1000000,0.0000000,0.0000000,275.9950000, -1, -1, -1,sd,dd);
2441 CreateDynamicObject(3761,-694.4000200,-7227.7002000,4.1000000,0.0000000,0.0000000,275.9930000, -1, -1, -1,sd,dd);
2442 CreateDynamicObject(3761,-695.2000100,-7219.2998000,4.1000000,0.0000000,0.0000000,275.9930000, -1, -1, -1,sd,dd);
2443 CreateDynamicObject(18259,-352.0000000,-7057.0996100,8.3000000,0.0000000,0.0000000,273.9990000, -1, -1, -1,sd,dd);
2444 CreateDynamicObject(12990,-368.0000000,-6992.5000000,1.3000000,0.0000000,0.0000000,188.0000000, -1, -1, -1,sd,dd);
2445 CreateDynamicObject(17031,-565.7999900,-7502.6001000,-5.1000000,0.0000000,0.0000000,314.0000000, -1, -1, -1,sd,dd);
2446 CreateDynamicObject(647,-689.5999800,-7195.0000000,4.0000000,0.0000000,0.0000000,0.0000000, -1, -1, -1,sd,dd);
2447 CreateDynamicObject(647,-688.0000000,-7237.5000000,4.0000000,0.0000000,0.0000000,0.0000000, -1, -1, -1,sd,dd);
2448 CreateDynamicObject(647,-694.9000200,-7201.1001000,4.0000000,0.0000000,0.0000000,0.0000000, -1, -1, -1,sd,dd);
2449 CreateDynamicObject(647,-705.4000200,-7192.1001000,4.0000000,0.0000000,0.0000000,0.0000000, -1, -1, -1,sd,dd);
2450 CreateDynamicObject(10771,-365.0455300,-7411.6523400,0.5632400,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2451 CreateDynamicObject(3885,-331.4136400,-7429.2548800,13.0676200,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2452 CreateDynamicObject(3884,-331.4165600,-7429.2612300,13.1061000,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2453 CreateDynamicObject(10770,-365.7022400,-7408.9711900,34.6846400,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2454 CreateDynamicObject(3885,-388.7386800,-7388.4755900,18.2619900,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2455 CreateDynamicObject(3884,-388.7416100,-7388.4814500,18.3004500,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2456 CreateDynamicObject(10772,-366.9059100,-7412.5683600,12.2868600,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2457 CreateDynamicObject(11148,-358.3453100,-7418.1210900,7.5944200,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2458 CreateDynamicObject(3785,-295.2135600,-7449.0058600,8.4573500,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2459 CreateDynamicObject(3785,-312.2691000,-7436.5336900,9.1480400,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2460 CreateDynamicObject(3785,-329.6557600,-7423.8110400,9.8137700,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2461 CreateDynamicObject(3792,-326.6237800,-7432.7998000,5.4975700,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2462 CreateDynamicObject(3793,-328.9609700,-7431.2114300,5.6445900,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2463 CreateDynamicObject(3788,-328.0488600,-7431.4555700,5.5715700,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2464 CreateDynamicObject(3795,-326.0687000,-7433.4301800,5.2332400,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2465 CreateDynamicObject(3798,-329.1163300,-7434.0380900,4.5570100,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2466 CreateDynamicObject(3798,-330.1886600,-7436.2485400,4.1246600,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2467 CreateDynamicObject(3794,-326.5845300,-7439.1650400,4.4576900,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2468 CreateDynamicObject(3793,-327.4612100,-7438.7929700,4.5535100,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2469 CreateDynamicObject(3796,-333.5566400,-7437.4003900,3.6867900,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2470 CreateDynamicObject(3792,-330.9510800,-7439.0293000,5.1403100,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2471 CreateDynamicObject(3789,-330.0169100,-7441.7587900,3.6112400,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2472 CreateDynamicObject(3800,-362.2935800,-7418.9892600,4.4368800,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2473 CreateDynamicObject(3798,-364.1088900,-7418.7778300,4.3331100,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2474 CreateDynamicObject(11146,-358.6261600,-7418.4677700,6.9152400,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2475 CreateDynamicObject(11237,-365.7400800,-7408.9433600,34.6861700,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2476 CreateDynamicObject(3794,-413.4823600,-7389.4282200,5.7827200,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2477 CreateDynamicObject(3798,-423.9443400,-7383.2050800,5.4561800,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2478 CreateDynamicObject(3789,-416.4445500,-7387.1210900,5.7505900,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2479 CreateDynamicObject(3793,-422.0137300,-7381.9428700,6.4294300,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2480 CreateDynamicObject(3787,-413.0798300,-7380.9980500,7.2080300,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2481 CreateDynamicObject(3787,-419.0596300,-7371.6464800,8.2411300,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2482 CreateDynamicObject(3793,-417.5641200,-7376.5112300,7.2324300,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2483 CreateDynamicObject(3795,-420.9917300,-7374.4687500,7.4165900,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2484 CreateDynamicObject(3792,-421.8746300,-7374.5043900,7.5502600,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2485 CreateDynamicObject(3798,-413.9560900,-7377.2807600,7.1532800,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2486 CreateDynamicObject(3791,-416.2446300,-7367.3515600,9.0335100,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2487 CreateDynamicObject(3787,-387.2527200,-7394.4672900,7.0227700,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2488 CreateDynamicObject(3787,-387.1156000,-7392.5366200,7.3399600,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2489 CreateDynamicObject(3791,-382.1570700,-7395.7402300,7.1030800,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2490 CreateDynamicObject(3796,-382.1270100,-7398.4970700,6.1916000,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2491 CreateDynamicObject(3791,-382.2095900,-7393.7382800,7.4173400,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2492 CreateDynamicObject(3798,-331.4079000,-7431.4023400,-3.4872800,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2493 CreateDynamicObject(3798,-322.3570900,-7448.4834000,-5.5159900,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2494 CreateDynamicObject(11147,-316.0322900,-7447.4169900,-1.7821100,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2495 CreateDynamicObject(3798,-326.9014600,-7445.1601600,-5.3319600,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2496 CreateDynamicObject(3798,-330.4015800,-7430.1665000,-0.9539900,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2497 CreateDynamicObject(3799,-329.5848100,-7429.7070300,-3.1988700,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2498 CreateDynamicObject(3800,-330.7995300,-7427.9941400,-2.8997700,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2499 CreateDynamicObject(3799,-318.4133000,-7434.3002900,-3.0830700,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2500 CreateDynamicObject(3799,-327.2212200,-7431.4355500,-3.2945900,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2501 CreateDynamicObject(3798,-328.7880200,-7431.3471700,-1.0193300,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2502 CreateDynamicObject(3798,-314.4600800,-7433.0854500,-2.4720300,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2503 CreateDynamicObject(3800,-312.9419600,-7433.6333000,-2.4441100,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2504 CreateDynamicObject(3799,-316.6960400,-7431.9794900,-2.5844100,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2505 CreateDynamicObject(3800,-315.7277800,-7434.0376000,-2.7191900,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2506 CreateDynamicObject(3798,-318.4863300,-7435.3037100,-0.8683100,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2507 CreateDynamicObject(3798,-322.3436900,-7432.4829100,-0.7121000,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2508 CreateDynamicObject(3799,-323.1404100,-7430.8432600,-2.8916400,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2509 CreateDynamicObject(3798,-323.9572100,-7431.3027300,-0.6467600,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2510 CreateDynamicObject(3799,-320.7768600,-7432.5717800,-2.9873600,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2511 CreateDynamicObject(3798,-326.4221800,-7424.7885700,0.2015700,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2512 CreateDynamicObject(3800,-327.8062400,-7432.6845700,-1.1575800,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2513 CreateDynamicObject(3798,-342.6636700,-7431.4785200,-4.3512000,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2514 CreateDynamicObject(3799,-344.2217400,-7433.3281300,-4.8819700,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2515 CreateDynamicObject(3800,-341.6922000,-7432.7514600,-4.4799400,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2516 CreateDynamicObject(3798,-345.5578000,-7435.3896500,-5.1916100,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2517 CreateDynamicObject(3800,-345.1426700,-7435.7143600,-3.1810900,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2518 CreateDynamicObject(11406,-335.8045300,-7436.9384800,-1.3203500,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2519 CreateDynamicObject(3798,-327.5944800,-7426.3730500,-0.1388400,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2520 CreateDynamicObject(3799,-339.5720500,-7443.6240200,-6.1657500,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2521 CreateDynamicObject(3800,-321.0831000,-7447.5361300,-5.2690800,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2522 CreateDynamicObject(3799,-337.2084700,-7445.3520500,-6.2614700,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2523 CreateDynamicObject(11149,-357.5795000,-7412.1406300,7.6904000,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2524 CreateDynamicObject(3799,-378.4529700,-7404.6699200,5.3778200,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2525 CreateDynamicObject(3798,-390.1819500,-7396.4780300,5.9026300,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2526 CreateDynamicObject(11145,-314.2252500,-7448.5659200,-2.6607100,-9.8000000,-1.9000000,143.5000000, -1, -1, -1,sd,dd);
2527 CreateDynamicObject(10230,-649.7808200,-7164.2670900,4.1979700,3.7000000,0.0000000,-177.6000000, -1, -1, -1,sd,dd);
2528 CreateDynamicObject(10231,-648.9345700,-7162.6298800,5.5819500,3.7000000,0.0000000,-177.6000000, -1, -1, -1,sd,dd);
2529 CreateDynamicObject(10229,-649.5871000,-7162.9209000,2.9606700,3.7000000,0.0000000,-177.6000000, -1, -1, -1,sd,dd);
2530 CreateDynamicObject(10140,-664.5312500,-7163.8217800,4.2858300,3.7000000,0.0000000,-177.6000000, -1, -1, -1,sd,dd);
2531 CreateDynamicObject(10227,-694.6395900,-7165.5942400,9.2275000,3.7000000,0.0000000,-177.6000000, -1, -1, -1,sd,dd);
2532 CreateDynamicObject(10226,-694.0984500,-7166.9384800,3.4911400,3.7000000,0.0000000,-177.6000000, -1, -1, -1,sd,dd);
2533 CreateDynamicObject(10228,-659.4574600,-7163.6093800,2.9471300,3.7000000,0.0000000,-177.6000000, -1, -1, -1,sd,dd);
2534 CreateDynamicObject(17026,-465.8041100,-7333.2275400,-9.9694100,1.1400000,3.7200000,377.8110000, -1, -1, -1,sd,dd);
2535 CreateDynamicObject(7024,-1112.2132600,-7482.0825200,166.9634900,0.0000000,0.0000000,-19.5000000, -1, -1, -1,sd,dd);
2536 CreateDynamicObject(7103,-1117.3311800,-7473.7392600,172.0884700,0.0000000,0.0000000,-19.5000000, -1, -1, -1,sd,dd);
2537 CreateDynamicObject(7105,-1112.2132600,-7482.0825200,166.9634900,0.0000000,0.0000000,-19.5000000, -1, -1, -1,sd,dd);
2538 CreateDynamicObject(7172,-1147.9014900,-7460.9492200,164.3228500,0.0000000,0.0000000,-19.5000000, -1, -1, -1,sd,dd);
2539 CreateDynamicObject(6295, -848.88574, -6944.09619, 24.98505, 0.00000, 0.00001, 107.99991, -1, -1, -1,sd,dd);
2540
2541
2542
2543 //to be retextured
2544 new myobject7 = CreateDynamicObject(16148, -846.43652, -7092.58691, 16.90338, 0.00000, 0.00000, 239.09500, -1, -1, -1,sd,dd); //retextured
2545 SetDynamicObjectMaterial(myobject7, 0, 17114, "cuntwlandwest", "grasstype4", 0);
2546 SetDynamicObjectMaterial(myobject7, 1, 17114, "cuntwlandwest", "rock_country128", 0);
2547 SetDynamicObjectMaterial(myobject7, 2, 17114, "cuntwlandwest", "rocktq128_grass4blend", 0);
2548 SetDynamicObjectMaterial(myobject7, 3, 17114, "cuntwlandwest", "rock_country128", 0);
2549 SetDynamicObjectMaterial(myobject7, 5, 17114, "cuntwlandwest", "sw_stones", 0);
2550 SetDynamicObjectMaterial(myobject7, 6, 17114, "cuntwlandwest", "sw_stones", 0);
2551 SetDynamicObjectMaterial(myobject7, 4, 17114, "cuntwlandwest", "grasstype4", 0);
2552 SetDynamicObjectMaterial(myobject7, 7, 17114, "cuntwlandwest", "grasstype4", 0);
2553 new myobject8 = CreateDynamicObject(16147, -940.11230, -7225.28320, 7.09867, 0.00000, 0.00000, 239.09500, -1, -1, -1,sd,dd); //retextured
2554 SetDynamicObjectMaterial(myobject8, 0, 17114, "cuntwlandwest", "grasstype4", 0);
2555 SetDynamicObjectMaterial(myobject8, 2, 17114, "cuntwlandwest", "rock_country128", 0);
2556 SetDynamicObjectMaterial(myobject8, 4, 17114, "cuntwlandwest", "rocktq128_grass4blend", 0);
2557 SetDynamicObjectMaterial(myobject8, 5, 17114, "cuntwlandwest", "rock_country128", 0);
2558 new myobject9 = CreateDynamicObject(16149, -1122.09277, -7133.06836, 5.60647, 0.00000, 0.00000, 239.09500, -1, -1, -1,sd,dd); //retextured
2559 SetDynamicObjectMaterial(myobject9, 2, 17114, "cuntwlandwest", "grasstype4", 0);
2560 SetDynamicObjectMaterial(myobject9, 3, 17114, "cuntwlandwest", "rocktq128_grass4blend", 0);
2561 SetDynamicObjectMaterial(myobject9, 4, 17114, "cuntwlandwest", "rock_country128", 0);
2562 new myobject10 = CreateDynamicObject(16109, -1004.11694, -7007.79541, 14.47369, 0.00000, 0.00000, -120.90000, -1, -1, -1,sd,dd); //retextured
2563 SetDynamicObjectMaterial(myobject10, 1, 17114, "cuntwlandwest", "grasstype4", 0);
2564 SetDynamicObjectMaterial(myobject10, 2, 17114, "cuntwlandwest", "rocktq128_grass4blend", 0);
2565 SetDynamicObjectMaterial(myobject10, 0, 17114, "cuntwlandwest", "cw2_mounttrailblank", 0);
2566 new myobject11 = CreateDynamicObject(16264, -1125.65881, -6982.36230, 2.28618, 0.00000, 0.00000, -120.90000, -1, -1, -1,sd,dd); //retextured
2567 SetDynamicObjectMaterial(myobject11, 1, 17114, "cuntwlandwest", "grasstype4", 0);
2568 SetDynamicObjectMaterial(myobject11, 2, 17114, "cuntwlandwest", "rocktq128_grass4blend", 0);
2569 new myobject12 = CreateDynamicObject(6417, -888.99231, -6954.67920, -15.10870, 0.00000, 0.00001, 107.99991, -1, -1, -1,sd,dd);
2570 SetDynamicObjectMaterial(myobject12, 1, 17114, "cuntwlandwest", "grasstype4", 0);
2571 SetDynamicObjectMaterial(myobject12, 0, 17114, "cuntwlandwest", "grasstype4", 0);
2572
2573 CreateDynamicObject(16143, -1097.12012, -6975.34180, 17.30180, 0.00000, 0.00000, -120.90000, -1, -1, -1,sd,dd);
2574 CreateDynamicObject(18256, -921.90002, -7245.70020, 14.40000, 0.00000, 0.00000, 288.00000, -1, -1, -1,sd,dd);
2575 CreateDynamicObject(18256, -840.90002, -7220.89990, 16.20000, 0.00000, 6.00000, 289.99600, -1, -1, -1,sd,dd);
2576 CreateDynamicObject(5131, -898.87012, -7131.40723, 43.72668, 0.00000, 0.00000, 103.59600, -1, -1, -1,sd,dd);
2577 CreateDynamicObject(5130, -892.90002, -7138.10010, 41.80000, 0.00000, 0.00000, 150.09599, -1, -1, -1,sd,dd);
2578 CreateDynamicObject(5129, -901.72949, -7135.13770, 42.39856, 0.00000, 0.00000, 103.59600, -1, -1, -1,sd,dd);
2579 CreateDynamicObject(5268, -898.20001, -7139.89990, 45.40000, 0.00000, 0.00000, 148.59599, -1, -1, -1,sd,dd);
2580 CreateDynamicObject(5259, -923.29999, -7136.20020, 39.00000, 0.00000, 0.00000, 12.24300, -1, -1, -1,sd,dd);
2581 CreateDynamicObject(5259, -907.70001, -7138.79980, 39.00000, 0.00000, 0.00000, 15.99100, -1, -1, -1,sd,dd);
2582 CreateDynamicObject(5259, -921.09998, -7149.60010, 39.00000, 0.00000, 0.00000, 11.99100, -1, -1, -1,sd,dd);
2583 CreateDynamicObject(5259, -905.09998, -7151.29980, 39.10000, 0.00000, 0.00000, 11.99100, -1, -1, -1,sd,dd);
2584 CreateDynamicObject(5145, -1308.78906, -7869.81836, 4.30577, 0.00000, 0.00000, 118.59700, -1, -1, -1,sd,dd);
2585 CreateDynamicObject(5146, -1239.20435, -8080.81738, 3.95423, 0.00000, 0.00000, 118.59200, -1, -1, -1,sd,dd);
2586 CreateDynamicObject(5176, -1075.68262, -7965.00684, 19.91757, 0.00000, 0.00000, 118.59200, -1, -1, -1,sd,dd);
2587 CreateDynamicObject(3753, -1410.43018, -7941.63477, 5.18858, 0.00000, 0.00000, 118.60000, -1, -1, -1,sd,dd);
2588 CreateDynamicObject(3753, -956.95215, -7979.25879, 2.94640, 0.00000, 0.00000, 298.60001, -1, -1, -1,sd,dd);
2589 CreateDynamicObject(3753, -1075.19812, -8139.52344, 4.74914, 0.00000, 0.00000, 208.60001, -1, -1, -1,sd,dd);
2590 CreateDynamicObject(5176, -1075.65295, -7965.10254, 19.79798, 0.00000, 0.00000, 118.60000, -1, -1, -1,sd,dd);
2591 CreateDynamicObject(3753, -1243.85425, -7950.66748, 4.58246, 0.00000, 0.00000, 298.60001, -1, -1, -1,sd,dd);
2592 CreateDynamicObject(3887, -1350.19995, -7921.00000, 21.80000, 0.00000, 0.00000, 208.74800, -1, -1, -1,sd,dd);
2593 CreateDynamicObject(3887, -1364.59998, -7985.00000, 22.50000, 0.00000, 0.00000, 28.99800, -1, -1, -1,sd,dd);
2594 CreateDynamicObject(3866, -1379.40002, -7879.60010, 21.80000, 0.00000, 0.00000, 207.99800, -1, -1, -1,sd,dd);
2595 CreateDynamicObject(3866, -1390.77832, -7930.21387, 21.78719, 0.00000, 0.00000, 28.99800, -1, -1, -1,sd,dd);
2596 CreateDynamicObject(3866, -1285.20947, -7951.48242, 22.52635, 0.00000, 0.00000, 28.99800, -1, -1, -1,sd,dd);
2597 CreateDynamicObject(10984, -1393.95020, -7924.37891, 15.36531, 0.00000, 0.00000, 28.99800, -1, -1, -1,sd,dd);
2598 CreateDynamicObject(3866, -1386.00000, -7883.29980, 22.60000, 0.00000, 0.00000, 28.99800, -1, -1, -1,sd,dd);
2599 CreateDynamicObject(3887, -1352.69995, -7978.29980, 21.70000, 0.00000, 0.00000, 209.74800, -1, -1, -1,sd,dd);
2600 CreateDynamicObject(3887, -1306.40002, -7885.20020, 22.54377, 0.00000, 0.00000, 118.49600, -1, -1, -1,sd,dd);
2601 CreateDynamicObject(3887, -1234.40002, -7850.50000, 22.00000, 0.00000, 0.00000, 28.99300, -1, -1, -1,sd,dd);
2602 CreateDynamicObject(3866, -1203.59998, -7853.20020, 22.60000, 0.00000, 0.00000, 207.99300, -1, -1, -1,sd,dd);
2603 CreateDynamicObject(3866, -1215.19995, -7824.50000, 22.60000, 0.00000, 358.00000, 299.49301, -1, -1, -1,sd,dd);
2604 CreateDynamicObject(3866, -1332.30005, -7855.70020, 22.60000, 0.00000, 357.99500, 207.49300, -1, -1, -1,sd,dd);
2605 CreateDynamicObject(3887, -1221.40002, -8070.89990, 22.60000, 0.00000, 0.00000, 73.49500, -1, -1, -1,sd,dd);
2606 CreateDynamicObject(3887, -1229.91895, -8034.90625, 22.35001, 0.00000, 0.00000, 343.49301, -1, -1, -1,sd,dd);
2607 CreateDynamicObject(3887, -1198.09998, -8059.00000, 22.74173, 0.00000, 0.00000, 163.48801, -1, -1, -1,sd,dd);
2608 CreateDynamicObject(3866, -1438.00000, -7849.89990, 22.60000, 0.00000, 0.00000, 28.24800, -1, -1, -1,sd,dd);
2609 CreateDynamicObject(3866, -1414.80005, -7840.50000, 22.60000, 0.00000, 0.00000, 298.99600, -1, -1, -1,sd,dd);
2610 CreateDynamicObject(3866, -1427.09998, -7876.00000, 22.60000, 0.00000, 0.00000, 119.24300, -1, -1, -1,sd,dd);
2611 CreateDynamicObject(3887, -1223.59998, -8109.00000, 22.63961, 0.00000, 0.00000, 253.73199, -1, -1, -1,sd,dd);
2612 CreateDynamicObject(3866, -1263.51904, -8100.20605, 22.10262, 0.00000, 0.00000, 343.74799, -1, -1, -1,sd,dd);
2613 CreateDynamicObject(3866, -1352.80005, -7819.50000, 22.60000, 0.00000, 0.00000, 28.99800, -1, -1, -1,sd,dd);
2614 CreateDynamicObject(3866, -1338.09998, -7811.60010, 22.60000, 0.00000, 0.00000, 208.74800, -1, -1, -1,sd,dd);
2615 CreateDynamicObject(3866, -1300.50000, -7839.29980, 21.90000, 0.00000, 0.00000, 29.24600, -1, -1, -1,sd,dd);
2616 CreateDynamicObject(10831, -1297.90002, -7928.70020, 17.30000, 0.00000, 0.00000, 298.75000, -1, -1, -1,sd,dd);
2617 CreateDynamicObject(10831, -1262.00000, -8042.39990, 19.70000, 0.00000, 0.00000, 253.74600, -1, -1, -1,sd,dd);
2618 CreateDynamicObject(10831, -1013.79999, -8011.29980, 19.90000, 0.00000, 0.00000, 118.99000, -1, -1, -1,sd,dd);
2619 CreateDynamicObject(10831, -998.59998, -8038.89990, 19.90000, 0.00000, 0.00000, 118.98700, -1, -1, -1,sd,dd);
2620 CreateDynamicObject(3866, -1273.69995, -7861.00000, 22.60000, 0.00000, 0.00000, 298.49600, -1, -1, -1,sd,dd);
2621 CreateDynamicObject(10843, -1182.03210, -8132.07813, 21.91999, 0.00000, 0.00000, -106.44001, -1, -1, -1,sd,dd);
2622 CreateDynamicObject(5131, -1302.07483, -8048.66553, 20.66395, 0.00000, 0.00000, -378.65991, -1, -1, -1,sd,dd);
2623 CreateDynamicObject(11088, -1129.69287, -8070.78418, 21.06314, -0.00001, 0.00000, 28.49999, -1, -1, -1,sd,dd);
2624 CreateDynamicObject(945, -1115.66846, -8076.24609, 25.33657, -0.00001, 0.00000, 28.49999, -1, -1, -1,sd,dd);
2625 CreateDynamicObject(11085, -1127.03894, -8070.59619, 21.61001, -0.00001, 0.00000, 28.49999, -1, -1, -1,sd,dd);
2626 CreateDynamicObject(945, -1118.78540, -8077.93896, 25.33657, -0.00001, 0.00000, 28.49999, -1, -1, -1,sd,dd);
2627 CreateDynamicObject(945, -1121.77209, -8079.56006, 25.33657, -0.00001, 0.00000, 28.49999, -1, -1, -1,sd,dd);
2628 CreateDynamicObject(945, -1125.00586, -8081.31592, 25.33657, -0.00001, 0.00000, 28.49999, -1, -1, -1,sd,dd);
2629 CreateDynamicObject(945, -1128.03369, -8082.95996, 25.33657, -0.00001, 0.00000, 28.49999, -1, -1, -1,sd,dd);
2630 CreateDynamicObject(945, -1131.17139, -8084.66309, 25.33657, -0.00001, 0.00000, 28.49999, -1, -1, -1,sd,dd);
2631 CreateDynamicObject(11233, -1118.55811, -8086.21631, 18.32876, -0.00001, 0.00000, 28.49999, -1, -1, -1,sd,dd);
2632 CreateDynamicObject(11234, -1134.49072, -8090.40430, 18.19595, -0.00001, 0.00000, 28.49999, -1, -1, -1,sd,dd);
2633 CreateDynamicObject(11235, -1129.80481, -8099.03418, 18.19596, -0.00001, 0.00000, 28.49999, -1, -1, -1,sd,dd);
2634 CreateDynamicObject(11236, -1118.55811, -8086.21631, 18.32876, -0.00001, 0.00000, 28.49999, -1, -1, -1,sd,dd);
2635 CreateDynamicObject(11007, -1122.08472, -8079.72119, 20.98501, -0.00001, 0.00000, 28.49999, -1, -1, -1,sd,dd);
2636 CreateDynamicObject(11012, -1129.68982, -8070.77344, 21.07095, -0.00001, 0.00000, 28.49999, -1, -1, -1,sd,dd);
2637 CreateDynamicObject(7024, -1077.97925, -8014.88623, 17.71121, 0.00000, 0.00002, 28.09993, -1, -1, -1,sd,dd);
2638 CreateDynamicObject(3866, -1035.20947, -7991.30371, 21.52073, 0.00000, 0.00000, 117.35999, -1, -1, -1,sd,dd);
2639 CreateDynamicObject(7103, -1088.05457, -8012.53857, 23.33294, 0.00000, 0.00002, 28.09993, -1, -1, -1,sd,dd);
2640 CreateDynamicObject(7105, -1078.44250, -8014.38525, 18.20794, 0.00000, 0.00002, 28.09993, -1, -1, -1,sd,dd);
2641 CreateDynamicObject(7172, -1118.11267, -8026.48926, 15.56732, 0.00000, 0.00002, 28.09993, -1, -1, -1,sd,dd);
2642 CreateDynamicObject(3866, -1255.78137, -8010.44824, 22.32832, 0.00000, 0.00000, 73.74001, -1, -1, -1,sd,dd);
2643 CreateDynamicObject(3866, -1251.47083, -7996.20654, 22.39316, 0.00000, 0.00000, -105.48000, -1, -1, -1,sd,dd);
2644 CreateDynamicObject(3887, -1156.23376, -7993.74219, 22.72806, 0.00000, 0.00000, 28.74001, -1, -1, -1,sd,dd);
2645 CreateDynamicObject(3887, -1114.72424, -7989.29150, 22.89168, 0.00000, 0.00000, -241.79997, -1, -1, -1,sd,dd);
2646 CreateDynamicObject(3887, -1148.90662, -7968.02148, 23.52778, 0.00000, 0.00000, -60.71998, -1, -1, -1,sd,dd);
2647 CreateDynamicObject(3866, -1197.92358, -8001.47803, 22.30873, 0.00000, 0.00000, -61.67999, -1, -1, -1,sd,dd);
2648 CreateDynamicObject(3866, -1039.32288, -8051.90771, 21.52073, 0.00000, 0.00000, -58.74000, -1, -1, -1,sd,dd);
2649 CreateDynamicObject(3866, -1039.02380, -8073.00635, 22.78575, 0.00000, 0.00000, 28.80002, -1, -1, -1,sd,dd);
2650 CreateDynamicObject(3866, -1068.63171, -8056.61279, 23.22122, 0.00000, 0.00000, -150.83998, -1, -1, -1,sd,dd);
2651 CreateDynamicObject(3866, -1027.50610, -8074.76416, 14.89584, 0.00000, 0.00000, -149.69997, -1, -1, -1,sd,dd);
2652 CreateDynamicObject(3887, -1077.22546, -8096.05908, 22.25313, 0.00000, 0.00000, 119.70002, -1, -1, -1,sd,dd);
2653 CreateDynamicObject(10985, -1272.42847, -7786.85010, 15.79211, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2654 CreateDynamicObject(10985, -1288.42847, -7819.09033, 15.79211, 0.00000, 0.00000, -109.49999, -1, -1, -1,sd,dd);
2655 CreateDynamicObject(10985, -1248.29944, -7809.39209, 15.79211, 0.00000, 0.00000, -34.85999, -1, -1, -1,sd,dd);
2656 CreateDynamicObject(10985, -1343.28467, -7850.78906, 15.74113, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2657 CreateDynamicObject(10985, -1357.89026, -7834.53369, 15.74113, 0.00000, 0.00000, 42.30000, -1, -1, -1,sd,dd);
2658 CreateDynamicObject(10985, -1313.46997, -7871.61182, 15.74113, 0.00000, 0.00000, -65.10000, -1, -1, -1,sd,dd);
2659 CreateDynamicObject(10985, -1245.96655, -7881.80029, 15.87182, 0.00000, 0.00000, -59.04000, -1, -1, -1,sd,dd);
2660 CreateDynamicObject(10985, -1282.83203, -7989.51221, 15.68802, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2661 CreateDynamicObject(10985, -1312.93945, -7908.10010, 15.37263, 0.00000, 0.00000, -43.56000, -1, -1, -1,sd,dd);
2662 CreateDynamicObject(10985, -1328.64026, -7966.76074, 15.92890, 0.00000, 0.00000, -69.66000, -1, -1, -1,sd,dd);
2663 CreateDynamicObject(10985, -1313.16797, -7990.33447, 15.92890, 0.00000, 0.00000, 22.91999, -1, -1, -1,sd,dd);
2664 CreateDynamicObject(10985, -1270.63440, -7948.41699, 15.92890, 0.00000, 0.00000, -68.22001, -1, -1, -1,sd,dd);
2665 CreateDynamicObject(10985, -1364.60059, -7937.36914, 15.92890, 0.00000, 0.00000, -130.01999, -1, -1, -1,sd,dd);
2666 CreateDynamicObject(10985, -1213.72095, -8040.49805, 15.63727, 0.00000, 0.00000, -82.07998, -1, -1, -1,sd,dd);
2667 CreateDynamicObject(10985, -1265.70984, -8077.40381, 15.90394, 0.00000, 0.00000, -114.77998, -1, -1, -1,sd,dd);
2668 CreateDynamicObject(10985, -1171.06348, -8081.22314, 15.87256, 0.00000, 0.00000, -82.07998, -1, -1, -1,sd,dd);
2669 CreateDynamicObject(10985, -1143.41553, -8034.52002, 15.87256, 0.00000, 0.00000, -122.15996, -1, -1, -1,sd,dd);
2670 CreateDynamicObject(10985, -1084.15564, -8059.26611, 15.87256, 0.00000, 0.00000, -122.15996, -1, -1, -1,sd,dd);
2671 CreateDynamicObject(10985, -1018.89954, -8075.08008, 15.87256, 0.00000, 0.00000, -122.15996, -1, -1, -1,sd,dd);
2672 CreateDynamicObject(10985, -1056.08191, -7989.76953, 15.93122, 0.00000, 0.00000, -100.07996, -1, -1, -1,sd,dd);
2673 CreateDynamicObject(10985, -969.69482, -8029.87451, 16.26399, 0.00000, 0.00000, -159.35992, -1, -1, -1,sd,dd);
2674 CreateDynamicObject(10985, -1220.02966, -7846.48438, 16.05003, 0.00000, 0.00000, -59.04000, -1, -1, -1,sd,dd);
2675 CreateDynamicObject(10985, -1129.12659, -8132.02393, 15.87256, 0.00000, 0.00000, -169.01991, -1, -1, -1,sd,dd);
2676 CreateDynamicObject(10985, -1067.73450, -8114.85400, 15.43513, 0.00000, 0.00000, -127.73988, -1, -1, -1,sd,dd);
2677 CreateDynamicObject(10985, -999.20947, -7951.18213, 15.87256, 0.00000, 0.00000, -122.15996, -1, -1, -1,sd,dd);
2678
2679
2680 //airport
2681 CreateDynamicObject(10767, -1394.37878, -7154.60498, 0.16308, 0.00002, 0.00004, 8.49994, -1, -1, -1,sd,dd);
2682 CreateDynamicObject(10766, -1318.38123, -7052.16016, 12.83493, -0.00002, 0.00005, -36.50002, -1, -1, -1,sd,dd);
2683 CreateDynamicObject(10816, -1542.30518, -7387.02979, 13.69438, 0.00005, 0.00002, 53.50686, -1, -1, -1,sd,dd);
2684 CreateDynamicObject(10826, -1505.59326, -7554.02686, -0.71238, 0.00000, 0.00000, -126.36014, -1, -1, -1,sd,dd);
2685 CreateDynamicObject(10826, -1414.85803, -7431.03320, -0.71238, 0.00000, 0.00000, -306.48019, -1, -1, -1,sd,dd);
2686 CreateDynamicObject(10828, -1610.77527, -7574.49316, 12.08346, 0.00000, 0.00000, -36.72002, -1, -1, -1,sd,dd);
2687 CreateDynamicObject(10828, -1639.09045, -7553.39990, 12.08346, 0.00000, 0.00000, -36.72002, -1, -1, -1,sd,dd);
2688 CreateDynamicObject(10828, -1667.35449, -7532.30713, 12.08346, 0.00000, 0.00000, -36.72002, -1, -1, -1,sd,dd);
2689 CreateDynamicObject(10828, -1680.48987, -7522.48926, 12.08346, 0.00000, 0.00000, -36.72002, -1, -1, -1,sd,dd);
2690 CreateDynamicObject(10763, -1421.92126, -7380.72705, 47.35131, 0.00000, 0.00000, -81.48001, -1, -1, -1,sd,dd);
2691 CreateDynamicObject(10815, -1442.06262, -7716.77393, 14.84795, 0.00000, 0.00000, -16.26001, -1, -1, -1,sd,dd);
2692 CreateDynamicObject(10815, -888.48145, -7904.49219, 13.45044, 0.00000, 0.00000, -112.20000, -1, -1, -1,sd,dd);
2693 CreateDynamicObject(896, -1443.65295, -7728.97168, 4.50456, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2694 CreateDynamicObject(896, -1434.15015, -7724.51416, 1.62016, 0.00000, 0.00000, -105.23998, -1, -1, -1,sd,dd);
2695 CreateDynamicObject(896, -1443.13782, -7702.99414, 1.62016, 0.00000, 0.00000, -53.63998, -1, -1, -1,sd,dd);
2696 CreateDynamicObject(896, -1452.69470, -7707.43896, 1.62016, 0.00000, 0.00000, -116.57997, -1, -1, -1,sd,dd);
2697 CreateDynamicObject(896, -896.58801, -7912.65479, 0.35756, 0.00000, 0.00000, -102.83997, -1, -1, -1,sd,dd);
2698 CreateDynamicObject(896, -875.76019, -7901.03174, 2.90637, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2699 CreateDynamicObject(896, -900.23737, -7905.10254, 0.35756, 0.00000, 0.00000, -194.33990, -1, -1, -1,sd,dd);
2700 CreateDynamicObject(896, -877.60529, -7895.83301, 0.35756, 0.00000, 0.00000, -194.33990, -1, -1, -1,sd,dd);
2701 CreateDynamicObject(10811, -1400.31946, -7403.92041, 24.79216, 0.00000, 0.00000, -35.52002, -1, -1, -1,sd,dd);
2702 CreateDynamicObject(10814, -1465.90527, -7435.43408, 18.41080, 0.00000, 0.00000, -37.13999, -1, -1, -1,sd,dd);
2703 CreateDynamicObject(10814, -1448.19275, -7411.44775, 18.41080, 0.00000, 0.00000, -37.13999, -1, -1, -1,sd,dd);
2704 CreateDynamicObject(1278, -1601.41504, -7563.76221, 14.75104, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2705 CreateDynamicObject(1278, -1583.29053, -7539.62305, 14.75104, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2706 CreateDynamicObject(1278, -1542.46204, -7487.16260, 14.74520, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2707 CreateDynamicObject(1278, -1468.56995, -7433.42236, 15.24571, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2708 CreateDynamicObject(1278, -1436.65674, -7354.97705, 14.73932, 0.00000, 0.00000, 0.00000, -1, -1, -1,sd,dd);
2709 CreateDynamicObject(3816, -1582.95557, -7489.21875, 23.12043, 0.00000, 0.00000, -126.60001, -1, -1, -1,sd,dd);
2710 CreateDynamicObject(3816, -1505.11353, -7383.47949, 23.12043, 0.00000, 0.00000, -126.60001, -1, -1, -1,sd,dd);
2711 CreateDynamicObject(3816, -1432.11865, -7284.38428, 23.12043, 0.00000, 0.00000, -126.60001, -1, -1, -1,sd,dd);
2712 CreateDynamicObject(9241, -1416.47595, -7475.26904, 16.99614, 0.00000, 0.00000, -36.30000, -1, -1, -1,sd,dd);
2713 CreateDynamicObject(9241, -1442.39124, -7511.67139, 16.99614, 0.00000, 0.00000, -36.30000, -1, -1, -1,sd,dd);
2714 CreateDynamicObject(9241, -1468.28357, -7547.32764, 16.99614, 0.00000, 0.00000, -36.30000, -1, -1, -1,sd,dd);
2715 CreateDynamicObject(10811, -1568.11157, -7554.81543, 24.79216, 0.00000, 0.00000, -35.52002, -1, -1, -1,sd,dd);
2716 CreateDynamicObject(10815, -1224.51074, -6998.60107, -4.38092, 11.34001, -22.68001, 32.75999, -1, -1, -1,sd,dd);
2717 CreateDynamicObject(17031, -1125.74768, -7021.88818, -1.20000, 0.00000, 0.00000, -169.86800, -1, -1, -1,sd,dd);
2718 CreateDynamicObject(3753, -1229.94226, -7754.09717, 4.58246, 0.00000, 0.00000, 298.60001, -1, -1, -1,sd,dd);
2719 //(10)
2720 CreateObject(9582, 1809.43494, -1410.50781, 20.90975, 0.00000, 0.00000, 255.24025);
2721 CreateObject(1497, 1804.23779, -1444.89050, 12.55209, 0.00000, 0.00000, -269.46011);
2722 CreateObject(1497, 1804.19238, -1441.89990, 12.55209, 0.00000, 0.00000, -89.63998);
2723 CreateObject(987, 1784.95923, -1441.62927, 12.47348, 0.00000, 0.00000, 340.69128);
2724 CreateObject(987, 1796.16663, -1445.57251, 12.47348, 0.00000, 0.00000, 345.43466);
2725 CreateObject(987, 1807.68958, -1448.58240, 12.47348, 0.00000, 0.00000, 350.45398);
2726 CreateObject(987, 1824.91614, -1450.58826, 12.47348, 0.00000, 0.00000, 359.35864);
2727 CreateObject(987, 1819.44373, -1450.55652, 12.47348, 0.00000, 0.00000, 359.35864);
2728 CreateObject(987, 1836.78772, -1450.81348, 12.47348, 0.00000, 0.00000, 450.73868);
2729 CreateObject(987, 1836.67163, -1438.92065, 12.47348, 0.00000, 0.00000, 450.07870);
2730 CreateObject(987, 1836.64697, -1426.98804, 12.47348, 0.00000, 0.00000, 450.07870);
2731 CreateObject(987, 1836.65137, -1415.04370, 12.47348, 0.00000, 0.00000, 450.07870);
2732 CreateObject(987, 1836.57471, -1391.17749, 12.47348, 0.00000, 0.00000, 450.07870);
2733 CreateObject(987, 1836.62231, -1403.12549, 12.47348, 0.00000, 0.00000, 450.07870);
2734 CreateObject(987, 1836.57617, -1379.27844, 12.47348, 0.00000, 0.00000, 450.07870);
2735 CreateObject(987, 1836.58496, -1367.34680, 12.47348, 0.00000, 0.00000, 450.07870);
2736 CreateObject(987, 1836.53845, -1355.42773, 12.47348, 0.00000, 0.00000, 450.07870);
2737 CreateObject(987, 1836.52197, -1343.51050, 12.47348, 0.00000, 0.00000, 450.07870);
2738 CreateObject(987, 1836.49976, -1331.58496, 12.47348, 0.00000, 0.00000, 450.07870);
2739 CreateObject(987, 1836.48181, -1319.65710, 12.47348, 0.00000, 0.00000, 450.07870);
2740 CreateObject(987, 1836.46375, -1307.71655, 12.47348, 0.00000, 0.00000, 450.07870);
2741 CreateObject(987, 1836.40771, -1295.77661, 12.47348, 0.00000, 0.00000, 450.07870);
2742 CreateObject(987, 1836.38000, -1283.85120, 12.47348, 0.00000, 0.00000, 450.07870);
2743 CreateObject(987, 1836.41113, -1271.91357, 12.47348, 0.00000, 0.00000, 536.59875);
2744 CreateObject(987, 1824.47876, -1271.25317, 12.47348, 0.00000, 0.00000, 549.43854);
2745 CreateObject(987, 1812.65735, -1273.26855, 12.47348, 0.00000, 0.00000, 568.51868);
2746 CreateObject(987, 1802.16931, -1278.98828, 12.47348, 0.00000, 0.00000, 576.43890);
2747 CreateObject(987, 1792.53296, -1286.10315, 12.47348, 0.00000, 0.00000, 576.43890);
2748 CreateObject(987, 1782.88477, -1293.22229, 12.47348, 0.00000, 0.00000, 567.85870);
2749 CreateObject(987, 1772.34314, -1298.81628, 12.47348, 0.00000, 0.00000, 567.85870);
2750 CreateObject(987, 1761.80469, -1304.42139, 12.47348, 0.00000, 0.00000, 559.21875);
2751 CreateObject(987, 1750.51404, -1308.30994, 12.47348, 0.00000, 0.00000, 550.57910);
2752 CreateObject(987, 1738.77747, -1310.51379, 12.47348, 0.00000, 0.00000, 542.83936);
2753 CreateObject(987, 1726.88574, -1311.05322, 12.47348, 0.00000, 0.00000, 620.95966);
2754 CreateObject(987, 1725.04248, -1322.84961, 12.47348, 0.00000, 0.00000, 630.19928);
2755 CreateObject(987, 1725.11316, -1334.76868, 12.47348, 0.00000, 0.00000, 630.19928);
2756 CreateObject(987, 1725.15991, -1346.72791, 12.47348, 0.00000, 0.00000, 629.35931);
2757 CreateObject(987, 1725.08301, -1358.66406, 12.47348, 0.00000, 0.00000, 629.35931);
2758 CreateObject(987, 1724.97314, -1370.65552, 12.47348, 0.00000, 0.00000, 629.35931);
2759 CreateObject(987, 1724.85767, -1382.61084, 12.47348, 0.00000, 0.00000, 630.49927);
2760 CreateObject(987, 1724.94946, -1394.55237, 12.47348, 0.00000, 0.00000, 630.49927);
2761 CreateObject(987, 1725.02612, -1406.49817, 12.47348, 0.00000, 0.00000, 630.49927);
2762 CreateObject(987, 1725.12329, -1418.42371, 12.47348, 0.00000, 0.00000, 630.49927);
2763 CreateObject(987, 1744.60632, -1430.59290, 12.47348, 0.00000, 0.00000, 709.69928);
2764 CreateObject(987, 1756.36768, -1432.69434, 12.47348, 0.00000, 0.00000, 709.09930);
2765 CreateObject(987, 1768.09998, -1434.99194, 12.47348, 0.00000, 0.00000, 698.17975);
2766 CreateObject(987, 1779.07654, -1439.54907, 12.47348, 0.00000, 0.00000, 700.45966);
2767 CreateObject(3749, 1734.72961, -1428.72925, 18.00340, 0.00000, 0.00000, 0.00000);
2768 CreateObject(987, 1724.79248, -1385.52576, 12.46826, 0.00000, 0.00000, 0.00000);
2769 CreateObject(987, 1736.73560, -1385.53955, 12.46826, 0.00000, 0.00000, 0.00000);
2770 CreateObject(987, 1748.63818, -1385.54907, 12.46826, 0.00000, 0.00000, 0.00000);
2771 CreateObject(987, 1772.40601, -1385.58423, 12.46830, 0.00000, 0.00000, 0.00000);
2772 CreateObject(987, 1784.40601, -1385.58423, 12.46830, 0.00000, 0.00000, 0.00000);
2773 CreateObject(985, 1768.31226, -1385.71875, 14.25989, 0.00000, 0.00000, 0.00000);
2774 CreateObject(987, 1752.41968, -1385.53870, 12.46826, 0.00000, 0.00000, 0.00000);
2775 CreateObject(19313, 1734.51819, -1430.03723, 14.63288, 0.00000, 0.00000, 0.00000);
2776 CreateObject(3578, 1730.74780, -1331.74695, 11.81579, 0.00000, 0.00000, 0.39760);
2777 CreateObject(3578, 1741.02844, -1331.69275, 11.81580, 0.00000, 0.00000, 0.39760);
2778 CreateObject(3578, 1751.17236, -1352.70776, 11.81580, 0.00000, 0.00000, 0.39760);
2779 CreateObject(3578, 1756.08704, -1347.26343, 11.81580, 0.00000, 0.00000, 89.67757);
2780 CreateObject(3578, 1756.15991, -1336.99329, 11.81580, 0.00000, 0.00000, 89.67757);
2781 CreateObject(3578, 1751.28699, -1331.64001, 11.81580, 0.00000, 0.00000, 0.39760);
2782 CreateObject(3578, 1740.93042, -1352.75854, 11.81580, 0.00000, 0.00000, 0.39760);
2783 CreateObject(3578, 1730.63477, -1352.80725, 11.81580, 0.00000, 0.00000, 0.39760);
2784 CreateObject(3578, 1725.84265, -1337.22913, 11.81580, 0.00000, 0.00000, 89.67757);
2785 CreateObject(3578, 1725.79236, -1347.44263, 11.81580, 0.00000, 0.00000, 89.67757);
2786 CreateObject(947, 1733.80859, -1342.18738, 10.30973, 0.00000, 0.00000, 269.63855);
2787 CreateObject(947, 1755.53564, -1342.36633, 14.67911, 0.00000, 0.00000, 89.55963);
2788 CreateObject(947, 1747.71191, -1342.25085, 10.22935, 0.00000, 0.00000, 89.55963);
2789 CreateObject(947, 1726.45337, -1342.24170, 14.67911, 0.00000, 0.00000, 271.71967);
2790 CreateObject(3819, 1741.69653, -1356.00476, 13.44773, 0.00000, 0.00000, 267.79144);
2791 CreateObject(3819, 1741.48596, -1328.62109, 13.44773, 0.00000, 0.00000, 89.75787);
2792 CreateObject(3928, 1811.32104, -1429.01160, 29.16671, 0.00000, 0.00000, 359.82449);
2793 CreateObject(1215, 1812.01025, -1427.45142, 32.05043, 0.00000, 0.00000, 0.00000);
2794 CreateObject(1215, 1811.98718, -1433.20752, 32.05043, 0.00000, 0.00000, 0.00000);
2795 CreateObject(1215, 1805.54211, -1433.18652, 32.05043, 0.00000, 0.00000, 0.00000);
2796 CreateObject(1215, 1805.59668, -1427.39099, 32.05043, 0.00000, 0.00000, 0.00000);
2797 CreateObject(3928, 1806.04016, -1390.82556, 29.06787, 0.00000, 0.00000, 0.00000);
2798 CreateObject(1215, 1809.75562, -1394.34094, 29.44131, 0.00000, 0.00000, 0.00000);
2799 CreateObject(1215, 1809.77344, -1387.47693, 29.44131, 0.00000, 0.00000, 0.00000);
2800 CreateObject(1215, 1802.09900, -1394.33984, 29.44131, 0.00000, 0.00000, 0.00000);
2801 CreateObject(1215, 1802.15381, -1387.53918, 29.44131, 0.00000, 0.00000, 0.00000);
2802 CreateObject(2637, 1828.66150, -1280.70605, 13.01611, 0.00000, 0.00000, 0.00000);
2803 CreateObject(1721, 1829.20325, -1279.44519, 12.60678, 0.00000, 0.00000, 180.39249);
2804 CreateObject(1721, 1828.17041, -1279.43494, 12.60678, 0.00000, 0.00000, 180.39249);
2805 CreateObject(1721, 1828.12903, -1282.04382, 12.60678, 0.00000, 0.00000, 359.86057);
2806 CreateObject(1721, 1829.16064, -1282.11108, 12.60678, 0.00000, 0.00000, 0.22915);
2807 CreateObject(14780, 1793.91797, -1338.87012, 13.50643, 0.00000, 0.00000, 0.00000);
2808 CreateObject(14780, 1815.62292, -1323.75232, 13.50643, 0.00000, 0.00000, 0.00000);
2809 CreateObject(3819, 1802.01550, -1338.90515, 13.63281, 0.00000, 0.00000, 0.00000);
2810 CreateObject(3819, 1815.67603, -1331.76123, 13.63281, 0.00000, 0.00000, 269.40909);
2811 CreateObject(3819, 1794.27051, -1329.49133, 13.63281, 0.00000, 0.00000, 90.59092);
2812 CreateObject(3819, 1815.76147, -1316.07446, 13.63281, 0.00000, 0.00000, 90.59092);
2813 CreateObject(18981, 1823.68433, -1283.94250, 12.00000, 0.00000, -90.50000, 0.00000);
2814 CreateObject(18981, 1825.06702, -1308.87170, 12.00000, 0.00000, -90.50000, 0.00000);
2815 CreateObject(18981, 1825.26025, -1333.62244, 12.00000, 0.00000, -90.50000, 0.00000);
2816 CreateObject(18981, 1825.34204, -1358.96753, 12.00000, 0.00000, -90.50000, 0.00000);
2817 CreateObject(18981, 1825.32776, -1384.01050, 12.00000, 0.00000, -90.50000, 0.00000);
2818 CreateObject(18981, 1825.33899, -1409.00183, 12.00000, 0.00000, -90.50000, 0.00000);
2819 CreateObject(18981, 1825.33655, -1433.71057, 12.00000, 0.00000, -90.50000, 0.00000);
2820 CreateObject(18981, 1825.34851, -1438.79883, 12.00000, 0.00000, -90.50000, 0.00000);
2821 CreateObject(18981, 1800.21240, -1434.93909, 12.00000, 0.00000, -90.50000, 0.00000);
2822 CreateObject(18981, 1779.50317, -1427.02454, 12.00000, 0.00000, -90.50000, -17.51999);
2823 CreateObject(18981, 1781.65881, -1405.29126, 12.00000, 0.00000, -90.50000, 0.00000);
2824 CreateObject(18981, 1756.94812, -1405.58704, 12.00000, 0.00000, -90.50000, 0.00000);
2825 CreateObject(18981, 1756.79980, -1420.59949, 12.00000, 0.00000, -90.50000, -9.48000);
2826 CreateObject(18981, 1737.18140, -1418.58911, 12.00000, 0.00000, -90.50000, -0.18000);
2827 CreateObject(18981, 1737.48901, -1394.50916, 12.00000, 0.00000, -90.50000, -0.18000);
2828 CreateObject(18981, 1762.25708, -1380.57092, 12.00000, 0.00000, -90.50000, -0.18000);
2829 CreateObject(18981, 1781.92590, -1380.55298, 12.00000, 0.00000, -90.50000, -0.18000);
2830 CreateObject(18981, 1737.87756, -1379.51428, 12.00000, 0.00000, -90.50000, -0.18000);
2831 CreateObject(18981, 1737.48657, -1355.97571, 12.00000, 0.00000, -90.50000, -0.18000);
2832 CreateObject(18981, 1762.46936, -1356.31702, 12.00000, 0.00000, -90.50000, -0.18000);
2833 CreateObject(18981, 1778.95142, -1353.00085, 12.00000, 0.00000, -90.50000, -0.18000);
2834 CreateObject(18981, 1806.48035, -1374.34558, 12.00000, 0.00000, -90.50000, -0.18000);
2835 CreateObject(18981, 1806.03931, -1357.42664, 12.00000, 0.00000, -90.50000, -0.18000);
2836 CreateObject(18981, 1800.64795, -1332.82117, 12.00000, 0.00000, -90.50000, -0.18000);
2837 CreateObject(18981, 1800.23120, -1307.85400, 12.00000, 0.00000, -90.50000, -0.18000);
2838 CreateObject(18981, 1807.36902, -1287.72534, 12.00000, 0.00000, -90.50000, 29.16000);
2839 CreateObject(18981, 1788.05701, -1302.79163, 12.00000, 0.00000, -90.50000, 29.52000);
2840 CreateObject(18981, 1776.09143, -1332.52136, 12.00000, 0.00000, -90.50000, -0.18000);
2841 CreateObject(18981, 1770.83850, -1313.06287, 12.00000, 0.00000, -90.50000, 29.94000);
2842 CreateObject(18981, 1775.93921, -1315.68103, 12.00000, 0.00000, -90.50000, 29.94000);
2843 CreateObject(18981, 1749.85913, -1321.23840, 12.00000, 0.00000, -90.50000, 16.26000);
2844 CreateObject(18981, 1738.39490, -1322.95337, 12.00000, 0.00000, -90.50000, 1.50000);
2845 CreateObject(18981, 1737.37744, -1336.58667, 12.00000, 0.00000, -90.50000, 1.50000);
2846 CreateObject(18981, 1756.38110, -1336.20288, 12.00000, 0.00000, -90.50000, 1.50000);
2847 CreateObject(18981, 1803.74573, -1357.84253, 12.00000, 0.00000, -90.50000, -0.18000);
2848 CreateObject(18981, 1778.96777, -1356.34180, 12.00000, 0.00000, -90.50000, -0.18000);
2849 CreateObject(18981, 1824.91101, -1283.90710, 12.00000, 0.00000, -90.50000, 0.00000);
2850 CreateObject(18981, 1824.29016, -1283.02905, 12.00000, 0.00000, -90.50000, 0.00000);
2851 CreateObject(18981, 1779.73889, -1426.10938, 12.00000, 0.00000, -90.50000, -17.51999);
2852 CreateObject(18981, 1825.33118, -1355.17810, 12.00000, 0.00000, -90.50000, 0.00000);
2853 CreateObject(18981, 1737.37891, -1321.74817, 12.00000, 0.00000, -90.50000, 4.02000);
2854 return 1;
2855}
2856
2857public OnGameModeExit()
2858{
2859 foreach(new i: Player)
2860 {
2861 if(IsPlayerConnected(i)) // Checking if the players stored in "i" are connected.
2862 {
2863 OnPlayerDisconnect(i, 1); // We do that so players wouldn't lose their data upon server's close.
2864 }
2865 }
2866
2867 mysql_close(Database); // Closing the database.
2868
2869 foreach(new i : ServerVehicles) {
2870
2871 if(!strcmp(vInfo[i][vehOwner], "-") || strcmp(vInfo[i][vehOwner], "-")) {
2872
2873 SaveVehicle(i);
2874 DestroyVehicle(vInfo[i][vehSessionID]);
2875 DestroyDynamic3DTextLabel(vInfo[i][vehLabel]);
2876 }
2877 }
2878 foreach(new i : PrivateVehicles[playerid]) {
2879
2880 if(!strcmp(vInfo[i][vehOwner], GetName(playerid))) {
2881
2882 SaveVehicle(i);
2883 DestroyVehicle(vInfo[i][vehSessionID]);
2884 Iter_Remove(ServerVehicles, i);
2885 }
2886 }
2887 return 1;
2888}
2889
2890public OnPlayerRequestClass(playerid, classid)
2891{
2892 return 1;
2893}
2894
2895public OnPlayerConnect(playerid)
2896{
2897 new DB_Query[115];
2898
2899 //Resetting player information.
2900 pInfo[playerid][Kills] = 0;
2901 pInfo[playerid][Deaths] = 0;
2902 pInfo[playerid][PasswordFails] = 0;
2903
2904 GetPlayerName(playerid, pInfo[playerid][Name], MAX_PLAYER_NAME); // Getting the player's name.
2905 Corrupt_Check[playerid]++;
2906
2907 mysql_format(Database, DB_Query, sizeof(DB_Query), "SELECT * FROM `PLAYERS` WHERE `USERNAME` = '%e' LIMIT 1", pInfo[playerid][Name]);
2908 mysql_tquery(Database, DB_Query, "OnPlayerDataCheck", "ii", playerid, Corrupt_Check[playerid]);
2909
2910 new query[65];
2911 mysql_format(mysql, query, sizeof(query), "SELECT * FROM `Vehicles` WHERE `vehOwner` = '%e'", GetName(playerid));
2912 mysql_tquery(mysql, query, "LoadPlayerVehicles", "i", playerid);
2913 //Removes
2914 RemoveBuildingForPlayer(playerid, 4024, 1479.8672, -1790.3984, 56.0234, 0.25);
2915 RemoveBuildingForPlayer(playerid, 4044, 1481.1875, -1785.0703, 22.3828, 0.25);
2916 RemoveBuildingForPlayer(playerid, 4045, 1479.3359, -1802.2891, 12.5469, 0.25);
2917 RemoveBuildingForPlayer(playerid, 1527, 1448.2344, -1755.8984, 14.5234, 0.25);
2918 RemoveBuildingForPlayer(playerid, 3997, 1479.3359, -1802.2891, 12.5469, 0.25);
2919 RemoveBuildingForPlayer(playerid, 4002, 1479.8672, -1790.3984, 56.0234, 0.25);
2920 RemoveBuildingForPlayer(playerid, 3980, 1481.1875, -1785.0703, 22.3828, 0.25);
2921 RemoveBuildingForPlayer(playerid, 4003, 1481.0781, -1747.0313, 33.5234, 0.25);
2922 RemoveBuildingForPlayer(playerid, 713, 1407.1953, -1749.3125, 13.0938, 0.25);
2923 RemoveBuildingForPlayer(playerid, 713, 1405.2344, -1821.1172, 13.1016, 0.25);
2924 RemoveBuildingForPlayer(playerid, 1280, 1725.9063, -1923.5000, 12.9609, 0.25);
2925 RemoveBuildingForPlayer(playerid, 5024, 1748.8438, -1883.0313, 14.1875, 0.25);
2926 RemoveBuildingForPlayer(playerid, 1226, 1774.7578, -1901.5391, 16.3750, 0.25);
2927 RemoveBuildingForPlayer(playerid, 1226, 1755.8203, -1859.5391, 16.3516, 0.25);
2928 RemoveBuildingForPlayer(playerid, 1226, 1808.1250, -1859.5391, 16.3516, 0.25);
2929 RemoveBuildingForPlayer(playerid, 13078, 1220.000, 162.688, 22.843, 0.250);
2930 RemoveBuildingForPlayer(playerid, 13080, 1220.000, 162.688, 22.843, 0.250);
2931 RemoveBuildingForPlayer(playerid, 1689, 1219.479, 175.843, 26.398, 0.250);
2932 RemoveBuildingForPlayer(playerid, 1688, 1229.199, 164.891, 26.250, 0.250);
2933 RemoveBuildingForPlayer(playerid, 1687, 1228.209, 162.132, 26.023, 0.250);
2934 RemoveBuildingForPlayer(playerid, 1689, 1221.479, 148.031, 26.398, 0.250);
2935 RemoveBuildingForPlayer(playerid, 1688, 1208.880, 159.188, 26.250, 0.250);
2936 RemoveBuildingForPlayer(playerid, 1687, 1207.880, 156.429, 26.023, 0.250);
2937 RemoveBuildingForPlayer(playerid, 1308, 1243.089, 174.632, 19.453, 0.250);
2938 RemoveBuildingForPlayer(playerid, 1688, 1208.880, 159.188, 26.250, 0.250);
2939 RemoveBuildingForPlayer(playerid, 1687, 1207.880, 156.429, 26.023, 0.250);
2940 RemoveBuildingForPlayer(playerid, 1689, 1219.479, 175.843, 26.398, 0.250);
2941 RemoveBuildingForPlayer(playerid, 1688, 1229.199, 164.891, 26.250, 0.250);
2942 RemoveBuildingForPlayer(playerid, 1687, 1228.209, 162.132, 26.023, 0.250);
2943 RemoveBuildingForPlayer(playerid, 13078, 1220.000, 162.688, 22.843, 0.250);
2944 RemoveBuildingForPlayer(playerid, 13080, 1220.000, 162.688, 22.843, 0.250);
2945 RemoveBuildingForPlayer(playerid, 1689, 1221.479, 148.031, 26.398, 0.250);
2946 RemoveBuildingForPlayer(playerid, 13078, 1220.000, 162.688, 22.843, 0.250);
2947 RemoveBuildingForPlayer(playerid, 13080, 1220.000, 162.688, 22.843, 0.250);
2948 RemoveBuildingForPlayer(playerid, 1440, 1207.859, 177.522, 19.945, 0.250);
2949 //Prison
2950 RemoveBuildingForPlayer(playerid, 1283, 1700.8672, -1440.3203, 15.6250, 0.25);
2951 RemoveBuildingForPlayer(playerid, 1283, 1715.4453, -1428.4766, 15.6250, 0.25);
2952 RemoveBuildingForPlayer(playerid, 1294, 1729.3516, -1437.0000, 16.9063, 0.25);
2953 RemoveBuildingForPlayer(playerid, 1283, 1731.2188, -1441.3281, 15.6250, 0.25);
2954 RemoveBuildingForPlayer(playerid, 4606, 1825.0000, -1413.9297, 12.5547, 0.25);
2955 RemoveBuildingForPlayer(playerid, 4607, 1780.0000, -1360.0000, 12.0000, 0.25);
2956 RemoveBuildingForPlayer(playerid, 4608, 1773.2734, -1368.2734, 18.0234, 0.25);
2957 RemoveBuildingForPlayer(playerid, 4609, 1777.8906, -1376.8906, 20.3750, 0.25);
2958 RemoveBuildingForPlayer(playerid, 4610, 1747.4375, -1361.5078, 21.0313, 0.25);
2959 RemoveBuildingForPlayer(playerid, 1531, 1746.7500, -1359.7734, 16.2109, 0.25);
2960 RemoveBuildingForPlayer(playerid, 4758, 1726.7031, -1313.8125, 33.8203, 0.25);
2961 RemoveBuildingForPlayer(playerid, 4759, 1748.9297, -1420.2813, 41.3828, 0.25);
2962 RemoveBuildingForPlayer(playerid, 1261, 1726.3984, -1313.0625, 28.4375, 0.25);
2963 RemoveBuildingForPlayer(playerid, 1266, 1748.8438, -1420.4453, 35.2734, 0.25);
2964 RemoveBuildingForPlayer(playerid, 3782, 1803.0859, -1294.2031, 34.3438, 0.25);
2965 RemoveBuildingForPlayer(playerid, 3782, 1803.0859, -1294.2031, 61.5781, 0.25);
2966 RemoveBuildingForPlayer(playerid, 3782, 1803.0859, -1294.2031, 88.8047, 0.25);
2967 RemoveBuildingForPlayer(playerid, 3782, 1803.0859, -1294.2031, 116.0313, 0.25);
2968 RemoveBuildingForPlayer(playerid, 4761, 1803.0859, -1294.2031, 71.5313, 0.25);
2969 RemoveBuildingForPlayer(playerid, 4762, 1823.6875, -1291.2500, 7.3125, 0.25);
2970 RemoveBuildingForPlayer(playerid, 647, 1728.1719, -1428.3750, 15.1250, 0.25);
2971 RemoveBuildingForPlayer(playerid, 700, 1727.6172, -1423.7656, 14.1719, 0.25);
2972 RemoveBuildingForPlayer(playerid, 1215, 1783.0391, -1440.3438, 13.1172, 0.25);
2973 RemoveBuildingForPlayer(playerid, 1215, 1773.5234, -1437.0391, 13.0625, 0.25);
2974 RemoveBuildingForPlayer(playerid, 1215, 1762.7188, -1433.5859, 13.1172, 0.25);
2975 RemoveBuildingForPlayer(playerid, 1260, 1748.8438, -1420.4453, 35.2734, 0.25);
2976 RemoveBuildingForPlayer(playerid, 4731, 1748.9297, -1420.2813, 41.3828, 0.25);
2977 RemoveBuildingForPlayer(playerid, 647, 1783.2031, -1427.5234, 17.2891, 0.25);
2978 RemoveBuildingForPlayer(playerid, 647, 1793.6172, -1420.6875, 17.2891, 0.25);
2979 RemoveBuildingForPlayer(playerid, 647, 1727.8359, -1417.7969, 15.1250, 0.25);
2980 RemoveBuildingForPlayer(playerid, 1215, 1789.1250, -1413.3125, 15.2813, 0.25);
2981 RemoveBuildingForPlayer(playerid, 4594, 1825.0000, -1413.9297, 12.5547, 0.25);
2982 RemoveBuildingForPlayer(playerid, 700, 1727.6172, -1411.3359, 13.7578, 0.25);
2983 RemoveBuildingForPlayer(playerid, 647, 1727.8359, -1405.5391, 15.1250, 0.25);
2984 RemoveBuildingForPlayer(playerid, 700, 1727.6172, -1399.6797, 14.1172, 0.25);
2985 RemoveBuildingForPlayer(playerid, 647, 1727.8359, -1393.6719, 15.1250, 0.25);
2986 RemoveBuildingForPlayer(playerid, 674, 1740.3672, -1388.0625, 13.6016, 0.25);
2987 RemoveBuildingForPlayer(playerid, 1215, 1740.4609, -1386.5234, 13.8281, 0.25);
2988 RemoveBuildingForPlayer(playerid, 674, 1749.5156, -1388.0000, 14.3125, 0.25);
2989 RemoveBuildingForPlayer(playerid, 1215, 1749.9063, -1386.4375, 14.5703, 0.25);
2990 RemoveBuildingForPlayer(playerid, 4714, 1754.5391, -1389.0859, 15.3438, 0.25);
2991 RemoveBuildingForPlayer(playerid, 674, 1758.0469, -1387.9141, 15.2969, 0.25);
2992 RemoveBuildingForPlayer(playerid, 1215, 1758.7266, -1386.2578, 15.3125, 0.25);
2993 RemoveBuildingForPlayer(playerid, 674, 1768.1484, -1387.6094, 15.2969, 0.25);
2994 RemoveBuildingForPlayer(playerid, 4559, 1773.2734, -1368.2734, 18.0234, 0.25);
2995 RemoveBuildingForPlayer(playerid, 4560, 1777.8906, -1376.8906, 20.3750, 0.25);
2996 RemoveBuildingForPlayer(playerid, 1215, 1789.1250, -1402.1563, 15.2813, 0.25);
2997 RemoveBuildingForPlayer(playerid, 955, 1789.2109, -1369.2656, 15.1641, 0.25);
2998 RemoveBuildingForPlayer(playerid, 647, 1809.8984, -1384.4688, 15.1094, 0.25);
2999 RemoveBuildingForPlayer(playerid, 647, 1813.1641, -1384.4688, 15.1094, 0.25);
3000 RemoveBuildingForPlayer(playerid, 647, 1831.3594, -1384.4688, 15.1094, 0.25);
3001 RemoveBuildingForPlayer(playerid, 1215, 1815.6406, -1382.2031, 13.9375, 0.25);
3002 RemoveBuildingForPlayer(playerid, 1215, 1827.9609, -1377.7266, 13.9375, 0.25);
3003 RemoveBuildingForPlayer(playerid, 620, 1831.9609, -1381.0703, 13.5625, 0.25);
3004 RemoveBuildingForPlayer(playerid, 1215, 1788.9844, -1363.0703, 15.2813, 0.25);
3005 RemoveBuildingForPlayer(playerid, 1215, 1827.8906, -1363.0000, 13.9375, 0.25);
3006 RemoveBuildingForPlayer(playerid, 4558, 1747.4375, -1361.5078, 21.0313, 0.25);
3007 RemoveBuildingForPlayer(playerid, 1432, 1787.0469, -1360.9063, 14.8594, 0.25);
3008 RemoveBuildingForPlayer(playerid, 4590, 1780.0000, -1360.0000, 12.0000, 0.25);
3009 RemoveBuildingForPlayer(playerid, 1432, 1787.0781, -1357.2656, 14.8672, 0.25);
3010 RemoveBuildingForPlayer(playerid, 647, 1831.3594, -1359.0938, 15.1094, 0.25);
3011 RemoveBuildingForPlayer(playerid, 674, 1754.5391, -1350.0781, 14.5859, 0.25);
3012 RemoveBuildingForPlayer(playerid, 674, 1759.8047, -1350.0781, 14.5859, 0.25);
3013 RemoveBuildingForPlayer(playerid, 1432, 1787.0469, -1353.7813, 14.8594, 0.25);
3014 RemoveBuildingForPlayer(playerid, 1215, 1789.8672, -1353.2656, 15.2813, 0.25);
3015 RemoveBuildingForPlayer(playerid, 1432, 1791.4766, -1351.6406, 14.7813, 0.25);
3016 RemoveBuildingForPlayer(playerid, 1215, 1800.5469, -1353.2109, 14.9531, 0.25);
3017 RemoveBuildingForPlayer(playerid, 700, 1831.2813, -1354.1016, 14.4219, 0.25);
3018 RemoveBuildingForPlayer(playerid, 1215, 1827.8906, -1344.8984, 13.9375, 0.25);
3019 RemoveBuildingForPlayer(playerid, 647, 1831.3594, -1348.4922, 15.1094, 0.25);
3020 RemoveBuildingForPlayer(playerid, 1267, 1726.3984, -1313.0625, 28.4375, 0.25);
3021 RemoveBuildingForPlayer(playerid, 4730, 1726.7031, -1313.8125, 33.8203, 0.25);
3022 RemoveBuildingForPlayer(playerid, 1215, 1738.9609, -1342.5703, 15.3125, 0.25);
3023 RemoveBuildingForPlayer(playerid, 1215, 1750.1328, -1342.5859, 15.3125, 0.25);
3024 RemoveBuildingForPlayer(playerid, 1215, 1760.7969, -1342.5859, 15.3125, 0.25);
3025 RemoveBuildingForPlayer(playerid, 1215, 1769.1641, -1342.6094, 15.3125, 0.25);
3026 RemoveBuildingForPlayer(playerid, 1215, 1779.6797, -1342.6094, 15.2813, 0.25);
3027 RemoveBuildingForPlayer(playerid, 1215, 1790.0859, -1342.6094, 15.2813, 0.25);
3028 RemoveBuildingForPlayer(playerid, 1215, 1800.5469, -1342.6094, 14.9531, 0.25);
3029 RemoveBuildingForPlayer(playerid, 647, 1813.9453, -1323.3516, 15.3125, 0.25);
3030 RemoveBuildingForPlayer(playerid, 1215, 1828.0000, -1330.4141, 13.9375, 0.25);
3031 RemoveBuildingForPlayer(playerid, 620, 1831.6953, -1326.8906, 13.5625, 0.25);
3032 RemoveBuildingForPlayer(playerid, 1215, 1820.0859, -1326.1563, 13.9375, 0.25);
3033 RemoveBuildingForPlayer(playerid, 647, 1817.2109, -1323.3516, 15.3125, 0.25);
3034 RemoveBuildingForPlayer(playerid, 647, 1831.3594, -1323.4844, 15.1094, 0.25);
3035 RemoveBuildingForPlayer(playerid, 4587, 1803.0859, -1294.2031, 71.5313, 0.25);
3036 RemoveBuildingForPlayer(playerid, 3781, 1803.0859, -1294.2031, 34.3438, 0.25);
3037 RemoveBuildingForPlayer(playerid, 3781, 1803.0859, -1294.2031, 61.5781, 0.25);
3038 RemoveBuildingForPlayer(playerid, 3781, 1803.0859, -1294.2031, 88.8047, 0.25);
3039 RemoveBuildingForPlayer(playerid, 3781, 1803.0859, -1294.2031, 116.0313, 0.25);
3040 RemoveBuildingForPlayer(playerid, 4605, 1823.6875, -1291.2500, 7.3125, 0.25);
3041 RemoveBuildingForPlayer(playerid, 1308, 1837.1328, -1369.9844, 12.7500, 0.25);
3042 RemoveBuildingForPlayer(playerid, 5464, 1902.4297, -1309.5391, 29.9141, 0.25);
3043 RemoveBuildingForPlayer(playerid, 1308, 1836.7500, -1271.0078, 12.6875, 0.25);
3044 //SF PD
3045 RemoveBuildingForPlayer(playerid, 11025, -2199.328, 264.328, 42.195, 0.250);
3046 RemoveBuildingForPlayer(playerid, 11402, -2199.328, 252.007, 53.250, 0.250);
3047 RemoveBuildingForPlayer(playerid, 792, -2245.773, 305.914, 34.398, 0.250);
3048 RemoveBuildingForPlayer(playerid, 792, -2229.468, 314.250, 34.437, 0.250);
3049 RemoveBuildingForPlayer(playerid, 1226, -2176.789, 316.296, 38.187, 0.250);
3050 RemoveBuildingForPlayer(playerid, 792, -2245.789, 236.898, 34.414, 0.250);
3051 RemoveBuildingForPlayer(playerid, 1226, -2247.914, 280.117, 38.187, 0.250);
3052 RemoveBuildingForPlayer(playerid, 792, -2245.421, 265.687, 34.414, 0.250);
3053 RemoveBuildingForPlayer(playerid, 956, -2229.187, 286.414, 34.703, 0.250);
3054 RemoveBuildingForPlayer(playerid, 1226, -2216.539, 212.375, 38.187, 0.250);
3055 RemoveBuildingForPlayer(playerid, 792, -2197.054, 214.265, 34.437, 0.250);
3056 RemoveBuildingForPlayer(playerid, 10973, -2199.328, 264.328, 42.195, 0.250);
3057 RemoveBuildingForPlayer(playerid, 10974, -2199.328, 252.007, 53.250, 0.250);
3058 RemoveBuildingForPlayer(playerid, 1226, -2150.898, 240.656, 38.039, 0.250);
3059 RemoveBuildingForPlayer(playerid, 1226, -2150.899, 286.226, 38.039, 0.250);
3060 return 1;
3061}
3062
3063public OnPlayerDisconnect(playerid, reason)
3064{
3065 Corrupt_Check[playerid]++;
3066
3067 new DB_Query[256];
3068 //Running a query to save the player's data using the stored stuff.
3069 mysql_format(Database, DB_Query, sizeof(DB_Query), "UPDATE `PLAYERS` SET `SCORE` = %d, `CASH` = %d, `KILLS` = %d, `DEATHS` = %d WHERE `ID` = %d LIMIT 1",
3070 pInfo[playerid][Score], pInfo[playerid][Cash], pInfo[playerid][Kills], pInfo[playerid][Deaths], pInfo[playerid][ID]);
3071
3072 mysql_tquery(Database, DB_Query);
3073
3074 if(cache_is_valid(pInfo[playerid][Player_Cache])) //Checking if the player's cache ID is valid.
3075 {
3076 cache_delete(pInfo[playerid][Player_Cache]); // Deleting the cache.
3077 pInfo[playerid][Player_Cache] = MYSQL_INVALID_CACHE; // Setting the stored player Cache as invalid.
3078 }
3079
3080 pInfo[playerid][LoggedIn] = false;
3081 print("OnPlayerDisconnect has been called."); // Sending message once OnPlayerDisconnect is called.
3082 return 1;
3083}
3084
3085public OnPlayerSpawn(playerid)
3086{
3087 SetPlayerPos(playerid,-2453.5283, 503.9681, 30.0802);
3088 SetPlayerSkin(playerid, 240);
3089 return 1;
3090}
3091
3092public OnPlayerDeath(playerid, killerid, reason)
3093{
3094 if(killerid != INVALID_PLAYER_ID) // Checking if the killer of the player is valid.
3095 {
3096 //Increasing the kills of the killer and the deaths of the player.
3097 pInfo[killerid][Kills]++;
3098 pInfo[playerid][Deaths]++;
3099 }
3100 return 1;
3101}
3102
3103public OnVehicleSpawn(vehicleid)
3104{
3105 foreach(new playerid : Player) {
3106
3107 foreach(new i : PrivateVehicles[playerid]) {
3108
3109 for(new x = 0; x < 14; x++) {
3110
3111 if(!strcmp(vInfo[i][vehOwner], GetName(playerid))) {
3112
3113 if(vInfo[i][vehMod][x] > 0) AddVehicleComponent(vInfo[i][vehSessionID], vInfo[i][vehMod][x]);
3114 }
3115 }
3116 }
3117 }
3118 return 1;
3119}
3120
3121public OnVehicleDeath(vehicleid, killerid)
3122{
3123 return 1;
3124}
3125
3126public OnPlayerText(playerid, text[])
3127{
3128 return 1;
3129}
3130
3131public OnPlayerCommandText(playerid, cmdtext[])
3132{
3133 if(!strcmp(cmdtext, "/blake", true))
3134 {
3135 SetPlayerPos(playerid, -699.1899,-7450.6929,37.9266);
3136 return 1;
3137 }
3138 if(!strcmp(cmdtext, "/docks", true))
3139 {
3140 SetPlayerPos(playerid, -1211.2087,-7843.1299,15.7843);
3141 return 1;
3142 }
3143 return 0;
3144}
3145
3146public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
3147{
3148 return 1;
3149}
3150
3151public OnPlayerExitVehicle(playerid, vehicleid)
3152{
3153 return 1;
3154}
3155
3156public OnPlayerStateChange(playerid, newstate, oldstate)
3157{
3158 return 1;
3159}
3160
3161public OnPlayerEnterCheckpoint(playerid)
3162{
3163 return 1;
3164}
3165
3166public OnPlayerLeaveCheckpoint(playerid)
3167{
3168 return 1;
3169}
3170
3171public OnPlayerEnterRaceCheckpoint(playerid)
3172{
3173 return 1;
3174}
3175
3176public OnPlayerLeaveRaceCheckpoint(playerid)
3177{
3178 return 1;
3179}
3180
3181public OnRconCommand(cmd[])
3182{
3183 return 1;
3184}
3185
3186public OnPlayerRequestSpawn(playerid)
3187{
3188 if(pInfo[playerid][LoggedIn] == false) return 0; // Ignoring the request incase player isn't logged in.
3189 return 1;
3190}
3191
3192public OnObjectMoved(objectid)
3193{
3194 return 1;
3195}
3196
3197public OnPlayerObjectMoved(playerid, objectid)
3198{
3199 return 1;
3200}
3201
3202public OnPlayerPickUpPickup(playerid, pickupid)
3203{
3204 return 1;
3205}
3206
3207public OnVehicleMod(playerid, vehicleid, componentid)
3208{
3209 foreach(new i : PrivateVehicles[playerid]) {
3210
3211 if(IsPlayerInVehicle(playerid, vInfo[i][vehSessionID])) {
3212
3213 if(!strcmp(vInfo[i][vehOwner], GetName(playerid))) {
3214
3215 for(new x; x < 14; x++) {
3216
3217 if(GetVehicleComponentType(componentid) == x) {
3218
3219 vInfo[i][vehMod][x] = componentid;
3220 }
3221 }
3222 SaveVehicle(i);
3223 }
3224 }
3225 }
3226 return 1;
3227}
3228
3229public OnVehiclePaintjob(playerid, vehicleid, paintjobid)
3230{
3231 return 1;
3232}
3233
3234public OnVehicleRespray(playerid, vehicleid, color1, color2)
3235{
3236 foreach(new i : PrivateVehicles[playerid]) {
3237
3238 if(IsPlayerInVehicle(playerid, vInfo[i][vehSessionID])) {
3239
3240 if(!strcmp(vInfo[i][vehOwner], GetName(playerid))) {
3241
3242 vInfo[i][vehColorOne] = color1;
3243 vInfo[i][vehColorTwo] = color2;
3244 ChangeVehicleColor(vInfo[i][vehSessionID], vInfo[i][vehColorOne], vInfo[i][vehColorTwo]);
3245 SaveVehicle(i);
3246 }
3247 }
3248 }
3249 return 0;
3250}
3251
3252CMD:buyvehicle(playerid, params[])
3253{
3254 new id, string[100];
3255 if(sscanf(params, "i", id)) return SCM(playerid, red, "Buy vehicle: /buyvehicle <VehicleID>");
3256 if(!Iter_Contains(ServerVehicles, id)) return SendClientMessage(playerid, red, "Invalid vehicle ID");
3257
3258 if(!strcmp(vInfo[id][vehOwner], "-")) {
3259
3260 SetPVarInt(playerid, "buyVehicle", id);
3261 format(string, sizeof(string), "{FFFFFF}Vehicle: {00FF00}%s \n{FFFFFF}Price: {00FF00}$%s \n{FFFFFF}Buy it?", vInfo[id][vehName], cNumber(vInfo[id][vehPrice]));
3262 ShowPlayerDialog(playerid, DIALOG_BUY_VEHICLE, DIALOG_STYLE_MSGBOX, "Buy Vehicle", string, "Buy", "Close");
3263 return 1;
3264 }
3265 else return SCM(playerid, red, "Vehicle is already owned by a player");
3266}
3267
3268CMD:vehicles(playerid, params[])
3269{
3270 new bool:found = false, list[512];
3271 list = "ID\tVehicle\tNumber Plate\n";
3272 foreach(new i : PrivateVehicles[playerid]) {
3273
3274 if(!strcmp(vInfo[i][vehOwner], GetName(playerid))) {
3275
3276 found = true;
3277 format(list, sizeof(list), "%s%d\t%s\t%s\n", list, i, vInfo[i][vehName], vInfo[i][vehPlate]);
3278 }
3279 }
3280 if(found == true) return ShowPlayerDialog(playerid, DIALOG_VEHICLES, DIALOG_STYLE_TABLIST_HEADERS, "Vehicles", list, "Select", "Close");
3281 else return ShowPlayerDialog(playerid, 2114, DIALOG_STYLE_MSGBOX, "Vehicles", "{FF0000}No vehicles found", "Close", "");
3282}
3283CMD:v(playerid, params[]) return cmd_vehicles(playerid, params);
3284
3285CMD:changeplate(playerid, params[])
3286{
3287 new txt[16];
3288 if(sscanf(params, "s[16]", txt)) return SCM(playerid, red, "Change vehicle number plate: /changeplate <Text>");
3289 if(strlen(txt) > 16) return SCM(playerid, red, "Input text is too long");
3290 if(!IsPlayerInAnyVehicle(playerid)) return SCM(playerid, red, "You are not inside any vheicle");
3291 if(GetPlayerState(playerid) == PLAYER_STATE_PASSENGER) return SCM(playerid, red, "You must be the driver to use this command");
3292
3293 foreach(new i : PrivateVehicles[playerid]) {
3294
3295 if(IsPlayerInVehicle(playerid, vInfo[i][vehSessionID])) {
3296
3297 if(!strcmp(vInfo[i][vehOwner], GetName(playerid))) {
3298
3299 SetVehicleNumberPlate(vInfo[i][vehSessionID], txt);
3300 vInfo[i][vehPlate] = txt;
3301
3302 new Float:playerX, Float:playerY, Float:playerZ;
3303 GetPlayerPos(playerid, playerX, playerY, playerZ);
3304
3305 SetVehicleToRespawn(vInfo[i][vehSessionID]);
3306 SetVehiclePos(vInfo[i][vehSessionID], playerX, playerY, playerZ);
3307 PutPlayerInVehicle(playerid, vInfo[i][vehSessionID], 0);
3308
3309 SaveVehicle(i);
3310 }
3311 else return SCM(playerid, red, "You are not the owner of this vehicle");
3312 }
3313 }
3314
3315 SCM(playerid, red, "You have changed your vehicle's number plate");
3316 return 1;
3317}
3318CMD:cplate(playerid, params[]) return cmd_changeplate(playerid, params);
3319
3320CMD:lock(playerid, params[])
3321{
3322 if(isnull(params))
3323 {
3324 foreach(new i : ServerVehicles) {
3325
3326 if(IsPlayerInVehicle(playerid, vInfo[i][vehSessionID])) {
3327
3328 if(!strcmp(vInfo[i][vehOwner], GetName(playerid))) {
3329
3330 foreach(new x : Player) if(x != playerid) SetVehicleParamsForPlayer(vInfo[i][vehSessionID], x, 0, 1);
3331
3332 GameTextForPlayer(playerid, "~w~LOCKED", 2000, 3);
3333 vInfo[i][vehLock] = MODE_LOCK;
3334 SaveVehicle(i);
3335 }
3336 else return SCM(playerid, red, "You are not the owner of this vehicle");
3337 }
3338 }
3339 return 1;
3340 }
3341
3342 new id;
3343 if(sscanf(params, "i", id)) return SCM(playerid, red, "Unlock vehicle: /unlock <VehicleID>");
3344 if(!Iter_Contains(ServerVehicles, id)) return SendClientMessage(playerid, red, "Invalid vehicle ID");
3345 if(strcmp(vInfo[id][vehOwner], GetName(playerid))) return SCM(playerid, red, "You are not the owner of this vehicle");
3346
3347 if(vInfo[id][vehLock] == MODE_NOLOCK) {
3348
3349 foreach(new x : Player) if(x != playerid) SetVehicleParamsForPlayer(vInfo[id][vehSessionID], x, 0, 1);
3350
3351 GameTextForPlayer(playerid, "~w~LOCKED", 2000, 3);
3352 vInfo[id][vehLock] = MODE_LOCK;
3353 SaveVehicle(id);
3354 return 1;
3355 }
3356 else return SCM(playerid, red, "Vehicles is already locked");
3357}
3358
3359CMD:unlock(playerid, params[])
3360{
3361 if(isnull(params)){
3362
3363 foreach(new i : ServerVehicles) {
3364
3365 if(IsPlayerInVehicle(playerid, vInfo[i][vehSessionID])) {
3366
3367 if(!strcmp(vInfo[i][vehOwner], GetName(playerid))) {
3368
3369 foreach(new x : Player) if(x != playerid) SetVehicleParamsForPlayer(vInfo[i][vehSessionID], x, 0, 0);
3370
3371 GameTextForPlayer(playerid, "~w~UNLOCKED", 2000, 3);
3372 vInfo[i][vehLock] = MODE_NOLOCK;
3373 SaveVehicle(i);
3374 }
3375 else return SCM(playerid, red, "You are not the owner of this vehicle");
3376 }
3377 }
3378 return 1;
3379 }
3380
3381 new id;
3382 if(sscanf(params, "i", id)) return SCM(playerid, red, "Unlock vehicle: /unlock <VehicleID>");
3383 if(!Iter_Contains(ServerVehicles, id)) return SendClientMessage(playerid, red, "Invalid vehicle ID");
3384 if(strcmp(vInfo[id][vehOwner], GetName(playerid))) return SCM(playerid, red, "You are not the owner of this vehicle");
3385
3386 if(vInfo[id][vehLock] == MODE_LOCK) {
3387
3388 foreach(new x : Player) if(x != playerid) SetVehicleParamsForPlayer(vInfo[id][vehSessionID], x, 0, 0);
3389
3390 GameTextForPlayer(playerid, "~w~UNLOCKED", 2000, 3);
3391 vInfo[id][vehLock] = MODE_NOLOCK;
3392 SaveVehicle(id);
3393 return 1;
3394 }
3395 else return SCM(playerid, red, "Vehicles is already unlocked");
3396}
3397
3398CMD:createvehicle(playerid, params[])
3399{
3400 if(!IsPlayerAdmin(playerid)) return SCM(playerid, red, "You must be administrator to use this command");
3401
3402 new modelid[30], vehid, color1, color2, price;
3403 if(sscanf(params, "s[30]iid", modelid, color1, color2, price)) return SCM(playerid, red, "Create vehicle: /createvehicle <ModelID/Vehicle Name> <Color1> <Color2> <Price>");
3404
3405 if(IsNumeric(modelid)) vehid = strval(modelid);
3406 else vehid = ReturnVehicleModelID(modelid);
3407
3408 if(vehid < 400 || vehid > 611) return SCM(playerid, red, "Invalid vehicle model!");
3409
3410 new index = Iter_Free(ServerVehicles);
3411 if(index == -1) return SCM(playerid, red, "You can't create more vehicle!");
3412
3413 if(IsPlayerInAnyVehicle(playerid)) DestroyVehicle(GetPlayerVehicleID(playerid));
3414
3415 GetPlayerPos(playerid, vInfo[index][vehX], vInfo[index][vehY], vInfo[index][vehZ]);
3416 GetPlayerFacingAngle(playerid, vInfo[index][vehA]);
3417
3418 SetPlayerPos(playerid, vInfo[index][vehX] + 3, vInfo[index][vehY], vInfo[index][vehZ]);
3419
3420 vInfo[index][vehSessionID] = CreateVehicle(vehid, vInfo[index][vehX], vInfo[index][vehY], vInfo[index][vehZ], vInfo[index][vehA], color1, color2, 10);
3421 SetVehicleParamsEx(vInfo[index][vehSessionID], 0, 0, 0, 1, 0, 0, 0);
3422 SetVehicleNumberPlate(vInfo[index][vehSessionID], "OMAR");
3423
3424 format(vInfo[index][vehName], MAX_PLAYER_NAME, GetVehicleName(vehid));
3425 format(vInfo[index][vehOwner], MAX_PLAYER_NAME, "-");
3426 format(vInfo[index][vehPlate], 16, "OMAR");
3427
3428 vInfo[index][vehModel] = vehid;
3429 vInfo[index][vehPrice] = price;
3430 vInfo[index][vehLock] = MODE_LOCK;
3431 vInfo[index][vehColorOne] = color1;
3432 vInfo[index][vehColorTwo] = color2;
3433
3434 new query[220];
3435 format(query, sizeof(query), "VehicleID: %d\nVehicle: %s\nPrice: $%s\nType /buyvehicle to buy!", index, vInfo[index][vehName], cNumber(vInfo[index][vehPrice]));
3436
3437 vInfo[index][vehLabel] = CreateDynamic3DTextLabel(query, 0xFFFF00FF, vInfo[index][vehX], vInfo[index][vehY], vInfo[index][vehZ], 10.0, INVALID_PLAYER_ID, vInfo[index][vehSessionID]);
3438
3439
3440 mysql_format(mysql, query, sizeof(query),
3441 "INSERT INTO `Vehicles` (vehModel, vehPrice, vehName, vehPlate, vehColorOne, vehColorTwo, vehX, vehY, vehZ, vehA) VALUES (%d, %d, '%e', '%e', %d, %d, %f, %f, %f, %f)",
3442 vInfo[index][vehModel], vInfo[index][vehPrice], vInfo[index][vehName], vInfo[index][vehPlate], vInfo[index][vehColorOne], vInfo[index][vehColorTwo], vInfo[index][vehX],
3443 vInfo[index][vehY], vInfo[index][vehZ], vInfo[index][vehA]);
3444 mysql_tquery(mysql, query, "OnDealerVehicleCreated", "i", index);
3445
3446 format(query, sizeof(query), "You have created a vehicle - ModelID: %d, VehicleID: %d, Price: %d", vInfo[index][vehModel], index, vInfo[index][vehPrice]);
3447 SCM(playerid, red, query);
3448 return 1;
3449}
3450CMD:vcreate(playerid, params[]) return cmd_createvehicle(playerid, params);
3451
3452CMD:gotovehicle(playerid, params[])
3453{
3454 if(!IsPlayerAdmin(playerid)) return SCM(playerid, red, "You must be administrator to use this command");
3455
3456 new id;
3457 if(sscanf(params, "i", id)) return SCM(playerid, red, "Teleport to vehicle: /gotovehicle <VehicleID>");
3458 if(!Iter_Contains(ServerVehicles, id)) return SendClientMessage(playerid, red, "Invalid vehicle ID");
3459
3460 GetVehiclePos(vInfo[id][vehSessionID], vInfo[id][vehX], vInfo[id][vehY], vInfo[id][vehZ]);
3461
3462 SetPlayerPos(playerid, vInfo[id][vehX], vInfo[id][vehY], vInfo[id][vehZ]+3);
3463 SetPlayerInterior(playerid, 0);
3464 SetPlayerVirtualWorld(playerid, 0);
3465 return 1;
3466}
3467
3468CMD:setvehicleprice(playerid, params[])
3469{
3470 if(!IsPlayerAdmin(playerid)) return SCM(playerid, red, "You must be administrator to use this command");
3471
3472 new id, price;
3473 if(sscanf(params, "ii", id, price)) return SCM(playerid, red, "Set vehicle price: /setvehicleprice <VehicleID> <Price>");
3474 if(!Iter_Contains(ServerVehicles, id)) return SendClientMessage(playerid, red, "Invalid vehicle ID");
3475
3476 new query[64];
3477 mysql_format(mysql, query, sizeof(query), "UPDATE `Vehicles` SET `vehPrice` = %i WHERE `vehID` = %d", price, vInfo[id][vehID]);
3478 mysql_tquery(mysql, query);
3479
3480 SCM(playerid, red, "Price updated");
3481 return 1;
3482}
3483CMD:setvprice(playerid, params[]) return cmd_setvehicleprice(playerid, params);
3484
3485CMD:deletevehicle(playerid, params[])
3486{
3487 if(!IsPlayerAdmin(playerid)) return SCM(playerid, red, "You must be administrator to use this command");
3488
3489 new id;
3490 if(sscanf(params, "i", id)) return SCM(playerid, red, "Delete vehicle: /deletevehicle <VehicleID>");
3491 if(!Iter_Contains(ServerVehicles, id)) return SendClientMessage(playerid, red, "Invalid vehicle ID");
3492
3493 ResetVehicle(id);
3494
3495 Iter_Remove(ServerVehicles, id);
3496
3497 new query[45];
3498 mysql_format(mysql, query, sizeof(query), "DELETE FROM `Vehicles` WHERE `vehID` = %d", vInfo[id][vehID]);
3499 mysql_tquery(mysql, query);
3500
3501 SCM(playerid, red, "Vehicle deleted");
3502 return 1;
3503}
3504CMD:vdel(playerid, params[]) return cmd_deletevehicle(playerid, params);
3505
3506
3507public LoadDealerVehicles() {
3508
3509 new rows = cache_num_rows();
3510 if(rows) {
3511
3512 new string[75];
3513 for(new i; i < rows; i++) {
3514
3515 new id = Iter_Free(ServerVehicles);
3516
3517 cache_get_value_name(i, "vehOwner", vInfo[id][vehOwner], .max_len = MAX_PLAYER_NAME);
3518 cache_get_value_name_int(i, "vehModel", vInfo[id][vehModel]);
3519 cache_get_value_name(i, "vehName", vInfo[id][vehName]);
3520 cache_get_value_name(i, "vehPlate", vInfo[id][vehPlate]);
3521 cache_get_value_name_int(i, "vehPrice", vInfo[id][vehPrice]);
3522 cache_get_value_name_int(i, "vehColorOne", vInfo[id][vehColorOne]);
3523 cache_get_value_name_int(i, "vehColorTwo", vInfo[id][vehColorTwo]);
3524 cache_get_value_name_float(i, "vehX", vInfo[id][vehX]);
3525 cache_get_value_name_float(i, "vehY", vInfo[id][vehY]);
3526 cache_get_value_name_float(i, "vehZ", vInfo[id][vehZ]);
3527 cache_get_value_name_float(i, "vehA", vInfo[id][vehA]);
3528
3529 vInfo[id][vehSessionID] = CreateVehicle(vInfo[id][vehModel], vInfo[id][vehX], vInfo[id][vehY], vInfo[id][vehZ], vInfo[id][vehA], vInfo[id][vehColorOne], vInfo[id][vehColorTwo], -1);
3530
3531 cache_get_value_name_int(i, "vehID", vInfo[id][vehID]);
3532
3533 SetVehicleToRespawn(vInfo[id][vehSessionID]);
3534 SetVehicleParamsEx(vInfo[id][vehSessionID], 0, 0, 0, 1, 0, 0, 0);
3535 SetVehicleNumberPlate(vInfo[id][vehSessionID], "OMAR");
3536
3537 format(string, sizeof(string), "VehicleID: %d\nVehicle: %s\nPrice: $%s\nType /buyvehicle to buy!", id, vInfo[id][vehName], cNumber(vInfo[id][vehPrice]));
3538
3539 vInfo[id][vehLabel] = CreateDynamic3DTextLabel(string, 0xFFFF00FF, vInfo[id][vehX], vInfo[id][vehY], vInfo[id][vehZ], 10.0, INVALID_PLAYER_ID, vInfo[id][vehSessionID]);
3540 Iter_Add(ServerVehicles, id);
3541 }
3542 printf("Loaded %d vehicles for dealership", rows);
3543 }
3544 return 1;
3545}
3546
3547SaveVehicle(vehicleid) {
3548
3549 if(!Iter_Contains(ServerVehicles, vehicleid)) return 0;
3550
3551 format(vInfo[vehicleid][vehName], 16, GetVehicleName(vInfo[vehicleid][vehModel]));
3552 GetVehiclePos(vInfo[vehicleid][vehSessionID], vInfo[vehicleid][vehX], vInfo[vehicleid][vehY], vInfo[vehicleid][vehZ]);
3553 GetVehicleZAngle(vInfo[vehicleid][vehSessionID], vInfo[vehicleid][vehA]);
3554
3555 new query[500];
3556 mysql_format(mysql, query, sizeof(query), "UPDATE `Vehicles` SET `vehName` = '%e', `vehOwner` = '%e', `vehLock` = %i, `vehModel` = %i,\
3557 `vehPlate` = '%e', `vehMod_1` = %i, `vehMod_2` = %i, `vehMod_3` = %i, `vehMod_4` = %i, `vehMod_5` = %i, `vehMod_6` = %i, `vehMod_7` = %i,\
3558 `vehMod_8` = %i, `vehMod_9` = %i, `vehMod_10` = %i, `vehMod_11` = %i, `vehMod_12` = %i, `vehMod_13` = %i, `vehMod_14` = %i, `vehColorOne` = %i,\
3559 `vehColorTwo` = %i, `vehX` = %f, `vehY` = %f, `vehZ` = %f, `vehA` = %f WHERE `vehID` = %d", vInfo[vehicleid][vehName], vInfo[vehicleid][vehOwner],
3560 vInfo[vehicleid][vehLock], vInfo[vehicleid][vehModel], vInfo[vehicleid][vehPlate], vInfo[vehicleid][vehMod][0], vInfo[vehicleid][vehMod][1], vInfo[vehicleid][vehMod][2],
3561 vInfo[vehicleid][vehMod][3], vInfo[vehicleid][vehMod][4], vInfo[vehicleid][vehMod][5], vInfo[vehicleid][vehMod][6], vInfo[vehicleid][vehMod][7], vInfo[vehicleid][vehMod][8],
3562 vInfo[vehicleid][vehMod][9], vInfo[vehicleid][vehMod][10], vInfo[vehicleid][vehMod][11], vInfo[vehicleid][vehMod][12], vInfo[vehicleid][vehMod][13], vInfo[vehicleid][vehColorOne],
3563 vInfo[vehicleid][vehColorTwo], vInfo[vehicleid][vehX], vInfo[vehicleid][vehY], vInfo[vehicleid][vehZ], vInfo[vehicleid][vehA], vInfo[vehicleid][vehID]);
3564 mysql_tquery(mysql, query);
3565 return 1;
3566}
3567
3568ResetVehicle(vehicleid)
3569{
3570 if(!Iter_Contains(ServerVehicles, vehicleid)) return 0;
3571
3572 foreach(new i : Player) {
3573
3574 if(!strcmp(vInfo[vehicleid][vehOwner], GetName(i))) {
3575
3576 Iter_Remove(PrivateVehicles[i], vehicleid);
3577 }
3578 }
3579
3580 format(vInfo[vehicleid][vehOwner], MAX_PLAYER_NAME, "-");
3581 format(vInfo[vehicleid][vehPlate], 16, "UG");
3582 vInfo[vehicleid][vehModel] = -1;
3583 vInfo[vehicleid][vehLock] = MODE_NOLOCK;
3584 vInfo[vehicleid][vehPrice] = 0;
3585 vInfo[vehicleid][vehColorOne] = -1;
3586 vInfo[vehicleid][vehColorTwo] = -1;
3587
3588 for(new i = 0; i < 14; i++) {
3589
3590 if(vInfo[vehicleid][vehMod][i] > 0) {
3591
3592 RemoveVehicleComponent(vInfo[vehicleid][vehSessionID], vInfo[vehicleid][vehMod][i]);
3593 vInfo[vehicleid][vehMod][i] = 0;
3594 }
3595 }
3596
3597 if(IsValidDynamic3DTextLabel(vInfo[vehicleid][vehLabel])) DestroyDynamic3DTextLabel(vInfo[vehicleid][vehLabel]);
3598 DestroyVehicle(vInfo[vehicleid][vehSessionID]);
3599 return 1;
3600}
3601
3602public LoadPlayerVehicles(playerid) {
3603
3604 new rows = cache_num_rows();
3605 if(rows) {
3606
3607 for(new i; i < rows; i++) {
3608
3609 new id = Iter_Free(ServerVehicles);
3610
3611 cache_get_value_name(i, "vehOwner", vInfo[id][vehOwner], .max_len = MAX_PLAYER_NAME);
3612 cache_get_value_name_int(i, "vehModel", vInfo[id][vehModel]);
3613 cache_get_value_name(i, "vehName", vInfo[id][vehName]);
3614 cache_get_value_name(i, "vehPlate", vInfo[id][vehPlate]);
3615 cache_get_value_name_int(i, "vehPrice", vInfo[id][vehPrice]);
3616 cache_get_value_name_int(i, "vehLock", vInfo[id][vehLock]);
3617 cache_get_value_name_int(i, "vehColorOne", vInfo[id][vehColorOne]);
3618 cache_get_value_name_int(i, "vehColorTwo", vInfo[id][vehColorTwo]);
3619 cache_get_value_name_int(i, "vehMod_1", vInfo[id][vehMod][0]);
3620 cache_get_value_name_int(i, "vehMod_2", vInfo[id][vehMod][1]);
3621 cache_get_value_name_int(i, "vehMod_3", vInfo[id][vehMod][2]);
3622 cache_get_value_name_int(i, "vehMod_4", vInfo[id][vehMod][3]);
3623 cache_get_value_name_int(i, "vehMod_5", vInfo[id][vehMod][4]);
3624 cache_get_value_name_int(i, "vehMod_6", vInfo[id][vehMod][5]);
3625 cache_get_value_name_int(i, "vehMod_7", vInfo[id][vehMod][6]);
3626 cache_get_value_name_int(i, "vehMod_8", vInfo[id][vehMod][7]);
3627 cache_get_value_name_int(i, "vehMod_9", vInfo[id][vehMod][8]);
3628 cache_get_value_name_int(i, "vehMod_10", vInfo[id][vehMod][9]);
3629 cache_get_value_name_int(i, "vehMod_11", vInfo[id][vehMod][10]);
3630 cache_get_value_name_int(i, "vehMod_12", vInfo[id][vehMod][11]);
3631 cache_get_value_name_int(i, "vehMod_13", vInfo[id][vehMod][12]);
3632 cache_get_value_name_int(i, "vehMod_14", vInfo[id][vehMod][13]);
3633 cache_get_value_name_float(i, "vehX", vInfo[id][vehX]);
3634 cache_get_value_name_float(i, "vehY", vInfo[id][vehY]);
3635 cache_get_value_name_float(i, "vehZ", vInfo[id][vehZ]);
3636 cache_get_value_name_float(i, "vehA", vInfo[id][vehA]);
3637
3638 vInfo[id][vehSessionID] = CreateVehicle(vInfo[id][vehModel], vInfo[id][vehX], vInfo[id][vehY], vInfo[id][vehZ], vInfo[id][vehA], vInfo[id][vehColorOne], vInfo[id][vehColorTwo], -1);
3639
3640 cache_get_value_name_int(i, "vehID", vInfo[id][vehID]);
3641
3642 format(vInfo[id][vehName], MAX_PLAYER_NAME, GetVehicleName(vInfo[id][vehModel]));
3643 format(vInfo[id][vehPlate], 16, vInfo[id][vehPlate]);
3644 format(vInfo[id][vehOwner], MAX_PLAYER_NAME, GetName(playerid));
3645
3646 SetVehicleToRespawn(vInfo[id][vehSessionID]);
3647 SetVehicleParamsEx(vInfo[id][vehSessionID], 0, 0, 0, vInfo[id][vehLock], 0, 0, 0);
3648 SetVehicleNumberPlate(vInfo[id][vehSessionID], vInfo[id][vehPlate]);
3649 for(new x = 0; x < 14; x++) if(vInfo[id][vehMod][x] > 0) AddVehicleComponent(vInfo[id][vehSessionID], vInfo[id][vehMod][x]);
3650
3651 Iter_Add(PrivateVehicles[playerid], id);
3652 Iter_Add(ServerVehicles, id);
3653 }
3654 printf("Loaded %d vehicles for %s", rows, GetName(playerid));
3655 }
3656 return 1;
3657}
3658
3659public OnPlayerSelectedMenuRow(playerid, row)
3660{
3661 return 1;
3662}
3663
3664public OnPlayerExitedMenu(playerid)
3665{
3666 return 1;
3667}
3668
3669public OnPlayerInteriorChange(playerid, newinteriorid, oldinteriorid)
3670{
3671 return 1;
3672}
3673
3674public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
3675{
3676 return 1;
3677}
3678
3679public OnRconLoginAttempt(ip[], password[], success)
3680{
3681 return 1;
3682}
3683
3684public OnPlayerUpdate(playerid)
3685{
3686 return 1;
3687}
3688
3689public OnPlayerStreamIn(playerid, forplayerid)
3690{
3691 return 1;
3692}
3693
3694public OnPlayerStreamOut(playerid, forplayerid)
3695{
3696 return 1;
3697}
3698
3699public OnVehicleStreamIn(vehicleid, forplayerid)
3700{
3701 return 1;
3702}
3703
3704public OnVehicleStreamOut(vehicleid, forplayerid)
3705{
3706 return 1;
3707}
3708
3709public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
3710{
3711 switch (dialogid)
3712 {
3713 case DIALOG_LOGIN:
3714 {
3715 if(!response) return Kick(playerid);
3716
3717 new Salted_Key[65];
3718 SHA256_PassHash(inputtext, pInfo[playerid][Salt], Salted_Key, 65);
3719
3720 if(strcmp(Salted_Key, pInfo[playerid][Password]) == 0)
3721 {
3722 // Now, password should be correct as well as the strings
3723 // Matched with each other, so nothing is wrong until now.
3724
3725 // We will activate the cache of player to make use of it e.g.
3726 // Retrieve their data.
3727
3728 cache_set_active(pInfo[playerid][Player_Cache]);
3729
3730 // Okay, we are retrieving the information now..
3731 cache_get_value_int(0, "ID", pInfo[playerid][ID]);
3732
3733 cache_get_value_int(0, "KILLS", pInfo[playerid][Kills]);
3734 cache_get_value_int(0, "DEATHS", pInfo[playerid][Deaths]);
3735
3736 cache_get_value_int(0, "SCORE", pInfo[playerid][Score]);
3737 cache_get_value_int(0, "CASH", pInfo[playerid][Cash]);
3738
3739 SetPlayerScore(playerid, pInfo[playerid][Score]);
3740
3741 ResetPlayerMoney(playerid);
3742 GivePlayerMoney(playerid, pInfo[playerid][Cash]);
3743
3744 // So, we have successfully retrieved data? Now deactivating the cache.
3745
3746 cache_delete(pInfo[playerid][Player_Cache]);
3747 pInfo[playerid][Player_Cache] = MYSQL_INVALID_CACHE;
3748
3749 pInfo[playerid][LoggedIn] = true;
3750 SendClientMessage(playerid, 0x00FF00FF, "Logged in to the account.");
3751 }
3752 else
3753 {
3754 new String[150];
3755
3756 pInfo[playerid][PasswordFails] += 1;
3757 printf("%s has been failed to login. (%d)", pInfo[playerid][Name], pInfo[playerid][PasswordFails]);
3758 // Printing the message that someone has failed to login to his account.
3759
3760 if (pInfo[playerid][PasswordFails] >= 3) // If the fails exceeded the limit we kick the player.
3761 {
3762 format(String, sizeof(String), "%s has been kicked Reason: {FF0000}(%d/3) Login fails.", pInfo[playerid][Name], pInfo[playerid][PasswordFails]);
3763 SendClientMessageToAll(0x969696FF, String);
3764 Kick(playerid);
3765 }
3766 else
3767 {
3768 // If the player didn't exceed the limits we send him a message that the password is wrong.
3769 format(String, sizeof(String), "Wrong password, you have %d out of 3 tries.", pInfo[playerid][PasswordFails]);
3770 SendClientMessage(playerid, 0xFF0000FF, String);
3771
3772 format(String, sizeof(String), "{FFFFFF}Welcome back, %s.\n\n{0099FF}This account is already registered.\n\
3773 {0099FF}Please, input your password below to proceed to the game.\n\n", pInfo[playerid][Name]);
3774 ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_PASSWORD, "Login System", String, "Login", "Leave");
3775 }
3776 }
3777 }
3778 case DIALOG_REGISTER:
3779 {
3780 if(!response) return Kick(playerid);
3781
3782 if(strlen(inputtext) <= 5 || strlen(inputtext) > 60)
3783 {
3784 // If the password length is less than or equal to 5 and more than 60
3785 // It repeats the process and shows error message as seen below.
3786
3787 SendClientMessage(playerid, 0x969696FF, "Invalid password length, should be 5 - 60.");
3788
3789 new String[150];
3790
3791 format(String, sizeof(String), "{FFFFFF}Welcome %s.\n\n{0099FF}This account is not registered.\n\
3792 {0099FF}Please, input your password below to proceed.\n\n", pInfo[playerid][Name]);
3793 ShowPlayerDialog(playerid, DIALOG_REGISTER, DIALOG_STYLE_PASSWORD, "Registration System", String, "Register", "Leave");
3794 }
3795 else
3796 {
3797
3798 // Salting the player's password using SHA256 for a better security.
3799
3800 for (new i = 0; i < 10; i++)
3801 {
3802 pInfo[playerid][Salt][i] = random(79) + 47;
3803 }
3804
3805 pInfo[playerid][Salt][10] = 0;
3806 SHA256_PassHash(inputtext, pInfo[playerid][Salt], pInfo[playerid][Password], 65);
3807
3808 new DB_Query[225];
3809
3810 // Storing player's information if everything goes right.
3811 mysql_format(Database, DB_Query, sizeof(DB_Query), "INSERT INTO `PLAYERS` (`USERNAME`, `PASSWORD`, `SALT`, `SCORE`, `KILLS`, `CASH`, `DEATHS`)\
3812 VALUES ('%e', '%s', '%e', '20', '0', '0', '0')", pInfo[playerid][Name], pInfo[playerid][Password], pInfo[playerid][Salt]);
3813 mysql_tquery(Database, DB_Query, "OnPlayerRegister", "d", playerid);
3814 }
3815 }
3816 }
3817 switch(dialogid) {
3818
3819 case DIALOG_BUY_VEHICLE: {
3820
3821 if(response) {
3822
3823 new i = GetPVarInt(playerid, "buyVehicle");
3824 if(GetPlayerMoney(playerid) < vInfo[i][vehPrice]) return SCM(playerid, red, "You don't have enough money");
3825 if(strcmp(vInfo[i][vehOwner], "-")) return SCM(playerid, red, "Vehicle is already owned by a player");
3826
3827 DestroyDynamic3DTextLabel(vInfo[i][vehLabel]);
3828 SetVehicleToRespawn(vInfo[i][vehSessionID]);
3829
3830 GivePlayerMoney(playerid, -vInfo[i][vehPrice]);
3831 GetPlayerName(playerid, vInfo[i][vehOwner], MAX_PLAYER_NAME);
3832
3833 SetVehicleParamsForPlayer(vInfo[i][vehSessionID], playerid, 0, 0);
3834 vInfo[i][vehLock] = MODE_NOLOCK;
3835
3836 format(vInfo[i][vehOwner], MAX_PLAYER_NAME, GetName(playerid));
3837
3838 Iter_Add(PrivateVehicles[playerid], i);
3839 SaveVehicle(i);
3840 return 1;
3841 }
3842 }
3843 case DIALOG_VEHICLES: {
3844
3845 if(response) {
3846
3847 new count = 0;
3848 foreach(new i : PrivateVehicles[playerid]) {
3849
3850 if(!strcmp(vInfo[i][vehOwner], GetName(playerid))) {
3851
3852 if(count == listitem) {
3853
3854 SetPVarInt(playerid, "playerVehID", i);
3855 ShowPlayerDialog(playerid, DIALOG_VEHICLES+1, DIALOG_STYLE_LIST, "Vehicles", "Spawn Car\nChange Number Plate\nLock\nUnlock\nEmpty", "Select", "Close");
3856 break;
3857 }
3858 else count++;
3859 }
3860 }
3861 }
3862 }
3863 case DIALOG_VEHICLES+1: {
3864
3865 if(response) {
3866
3867 switch(listitem){
3868
3869 case 0: {
3870
3871 new i = GetPVarInt(playerid, "playerVehID");
3872
3873 GetPlayerPos(playerid, vInfo[i][vehX], vInfo[i][vehY], vInfo[i][vehZ]);
3874 GetPlayerFacingAngle(playerid, vInfo[i][vehA]);
3875
3876 createVehicle(i, vInfo[i][vehX]+3, vInfo[i][vehY], vInfo[i][vehZ], vInfo[i][vehA], true);
3877 SaveVehicle(i);
3878 }
3879 case 1: ShowPlayerDialog(playerid, DIALOG_VEHICLES+2, DIALOG_STYLE_INPUT, "Vehicle Plate", "{FFFFFF}Enter the new vehicle number plate below", "Next", "Close");
3880 case 2: {
3881
3882 new i = GetPVarInt(playerid, "playerVehID");
3883
3884 foreach(new x : Player) if(x != playerid) SetVehicleParamsForPlayer(vInfo[i][vehSessionID], x, 0, 1);
3885
3886 vInfo[i][vehLock] = MODE_LOCK;
3887 SaveVehicle(i);
3888 SCM(playerid, green, "You have locked your vehicle");
3889 }
3890 case 3: {
3891
3892 new i = GetPVarInt(playerid, "playerVehID");
3893
3894 foreach(new x : Player) if(x != playerid) SetVehicleParamsForPlayer(vInfo[i][vehSessionID], x, 0, 0);
3895 vInfo[i][vehLock] = MODE_NOLOCK;
3896 SaveVehicle(i);
3897 SCM(playerid, green, "You have unlocked your vehicle");
3898 }
3899 case 4: {
3900
3901 new i = GetPVarInt(playerid, "playerVehID");
3902
3903 foreach(new x : Player) {
3904
3905 if(IsPlayerInVehicle(x, vInfo[i][vehSessionID])) {
3906
3907 RemovePlayerFromVehicle(x);
3908 }
3909 }
3910 SCM(playerid, green, "You have ejected all the players from your vehicle");
3911 }
3912 }
3913 }
3914 }
3915 case DIALOG_VEHICLES+2: {
3916
3917 if(response) {
3918
3919 new i = GetPVarInt(playerid, "playerVehID");
3920
3921 SetVehicleNumberPlate(vInfo[i][vehSessionID], inputtext);
3922 format(vInfo[i][vehPlate], 16, inputtext);
3923
3924 SetVehicleToRespawn(vInfo[i][vehSessionID]);
3925
3926 if(IsPlayerInVehicle(playerid, vInfo[i][vehSessionID])) {
3927
3928 new Float:playerX, Float:playerY, Float:playerZ;
3929 GetPlayerPos(playerid, playerX, playerY, playerZ);
3930
3931 SetVehiclePos(vInfo[i][vehSessionID], playerX, playerY, playerZ);
3932 PutPlayerInVehicle(playerid, vInfo[i][vehSessionID], 0);
3933 }
3934
3935 SaveVehicle(i);
3936 }
3937 }
3938 }
3939 return 1;
3940}
3941
3942public OnPlayerClickPlayer(playerid, clickedplayerid, source)
3943{
3944 return 1;
3945}
3946
3947forward public OnPlayerDataCheck(playerid, corrupt_check);
3948public OnPlayerDataCheck(playerid, corrupt_check)
3949{
3950 if (corrupt_check != Corrupt_Check[playerid]) return Kick(playerid);
3951
3952 new String[150];
3953
3954 if(cache_num_rows() > 0)
3955 {
3956
3957 cache_get_value(0, "PASSWORD", pInfo[playerid][Password], 65);
3958 cache_get_value(0, "SALT", pInfo[playerid][Salt], 11);
3959
3960 pInfo[playerid][Player_Cache] = cache_save();
3961 // ^ Storing the cache ID of the player for further use later.
3962
3963 format(String, sizeof(String), "{FFFFFF}Welcome back, %s.\n\n{0099FF}This account is already registered.\n\
3964 {0099FF}Please, input your password below to proceed to the game.\n\n", pInfo[playerid][Name]);
3965 ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_PASSWORD, "Login System", String, "Login", "Leave");
3966 }
3967 else
3968 {
3969 format(String, sizeof(String), "{FFFFFF}Welcome %s.\n\n{0099FF}This account is not registered.\n\
3970 {0099FF}Please, input your password below to proceed to the game.\n\n", pInfo[playerid][Name]);
3971 ShowPlayerDialog(playerid, DIALOG_REGISTER, DIALOG_STYLE_PASSWORD, "Registration System", String, "Register", "Leave");
3972 }
3973 return 1;
3974}
3975
3976forward public OnPlayerRegister(playerid);
3977public OnPlayerRegister(playerid)
3978{
3979 // This gets called only when the player registers a new account.
3980 SendClientMessage(playerid, 0x00FF00FF, "You are now registered and has been logged in.");
3981 pInfo[playerid][LoggedIn] = true;
3982 return 1;
3983}
3984
3985forward OnDealerVehicleCreated(vehicleid);
3986public OnDealerVehicleCreated(vehicleid) {
3987
3988 vInfo[vehicleid][vehID] = cache_insert_id();
3989 Iter_Add(ServerVehicles, vehicleid);
3990 return 1;
3991}
3992
3993createVehicle(vehicleid, Float:itsX, Float:itsY, Float:itsZ, Float:itsA, bool:removeold = false) {
3994
3995 if(removeold == true) {
3996
3997 DestroyVehicle(vInfo[vehicleid][vehSessionID]);
3998 }
3999
4000 vInfo[vehicleid][vehSessionID] = CreateVehicle(vInfo[vehicleid][vehModel], itsX, itsY, itsZ, itsA, vInfo[vehicleid][vehColorOne], vInfo[vehicleid][vehColorTwo], -1);
4001 format(vInfo[vehicleid][vehName], MAX_PLAYER_NAME, GetVehicleName(vInfo[vehicleid][vehModel]));
4002 SetVehicleParamsEx(vInfo[vehicleid][vehSessionID], 0, 0, 0, 1, 0, 0, 0);
4003 SetVehicleNumberPlate(vInfo[vehicleid][vehSessionID], vInfo[vehicleid][vehPlate]);
4004 for(new x = 0; x < 14; x++) if(vInfo[vehicleid][vehMod][x] > 0) AddVehicleComponent(vInfo[vehicleid][vehSessionID], vInfo[vehicleid][vehMod][x]);
4005 ChangeVehicleColor(vInfo[vehicleid][vehSessionID], vInfo[vehicleid][vehColorOne], vInfo[vehicleid][vehColorTwo]);
4006 SetVehicleToRespawn(vInfo[vehicleid][vehSessionID]);
4007 return 1;
4008}
4009
4010GetVehicleName(modelid) {
4011
4012 new string[20];
4013 format(string,sizeof(string),"%s",VehicleNames[modelid - 400]);
4014 return string;
4015}
4016
4017GetName(playerid) {
4018
4019 new pName[MAX_PLAYER_NAME+1];
4020 GetPlayerName(playerid, pName, MAX_PLAYER_NAME);
4021 return pName;
4022}
4023
4024cNumber(integer, const separator[] = ",") {
4025
4026 new string[16];
4027 format(string, sizeof(string), "%i", integer);
4028
4029 if(integer >= 1000) {
4030
4031 for(new i = (strlen(string) - 3); i > 0; i -= 3) {
4032
4033 strins(string, separator, i);
4034 }
4035 }
4036 return string;
4037}
4038
4039IsNumeric(string[]) {
4040
4041 for (new i = 0, j = strlen(string); i < j; i++) {
4042
4043 if (string[i] > '9' || string[i] < '0') return 0;
4044 }
4045 return 1;
4046}
4047
4048ReturnVehicleModelID(Name[]) {
4049
4050 for(new i; i != 211; i++) if(strfind(VehicleNames[i], Name, true) != -1) return i + 400;
4051 return INVALID_VEHICLE_ID;
4052}