Advertisement
Guest User

World Stunting

a guest
Jan 23rd, 2011
802
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 398.02 KB | None | 0 0
  1. /*
  2. This Game Mode Scripted By Sufyan
  3. Thanks To SA-MP Community
  4. Thanks To RockStar Games
  5. Thanks To Y_Less For Dynamic Object
  6. Thanks TO Zeex For Zcmd
  7. Thanks To Y_Less for sscanf
  8. ==================================
  9. Scripter
  10. =================================
  11. Sufyan Created This Game Mode
  12.  
  13. ----------------------------------------------------------------
  14. Beta Tester of This Game Mode
  15. ----------------------------------------------------------------
  16.                     Sunmil
  17.                     Singam
  18.                     Harini_Asin
  19.                     Deepak
  20.                     Willian
  21.     And Thanks To Other One Testing This Game Mode
  22.  
  23. */
  24. #include <a_samp>
  25. #include <core>
  26. #include <float>
  27. #include <time>
  28. #include <zcmd>
  29. #include <dini>
  30. #include <sscanf>
  31. #include <dudb>
  32. #include <streamer>
  33. #include <a_players>
  34. //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  35. #pragma tabsize 0
  36. #pragma unused strtok
  37. #pragma unused ret_memcpy
  38. //
  39.  
  40. //------------------------------------------------------------------------------
  41. #define TEAM_COPS 0
  42. #define TEAM_ARMY 1
  43. #define TEAM_RICH 2
  44. #define TEAM_WORKERS 3
  45. #define TEAM_FARMERS 4
  46. #define TEAM_MEDICS 5
  47. #define TEAM_FIREMEN 6
  48. #define TEAM_TRAIDS 7
  49. #define TEAM_STUNT 8
  50. #define COLOR_BRIGHTRED 0xFF000AAA
  51. #define COLOR_AQUA 0x00FFFFAA
  52. #define COLOR_GREY 0xAFAFAFAA
  53. #define COLOR_BEIGE 0xFFF8DCAA
  54. #define COLOR_BLACK 0x000000AA
  55. #define COLOR_BLUE 0x0000FFAA
  56. #define COLOR_BLUELIGHTER 0x00BFFFAA
  57. #define COLOR_BLUELIGHT 0x1E90FFAA
  58. #define COLOR_BLUEMEDIUM 0x0000CDAA
  59. #define COLOR_BLUEDARK 0x00008BAA
  60. #define COLOR_PINK 0xFF1493AA
  61. #define COLOR_PINKDARK 0xFF00FFAA
  62. #define COLOR_GREEN 0x008000AA
  63. #define COLOR_GREENLIGHT 0x00FF00AA
  64. #define COLOR_GREENDARK 0x006400AA
  65. #define COLOR_MAROON 0x800000AA
  66. #define COLOR_OKER 0x808000AA
  67. #define COLOR_ORANGE 0xFF4500AA
  68. #define COLOR_ORANGELIGHT 0xFF8C00AA
  69. #define COLOR_PURPLE 0x800080AA
  70. #define COLOR_VIOLETDARK 0x9400D3AA
  71. #define COLOR_INDIGO 0xAB0082AA
  72. #define COLOR_RED 0xFF0000AA
  73. #define COLOR_SAND 0xFFDEADAA
  74. #define COLOR_SILVER 0xC0C0C0AA
  75. #define COLOR_TEAL 0x008080AA
  76. #define COLOR_WHITE 0xFFFFFFAA
  77. #define COLOR_YELLOW 0xFFFF00AA
  78. #define COLOR_GOLD 0xFFD700AA
  79. #define COLOR_BROWN 0x8B4513AA
  80. #define COLOR_BROWNLIGHT 0xA0522DAA
  81. #define COLOR_GRAY 0xA9A9A9AA
  82. #define COLOR_GRAYDARK 0x696969AA
  83. #define COLOUR_YELLOW   0xFFFF00FF
  84. #define COLOUR_RED      0xFF3E3EFF
  85. // Rainbow Script Colors
  86.  
  87. #define COLOR_GREY              0xAFAFAFAA
  88. #define COLOR_YELLOW            0xFFFF00AA
  89. #define COLOR_WHITE             0xFFFFFFAA
  90. #define BLUE                    0x0000FFAA
  91. #define PINK                    0xFF66FFAA
  92. #define BLACK                   0x000000AA
  93. #define AQUA                    0x7CFC00AA
  94. #define YELLOW                  0xFFFF00AA
  95. #define WHITE                   0xFFFFFFAA
  96. #define COLOR_LIGHTBLUE         0x33CCFFAA
  97. #define WHITEP                  0xFFFFD5AA
  98. #define GREY                    0xAFAFAFAA
  99. #define CYAN                    0x99FFFFAA
  100. #define PURPLE                  0x9900FFAA
  101. #define ADMIN_RED               0xFB0000FF
  102. #define RED                     0xE60000FF
  103. #define ADMIN_RED               0xFB0000FF
  104. #define LIGHTRED                0xFF8080FF
  105. #define PLAYER_COLOR            0xFFFFFFFF
  106. #define LIGHTGREEN              0x38FF06FF
  107. #define DARKPINK                0xE100E1FF
  108. #define DARKGREEN               0x008040FF
  109. #define ANNOUNCEMENT            0x00CACAFB
  110. #define AFK                     0x6AF7E1FF
  111. #define COLOR_SYSTEM            0xEFEFF7AA
  112. #define PLAYER_VIEW             0xC0C0C0FF
  113. #define COLOR_GRAD1             0xB4B5B7FF
  114. #define NICESKY                 0x99FFFFAA
  115. #define GRAY                    0xCECECEFF
  116. //////////////////////////////////////////
  117.  
  118. #define green 0x008000AA
  119. #define Version 1.2
  120.  
  121. #define PocketMoney 7000 // Amount player recieves on spawn.
  122. #define INACTIVE_PLAYER_ID 255
  123. #define GIVECASH_DELAY 5000 // Time in ms between /givecash commands.
  124. #define NUMVALUES 4
  125. #define PRESSED(%0) \
  126.     (((newkeys & (%0)) == (%0)) && ((oldkeys & (%0)) != (%0)))
  127. #define DRIFT_MINKAT 10.0
  128. #define DRIFT_MAXKAT 90.0
  129. #define DRIFT_SPEED 30.0
  130. #define COLOR_Label 0xFFFFFFFF
  131. #define COLOR_LabelOut 0x00000040
  132. #define COLOR_ValueOut 0xFFFFFF40
  133. #define COLOR_Value 0x000000FF
  134. #define USE_DIALOGS         true
  135. #define Label_X 500
  136. #define Value_X 500
  137. #define TD_Y 100
  138. //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  139. #define GREY 0xAFAFAFAA
  140. #define GREEN 0x33AA33AA
  141. #define YELLOW 0xFFFF00AA
  142. #define WHITE 0xFFFFFFAA
  143. #define LIGHTBLUE 0x33CCFFAA
  144. #define ORANGE 0xFF9900AA
  145. #define red 0xE21F1FFF
  146. #define yellow 0xFFFF00FF
  147. #define blue 0x1229FAFF
  148. #define orange 0xF97804FF
  149. #define grey 0xCECECEFF
  150. #define mustlogin
  151. #define autologin
  152. #define logchat
  153. #define logadmin
  154. #define joinmes
  155. #define leavemes
  156. #define l_red 0xFF0000AA
  157. #define l_green 0x33FF33AA
  158. #define COLOUR_YELLOW   0xFFFF00FF
  159. #define COLOUR_RED      0xFF3E3EFF
  160.  
  161. new lift1;
  162. new lift2;
  163. new lift3;
  164.  
  165. //------------------------------------------------------------------------------
  166.  
  167. enum PlayerInfo
  168. {
  169.     AFKstatus,
  170.     Kills,
  171.     Deaths
  172. }
  173. //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  174. new PlayerData[MAX_PLAYERS][PlayerInfo];
  175. //------------------------------------------------------------------------------
  176. forward Givecashdelaytimer(playerid);
  177. forward SetupPlayerForClassSelection(playerid);
  178. forward GameModeExitFunc();
  179. forward SendPlayerFormattedText(playerid, const str[], define);
  180. forward public SendAllFormattedText(playerid, const str[], define);
  181. forward SetPlayerToTeamColor(playerid);
  182. forward SendTeamMessage(team, color, string[]);
  183. forward MessageToGroove(playerid, const string[]);
  184. forward SendMSG();
  185. forward Drift();
  186. forward AngleUpdate();
  187. forward DriftExit(playerid);
  188. forward CheckPlayerState();
  189. forward AutoFix();
  190. forward CountDownTimer(playerid);
  191. forward MessageToAdmins(color, const string[]);
  192. forward CountDownTimer(playerid);
  193. forward Rainbow();
  194. //------------------------------------------------------------------------------
  195.  
  196. new level[MAX_PLAYERS];
  197. new logged[MAX_PLAYERS];
  198. new muted[MAX_PLAYERS];
  199. new kills[MAX_PLAYERS];
  200. new deaths[MAX_PLAYERS];
  201.  
  202. //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  203.  
  204. new DriftTimer[MAX_PLAYERS];
  205. new TimerA,TimerB,TimerC;
  206. new DriftPointsNow[MAX_PLAYERS];
  207. new PlayerDriftCancellation[MAX_PLAYERS];
  208. new Float:ppos[MAX_PLAYERS][3];
  209. enum Float:Pos{ Float:sX,Float:sY,Float:sZ };
  210. new Float:SavedPos[MAX_PLAYERS][Pos];
  211. new bool:DriftMode[MAX_PLAYERS]=false;
  212. new DriftBonus[MAX_PLAYERS]=1;
  213. new Float:HealthInit[MAX_PLAYERS]=1000.0;
  214. new bool:AutoFixBool[MAX_PLAYERS]=true;
  215. new Text:TDLabels[3];
  216. new Text:TDValueDrift[MAX_PLAYERS];
  217. new Text:TDValueBonus[MAX_PLAYERS];
  218. new Text:TDValueCash[MAX_PLAYERS];
  219. new Votes = 0;
  220. new Voted[MAX_PLAYERS];
  221. new VoteActive;
  222. new thingy;
  223. new VPlayers;
  224. new KickName[24];
  225. new PlayerName[24];
  226. new IDofotherplayer;
  227. new Count;
  228. new Timer;
  229. new Text:TCountDown;
  230. new Text:VoteKick;
  231. new gPlayerClass[MAX_PLAYERS];
  232. new gTeam[MAX_PLAYERS];
  233. new gActivePlayers[MAX_PLAYERS];
  234. new gLastGaveCash[MAX_PLAYERS];
  235. new Text:TextdrawName;//Name
  236. new Text:TextdrawTime;//Time
  237. new Text:Textdraw0;
  238. new Text:Textdraw1;
  239. new Text:Textdraw2;
  240. new bool: ReceiveInfo[MAX_PLAYERS];
  241. new bool: InCar[MAX_PLAYERS];
  242. new Name[MAX_PLAYERS];
  243. new PVeh[MAX_PLAYERS];//NRG
  244. new Float:X,Float:Y,Float:Z;
  245. new Text:Date;
  246. new On[MAX_VEHICLES];
  247.  
  248. new RandomMSG[][] =
  249. {
  250.     "System : {FFFFFF} /cmds To See The List Of Available Commands",
  251.     "System : {00FFFF} /rules To See The Rules",
  252.     "System : {FF9933} /shop For Buying Weapons & Sports Cars",
  253.     "System : {FF99CC} /credits To See Credits",
  254.     "System : {330066} /teles To See Teleports Of Server",
  255.     "System : {6633CC} Buy Vip's Feature at GTA-Inferno.TK",
  256.     "System : {33FF00} Admin Applies Are Currently Opened",
  257.     "System : {660000} World Stunting v1.2",
  258.     "System : {9999FF} Need a Vehicle EX: type /nrg USE: /car <vehname> <color1> <color2>",
  259.     "System : {00FFFF} /admins To See Online Admins",
  260.     "System : {666600} /report To Report Hackers [Don't Chat]",
  261.     "System : {66FF00} No Admins , Report Hackers In Forum",
  262.     "System : {FF3300} Suggest Commands In Forum",
  263.     "System : {33FFCC} Enjoy Skydiving in Only 1000$$ use /skydive ",
  264.     "System : {333333} Our Website is www.gta-inferno.tk For More Information /site"
  265. };
  266.     new Float:gcopsSP[ 4 ][ 4 ] = {
  267.     {-1594.2036, 716.0620,  -4.9063, 273.1099},
  268.     {-1601.3488, 732.6129,  -4.9063, 270.5193},
  269.     {-1565.4688, 756.1705,  -4.9063, 135.1815},
  270.     {-1616.6149, 757.9897,  -4.9063, 232.0023}
  271.     };
  272.  
  273.     new Float:garmySP[ 5 ][ 4 ] = {
  274.     {-1320.7700, 485.9830, 11.1875,  270.9012},
  275.     {-1343.5037, 439.8155, 7.1875,   177.5036},
  276.     {-1349.2628, 454.0258, 7.1875,   269.2878},
  277.     {-1223.9421, 466.2971, 7.1875,    87.5761},
  278.     {-1336.2811, 506.1561, 11.1953,  175.6003}
  279.     };
  280.  
  281.     new Float:grichSP[ 5 ][ 4 ] = {
  282.     {-2662.1272, 876.3647,  79.7738, 358.0241},
  283.     {-2674.4983, 855.9325,  76.2734, 179.7438},
  284.     {-2643.1992, 867.8671,  76.2734,  40.6225},
  285.     {-2661.2012, 886.7200,  76.2734,  88.5630},
  286.     {-2663.2822, 905.8585,  79.6494, 183.5039}
  287.     };
  288.  
  289.     new Float:gworkersSP[ 3 ][ 4 ] = {
  290.     {-2111.2927, 158.3477, 35.0792, 357.9431},
  291.     {-2083.7773, 250.4871,  36.0166, 92.4683},
  292.     {-2089.6646, 166.0994,  35.0547, 88.3949}
  293.     };
  294.  
  295.     new Float:gfarmersSP[ 5 ][ 4 ] = {
  296.     {-688.1036, 943.9858,  13.6328,  359.4665},
  297.     {-706.4260, 941.5879,  12.4349,  358.5142},
  298.     {-695.2668, 971.3777,  12.2779,  90.2984},
  299.     {-694.6823, 960.9451,  12.2548,  84.0317},
  300.     {-669.0806, 944.6993,  12.1328,  1.6008}
  301.     };
  302.  
  303.     new Float:gmedicsSP[ 3 ][ 4 ] = {
  304.     {-2675.1758, 632.7332, 14.4531, 169.8774},
  305.     {-2708.3462, 591.6735, 14.4531, 294.8752},
  306.     {-2621.5002, 607.8930, 14.4531,  89.0366}
  307.     };
  308.  
  309.     new Float:gfiremenSP[ 3 ][ 4 ] = {
  310.     {-2026.9349, 67.0510,  28.6916, 263.2600},
  311.     {-2025.0702, 79.8378,  28.2268, 266.8751},
  312.     {-2025.1985, 88.4072,  28.2534, 270.3218}
  313.     };
  314.  
  315.     new Float:gtraidsSP[ 3 ][ 4 ] = {
  316.     {-2187.9766, 642.0545, 49.4375,  89.5823},
  317.     {-2201.1045, 614.2569, 35.1641, 182.2515},
  318.     {-2175.0996, 634.8960, 49.4375,  57.4501}
  319.     };
  320.  
  321.  
  322. //------------------------------------------------------------------------------
  323. main()
  324. {
  325.         print("\n----------------------------------");
  326.         print("  World Stunting V1.2\n Loading....\n.....\n Loaded \n Loaded Successfully   ");
  327.         print("----------------------------------\n");
  328. }
  329.  
  330. //------------------------------------------------------------------------------
  331.  
  332.  
  333. //------------------------------------------------------------------------------
  334.  
  335. public OnPlayerPickUpPickup(playerid, pickupid)
  336. {
  337.     return 1;
  338. }
  339.  
  340.  
  341. //------------------------------------------------------------------------------
  342.  
  343. public OnPlayerConnect(playerid)
  344. {
  345.  
  346.     Voted[playerid] = 0;
  347.     PlayerData[playerid][AFKstatus] = 0;
  348.     gActivePlayers[playerid]++;
  349.     gLastGaveCash[playerid] = GetTickCount();
  350.     new pname[MAX_PLAYER_NAME];
  351.     #if defined joinmes
  352.     new string[180],str[128];
  353.     GetPlayerName(playerid, pname, sizeof(pname));
  354.     format(string, sizeof(string), "***{66CC66}%s{00FFFF}(%d){6633CC} has {FFFFFF}joined the Server",pname,playerid);
  355.     SendClientMessageToAll(green, string);
  356.     format(str, sizeof(str), "Welcome{FF00CC} %s {339900}In Our Server ,{3300CC} Enjoy You'r Stay !", pname);
  357.     SendClientMessage(playerid,COLOR_ORANGE, str);
  358.     GameTextForPlayer(playerid,"~w~World ~b~Stunting",0,3000);
  359.  
  360.     ShowPlayerDialog(playerid, 1, DIALOG_STYLE_MSGBOX, "{6633CC}Server Rules", "{66CC66}NO HACKS!\nRespect Players And Staff\nIgnorance Towards The Staff Will Result In A Ban\nDo Not Ask Staff To Do Things For You!\nConsider Yourself Warned!", "I Agree", "I Disagree");
  361.     #endif
  362. //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  363.     SetTimer("settime",1000,true);
  364.  
  365.     Date = TextDrawCreate(547.000000,11.000000,"--");
  366.  
  367.     TextDrawFont(Date,3);
  368.     TextDrawLetterSize(Date,0.399999,1.600000);
  369.     TextDrawColor(Date,0xffffffff);
  370.  
  371. //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  372.     Textdraw2 = TextDrawCreate(500.000000,15.000000,"Scripted_By_Sufyan");
  373.     TextDrawTextSize(Textdraw2,-1.000000,150.000000);
  374.     TextDrawAlignment(Textdraw2,0);
  375.     TextDrawBackgroundColor(Textdraw2,0x0000ff33);
  376.     TextDrawFont(Textdraw2,3);
  377.     TextDrawLetterSize(Textdraw2,0.399999,0.800000);
  378.     TextDrawColor(Textdraw2,0xFFFF00AA);
  379.     TextDrawSetOutline(Textdraw2,1);
  380.     TextDrawSetProportional(Textdraw2,1);
  381.     TextDrawShowForPlayer(playerid, Text:Textdraw2);
  382. //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  383.     Textdraw1 = TextDrawCreate(200.000000,420.000000,"www.sa-mp.com");
  384.     TextDrawTextSize(Textdraw1,-1.000000,150.000000);
  385.     TextDrawAlignment(Textdraw1,0);
  386.     TextDrawBackgroundColor(Textdraw1,0x0000ff33);
  387.     TextDrawFont(Textdraw1,3);
  388.     TextDrawLetterSize(Textdraw1,0.899999,2.699999);
  389.     TextDrawColor(Textdraw1,0x1229FAFF);
  390.     TextDrawSetOutline(Textdraw1,1);
  391.     TextDrawSetProportional(Textdraw1,1);
  392.     TextDrawShowForPlayer(playerid, Text:Textdraw1);
  393. //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  394.     Textdraw0 = TextDrawCreate(3.000000,344.000000,"w o r l d  s t u n t i n g  v1.2");
  395.     TextDrawUseBox(Textdraw0,1);
  396.     TextDrawBoxColor(Textdraw0,0x000000ff);
  397.     TextDrawTextSize(Textdraw0,-1.000000,146.000000);
  398.     TextDrawAlignment(Textdraw0,0);
  399.     TextDrawBackgroundColor(Textdraw0,0x0000ff33);
  400.     TextDrawFont(Textdraw0,3);
  401.     TextDrawLetterSize(Textdraw0,0.299999,0.700000);
  402.     TextDrawColor(Textdraw0,0xffffffff);
  403.     TextDrawSetOutline(Textdraw0,1);
  404.     TextDrawSetProportional(Textdraw0,1);
  405.     TextDrawShowForPlayer(playerid, Text:Textdraw0);
  406. //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  407.     new playerfile[100];
  408.  
  409.     if(dini_Int(playerfile, "Banned") == 1)
  410.     {
  411.     new string1[126];
  412.     format(string1, sizeof(string1), "%s has been kicked for ban evade .", pname);
  413.     SendClientMessageToAll(red, string1);
  414.     }
  415.     return 1;
  416. }
  417. //------------------------------------------------------------------------------
  418.  
  419. public SendMSG()
  420. {
  421.     SendClientMessageToAll(COLOR_YELLOW, RandomMSG[random(sizeof(RandomMSG))]);
  422.     return 1;
  423. }
  424.  
  425. //-----------------------Repaired & Fixed-----------------------------------------------
  426.  
  427. public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
  428. {
  429.     if(newkeys == KEY_SUBMISSION)
  430.     {
  431.         if(IsPlayerInAnyVehicle(playerid))
  432.         {
  433.            {
  434.                 SetVehicleHealth(GetPlayerVehicleID(playerid),1000.0);
  435.                 RepairVehicle(GetPlayerVehicleID(playerid));
  436.                 SendClientMessage(playerid,COLOR_BLUE,"Your vehicle has been Fixed & Repair");
  437.                 PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
  438.                 }
  439.             }
  440.         }
  441. //++++++++++++++++++++++++++ Nitrox +++++++++++++++++++++++++++++++++++++++++++++
  442.     if (PRESSED(KEY_FIRE))
  443.     {
  444.         new
  445.             vehicleid = GetPlayerVehicleID(playerid);
  446.         if (vehicleid)
  447.         {
  448.             AddVehicleComponent(vehicleid, 1010);
  449.         }
  450.     }
  451.  
  452.     return 1;
  453. }
  454.  
  455. //------------------------------------------------------------------------------
  456. public OnPlayerDisconnect(playerid, reason)
  457. {
  458.     PlayerData[playerid][AFKstatus] = 0;
  459.     TextDrawHideForPlayer(playerid, Date);
  460.  
  461.     kills[playerid] = 0;
  462.     deaths[playerid] = 0;
  463.     level[playerid] = 0;
  464.     logged[playerid] = 0;
  465.     muted[playerid] = 0;
  466.     #if defined leavemes
  467.     new string[180], pname[MAX_PLAYER_NAME];
  468.     GetPlayerName(playerid, pname, sizeof(pname));
  469.     format(string, sizeof(string), "***{66CC66}%s{00FFFF}(%d){6633CC} has {FFFFFF}left the Server.",pname,playerid);
  470.     SendClientMessageToAll(green, string);
  471.     #endif
  472.     return 1;
  473. }
  474. //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  475. stock ReColour(text[])
  476. {
  477.     new
  478.         pos = 0
  479.     ;
  480.     while ((pos = strfind(text, "#", false, pos)) != -1)
  481.     {
  482.         new
  483.             c = pos + 1,
  484.             n = 0,
  485.             ch
  486.         ;
  487.  
  488.         while ((ch = text[c]) && n != 6)
  489.         {
  490.             if (!('a' <= ch <= 'f' || 'A' <= ch <= 'F' || '0' <= ch <= '9'))
  491.             {
  492.                 return ;
  493.             }
  494.             ++c;
  495.             ++n;
  496.         }
  497.         if(n < 6) return ;
  498.         if (n == 6)
  499.         {
  500.             text[pos] = '{';
  501.             text[c - 1] = '}';
  502.         }
  503.     }
  504. }
  505. //------------------------------------------------------------------------------
  506. public MessageToAdmins(color, const string[])
  507. {
  508.     for(new i; i < MAX_PLAYERS; i++)
  509.     {
  510.         if(level[i] >= 1)
  511.         {
  512.         SendClientMessage(i, yellow, string);
  513.         }
  514.     }
  515.     return 1;
  516. }
  517.  
  518. //------------------------------------------------------------------------------
  519. public OnPlayerText(playerid, text[])
  520. {
  521.     {
  522.         SetPlayerChatBubble(playerid, text, 0x99FF00AA, 100.0, 10000);
  523.     }
  524.     if (PlayerData[playerid][AFKstatus] == 1)
  525.     {
  526.         SendClientMessage(playerid, COLOUR_RED, "You need to be /back to use the chatbox.");
  527.         return 0;
  528.     }
  529.  
  530.     else if (PlayerData[playerid][AFKstatus] == 0)
  531.     {
  532.         return 1;
  533.     }
  534. {
  535.     // Recolour the text
  536.     ReColour(text);
  537.     return 1;
  538. }
  539. }
  540.  
  541. public OnPlayerSpawn(playerid)
  542. {
  543.     new pname[MAX_PLAYER_NAME];
  544.     new str3[128];
  545.     new rand = random( 5 );
  546.     SetPlayerInterior(playerid,0);
  547.     TogglePlayerClock(playerid,1);
  548.     TextDrawShowForPlayer(playerid, Date);
  549.     format(str3, sizeof(str3), "~r~Welcome~n~~w~%s", pname);
  550.     GameTextForPlayer(playerid,str3,0,3000);
  551.     switch(gTeam[playerid])
  552.     {
  553.        case TEAM_COPS: {
  554.          SetPlayerPos(playerid,gcopsSP[rand][0],gcopsSP[rand][1],gcopsSP[rand][2]);
  555.          SetPlayerFacingAngle(playerid,gcopsSP[rand][3]);
  556.        }
  557.        case TEAM_ARMY: {
  558.          SetPlayerPos(playerid,garmySP[rand][0],garmySP[rand][1],garmySP[rand][2]);
  559.          SetPlayerFacingAngle(playerid,garmySP[rand][3]);
  560.        }
  561.        case TEAM_RICH: {
  562.          SetPlayerPos(playerid,grichSP[rand][0],grichSP[rand][1],grichSP[rand][2]);
  563.          SetPlayerFacingAngle(playerid,grichSP[rand][3]);
  564.        }
  565.        case TEAM_WORKERS: {
  566.          SetPlayerPos(playerid,gworkersSP[rand][0],gworkersSP[rand][1],gworkersSP[rand][2]);
  567.          SetPlayerFacingAngle(playerid,gworkersSP[rand][3]);
  568.        }
  569.        case TEAM_FARMERS: {
  570.          SetPlayerPos(playerid,gfarmersSP[rand][0],gfarmersSP[rand][1],gfarmersSP[rand][2]);
  571.          SetPlayerFacingAngle(playerid,gfarmersSP[rand][3]);
  572.        }
  573.        case TEAM_MEDICS: {
  574.          SetPlayerPos(playerid,gmedicsSP[rand][0],gmedicsSP[rand][1],gmedicsSP[rand][2]);
  575.          SetPlayerFacingAngle(playerid,gmedicsSP[rand][3]);
  576.        }
  577.        case TEAM_FIREMEN: {
  578.          SetPlayerPos(playerid,gfiremenSP[rand][0],gfiremenSP[rand][1],gfiremenSP[rand][2]);
  579.          SetPlayerFacingAngle(playerid,gfiremenSP[rand][3]);
  580.        }
  581.        case TEAM_TRAIDS: {
  582.          SetPlayerPos(playerid,gtraidsSP[rand][0],gtraidsSP[rand][1],gtraidsSP[rand][2]);
  583.          SetPlayerFacingAngle(playerid,gtraidsSP[rand][3]);
  584.        }
  585.     }
  586.     if (Name[playerid] == 1)
  587.     {
  588.         TextDrawShowForPlayer(playerid, TextdrawName);//Name
  589.  }
  590.    
  591.  
  592.     return 1;
  593. }
  594. //----------------------Scores--------------------------------------------------
  595.  
  596. public OnPlayerDeath(playerid, killerid, reason)
  597. {
  598.  
  599.     GameTextForPlayer(playerid,"~w~wasted",2000,2);
  600.     if(killerid == INVALID_PLAYER_ID) {
  601.         SendDeathMessage(INVALID_PLAYER_ID,playerid,reason);
  602.     } else {
  603.             SendDeathMessage(killerid,playerid,reason);
  604.             SetPlayerScore(killerid,GetPlayerScore(killerid)+1);
  605.             GivePlayerMoney(killerid,2000);
  606.         }
  607.  
  608.     return 1;
  609.    
  610. }
  611.  
  612.  
  613. //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  614. COMMAND:rcmds(playerid, params[])
  615. {
  616. SendClientMessage(playerid,red,"================================================");
  617. SendClientMessage(playerid,red,"Rcon Commands");
  618. SendClientMessage(playerid,red,"================================================");
  619. SendClientMessage(playerid,red," /gotocar , /spec , /specoff , /slap , /drop , /get");
  620. SendClientMessage(playerid,red," /gmx , ");
  621. return 1;
  622. }
  623. COMMAND:gotocar(playerid, params[])
  624. {
  625.     if(IsPlayerAdmin(playerid))
  626.     {
  627.         if(!strlen(params))
  628.         {
  629.             SendClientMessage(playerid,COLOR_YELLOW,"USAGE: /gotocar [vehicleid]");
  630.             return 1;
  631.         }
  632.         new player, string[128];
  633.         player = strval(params);
  634.  
  635.         new Float:x, Float:y, Float:z;  GetVehiclePos(player,x,y,z);
  636.         SetPlayerVirtualWorld(playerid,GetVehicleVirtualWorld(player));
  637.         if(GetPlayerState(playerid) == 2)
  638.         {
  639.             SetVehiclePos(GetPlayerVehicleID(playerid),x+2,y,z);
  640.             SetVehicleVirtualWorld(GetPlayerVehicleID(playerid), GetVehicleVirtualWorld(player) );
  641.         }
  642.         else
  643.         {
  644.             SetPlayerPos(playerid,x+1,y,z);
  645.         }
  646.         format(string,sizeof(string),"You have teleported to vehicle id %d", player);
  647.         SendClientMessage(playerid,COLOR_BLUE,string);
  648.         return 1;
  649.     }
  650.     else
  651.     {
  652.         SendClientMessage(playerid,COLOR_RED,"   You are not authorized to use that command!");
  653.         return 1;
  654.     }
  655. }
  656.  
  657.  
  658.  
  659. COMMAND:spec(playerid,params[])
  660. {
  661.     new pid;
  662.     if(sscanf(params, "u", pid)) return SendClientMessage(playerid, 0xFF0000AA, "Command Usage: /spec [playerid]");
  663.     if(IsPlayerConnected(pid))
  664.     {
  665.         if(IsPlayerAdmin(playerid))
  666.         {
  667.             if(IsPlayerInAnyVehicle(pid)){
  668.                 PlayerSpectatePlayer(playerid, 1);
  669.                 PlayerSpectateVehicle(playerid,GetPlayerVehicleID(pid), SPECTATE_MODE_NORMAL);
  670.             } else {
  671.                 TogglePlayerSpectating(playerid, 1);
  672.                 PlayerSpectatePlayer(playerid, pid, SPECTATE_MODE_NORMAL);
  673.             }
  674.             SendClientMessage(playerid, orange, "You are now spectating, To stop spectating type /specoff");
  675.         } else SendClientMessage(playerid, red, "Error: You must be a higher level administrator to use that command.");
  676.     } else SendClientMessage(playerid, red, "Error: That player is not connected.");
  677.     return 1;
  678. }
  679. COMMAND:slap(playerid,params[])
  680. {
  681.     new pid;
  682.     if(sscanf(params, "u", pid)) return SendClientMessage(playerid, 0xFF0000AA, "Command Usage: /slap [playerid]");
  683.     if(IsPlayerAdmin(playerid))
  684.     {
  685.         if(IsPlayerConnected(pid))
  686.         {
  687.             new Float:H;
  688.             GetPlayerPos(pid,X, Y, Z);
  689.             SetPlayerPos(pid,X, Y, Z + 10);
  690.             GetPlayerHealth(pid, H);
  691.             SetPlayerHealth(pid, H - 10);
  692.             new adminname[MAX_PLAYER_NAME], paramname[MAX_PLAYER_NAME], string[180];
  693.             GetPlayerName(pid, paramname, sizeof(paramname));
  694.             GetPlayerName(playerid, adminname, sizeof(adminname));
  695.             format(string, sizeof(string), "Admin %s has slapped %s .", adminname, paramname);
  696.             SendClientMessageToAll(red, string);
  697.         } else SendClientMessage(playerid, red, "Invalid Player ID !");
  698.     }
  699.     return 1;
  700. }
  701. COMMAND:drop(playerid,params[])
  702. {
  703.     new pid;
  704.     if(sscanf(params, "u", pid)) return SendClientMessage(playerid, 0xFF0000AA, "Command Usage: /Drop [playerid]");
  705.     if(IsPlayerAdmin(playerid))
  706.     {
  707.         if(IsPlayerConnected(pid))
  708.         {
  709.             new Float:H;
  710.             GetPlayerPos(pid,X, Y, Z);
  711.             SetPlayerPos(pid,X, Y, Z + 60);
  712.             GetPlayerHealth(pid, H);
  713.             SetPlayerHealth(pid, H - 0);
  714.             new adminname[MAX_PLAYER_NAME], paramname[MAX_PLAYER_NAME], string[180];
  715.             GetPlayerName(pid, paramname, sizeof(paramname));
  716.             GetPlayerName(playerid, adminname, sizeof(adminname));
  717.             format(string, sizeof(string), "Admin %s has dropped %s.", adminname, paramname);
  718.             SendClientMessageToAll(red, string);
  719.         } else SendClientMessage(playerid, red, "That player is not online.");
  720.     }
  721.     return 1;
  722.     }
  723. COMMAND:kill(playerid, params[])
  724. {
  725.     SetPlayerHealth(playerid, 0.0);
  726.     return 1;
  727. }
  728. COMMAND:get(playerid,params[])
  729. {
  730.     new pid;
  731.     if(sscanf(params, "u", pid)) return SendClientMessage(playerid, 0xFF0000AA, "Command Usage: /Get [playerid]");
  732.     if(IsPlayerAdmin(playerid))
  733.     {
  734.         if(IsPlayerConnected(pid))
  735.         {
  736.  
  737.             GetPlayerPos(playerid,X, Y, Z);
  738.             SetPlayerPos(pid,X, Y, Z);
  739.             new adminname[MAX_PLAYER_NAME], string[180];
  740.             GetPlayerName(playerid, adminname, sizeof(adminname));
  741.             format(string, sizeof(string), "Admin %s has teleported you.", adminname);
  742.             SendClientMessage(pid, yellow, string);
  743.         } else SendClientMessage(playerid, red, "That player is not online.");
  744.     } else SendClientMessage(playerid, red, "Error: You must be a higher level administrator to use that command.");
  745.     return 1;
  746. }
  747. COMMAND:specoff(playerid,params[])
  748. {
  749.     #pragma unused params
  750.     TogglePlayerSpectating(playerid, 0);
  751.     return 1;
  752. }
  753. // Eiffel Tower Lift
  754. COMMAND:lift1up(playerid, params[])
  755.     {
  756.         MoveObject(lift1,948.794312, 2439.689941, 42.391544,10.0);
  757.         return 1;
  758.     }
  759. COMMAND:lift1down(playerid, params[])
  760.     {
  761.         MoveObject(lift1,948.788574, 2439.683350, 9.874555,5.0);
  762.         return 1;
  763.     }
  764. COMMAND:lift2up(playerid, params[])
  765.     {
  766.         MoveObject(lift2,957.270447, 2432.764160, 81.292969,10.0);
  767.         return 1;
  768.     }
  769. COMMAND:lift2down(playerid, params[])
  770.     {
  771.         MoveObject(lift2,957.282593, 2432.806641, 42.432281,5.0);
  772.         return 1;
  773.     }
  774. COMMAND:lift3up(playerid, params[])
  775.     {
  776.         MoveObject(lift3,956.364319, 2442.081299, 198.766342,10.0);
  777.         return 1;
  778.     }
  779. COMMAND:lift3down(playerid, params[])
  780.     {
  781.         MoveObject(lift3,957.160950, 2442.099365, 81.161102,5.0);
  782.         return 1;
  783.     }
  784. ////====================Here Eiffel Over============================================
  785. COMMAND:cmds(playerid, params[]) {
  786.         SendClientMessage(playerid,0xFFFF00AA,"+++++++++++++++++++++++++++++++++++++");
  787.         SendClientMessage(playerid,0xFF0000AA,"   Commands");
  788.         SendClientMessage(playerid,0xFFFF00AA,"+++++++++++++++++++++++++++++++++++++");
  789.         SendClientMessage(playerid, 0xAA3333AA, " /votekick , /vote , /teles , /para , /shop");
  790.         SendClientMessage(playerid, 0xAA3333AA, " /cc , /site , /credits , /afk , /brb , /back , /me");
  791.         SendClientMessage(playerid, 0xAA3333AA, " /nrg , /mod , /help , /rules");
  792.         SendClientMessage(playerid, 0xFFFF00AA, "++++++++++++++++++++++++++++++++++++");
  793.      return 1;
  794.     }
  795. COMMAND:teles(playerid, params[]) {
  796.         SendClientMessage(playerid,0xFFFF00AA,"+++++++++++++++++++++++++++++++++++++");
  797.         SendClientMessage(playerid,0xFF0000AA,"   Teleports ");
  798.         SendClientMessage(playerid,0xFFFF00AA,"+++++++++++++++++++++++++++++++++++++");
  799.         SendClientMessage(playerid, 0xAA3333AA, "/sfa , /city , /mc , /aba ");
  800.         SendClientMessage(playerid, 0xAA3333AA, "/upsidedown ,/waytodeath , /apark , /monstercrash , /drag ");
  801.         SendClientMessage(playerid, 0xAA3333AA, "/minigun , /minigun2 , /dm , /glassdm , /shipwar, /exitmg ");
  802.         SendClientMessage(playerid,0xAA3333AA," /drift1 - 6, /stunt , /skydive , /vstunt , /jump1 , /hugejump");
  803.         SendClientMessage(playerid,0xAA3333AA," /lstower , /drag , /annoying , /poolparty , /buildingjump");
  804.         SendClientMessage(playerid,0xAA3333AA," /eiffel , /ultrastunt , /rollercoaster , /lsa");
  805.         SendClientMessage(playerid,0xFFFF00AA,"+++++++++++++++++++++++++++++++++++++");
  806.     return 1;
  807.     }
  808. // Dont Delete Credits .... Please Dont Delete ...
  809. COMMAND:credits(playerid, params[]) {
  810.         SendClientMessage(playerid,0xFFFF00AA,"+++++++++++++++++++++++++++++++++++++");
  811.         SendClientMessage(playerid,0xFF0000AA,"   Credits ");
  812.         SendClientMessage(playerid,0xFFFF00AA,"+++++++++++++++++++++++++++++++++++++");
  813.         SendClientMessage(playerid, red, "Credits To Sufyan Creating This Game Mode");
  814.         SendClientMessage(playerid, yellow, "Credits To Singam Creating Forum");
  815.         SendClientMessage(playerid, COLOR_BLUE, "Credits To Sunmil Testing This Game Mode");
  816.         SendClientMessage(playerid,0xFFFF00AA,"+++++++++++++++++++++++++++++++++++++");
  817.      return 1;
  818.     }
  819. COMMAND:help(playerid, params[]) {
  820.         SendClientMessage(playerid,0xFFFF00AA,"+++++++++++++++++++++++++++++++++++++");
  821.         SendClientMessage(playerid,0xFF0000AA,"   Help ");
  822.         SendClientMessage(playerid,0xFFFF00AA,"+++++++++++++++++++++++++++++++++++++");
  823.         SendClientMessage(playerid, red, "This Game mode is Stunting that means you get points & money in Stunts");
  824.         SendClientMessage(playerid, red, "For More Information visit our /site");
  825.         SendClientMessage(playerid, red, "Any Need help tell to Online Admins");
  826.         SendClientMessage(playerid,0xFFFF00AA,"+++++++++++++++++++++++++++++++++++++");
  827.      return 1;
  828.     }
  829.     COMMAND:rules(playerid, params[])
  830.     {
  831.  
  832.             {
  833.             SendClientMessage(playerid,0xFFFF00AA,"+++++++++++++++++++++++++++++++++++++");
  834.             SendClientMessage(playerid,red,"Player Rules : ");
  835.             SendClientMessage(playerid,0xFFFF00AA,"+++++++++++++++++++++++++++++++++++++");
  836.             SendClientMessage(playerid,red," Don't Hack , You Will Be Punished by Admin");
  837.             SendClientMessage(playerid,blue," Don't Flood , Racist or Spam ");
  838.             SendClientMessage(playerid,green," False Report or Without Reason , You Will Be Muted + Warned ");
  839.             SendClientMessage(playerid,0xFFFF00AA,"+++++++++++++++++++++++++++++++++++++");
  840.             return 1;
  841.             }
  842.     }
  843. /*COMMAND:shop(playerid, params[]) {
  844.         ShowPlayerDialog(playerid, 1, DIALOG_STYLE_MSGBOX, "{6633CC}SHOP", "{66CC66}/m4 /deagle\n /combat \n/heal /armour\n", "OK", "OK");
  845.         SendClientMessage(playerid,0xFFFF00AA,"+++++++++++++++++++++++++++++++++++++");
  846.         SendClientMessage(playerid,0xFF0000AA,"  Shop ");
  847.         SendClientMessage(playerid,0xFFFF00AA,"+++++++++++++++++++++++++++++++++++++");
  848.         SendClientMessage(playerid, 0xAA3333AA, " /m4 , /deagle , /combat , /heal /armour");
  849.      return 1;
  850.     }*/
  851. COMMAND:getmoney(playerid, params[])
  852. {
  853.  GivePlayerMoney(playerid,2000);
  854.  return 1;
  855. }
  856. //===================================================================================================================
  857. //         Commands
  858. //===================================================================================================================
  859. COMMAND:gmx(playerid,params[]) {
  860.     if(IsPlayerAdmin(playerid))
  861.     {
  862.     SendRconCommand("gmx");
  863.     GameTextForAll("~w~ Server Restarting ~n~ ~y~ please wait..",3500,1);
  864.     }
  865.     return 1;
  866.     }
  867. //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  868. COMMAND:drift2(playerid, params[])
  869. {
  870.     SetPlayerInterior(playerid,0);
  871.     if (GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
  872.     {
  873.         LinkVehicleToInterior(GetPlayerVehicleID(playerid),0);
  874.         SetVehiclePos(GetPlayerVehicleID(playerid),1995.8274,2243.7427,25.6410);
  875.         SetVehicleZAngle(GetPlayerVehicleID(playerid),221.976);
  876.     }
  877.     else
  878.     {
  879.         SetPlayerPos(playerid,1995.8274,2243.7427,25.6410);
  880.         SetPlayerFacingAngle(playerid,221.976);
  881.     }
  882.     SendClientMessage(playerid,COLOR_BLUE,"You have been Teleported to Drift.");
  883.     new string3[70];
  884.     new name[MAX_PLAYER_NAME];
  885.     GetPlayerName(playerid, name, sizeof(name));
  886.     format(string3, sizeof(string3), "%s(%d) has gone to Drift. (/drift2)", name,playerid);
  887.     SendClientMessageToAll(yellow, string3);
  888.     return 1;
  889. }
  890. // // //
  891. COMMAND:drift3(playerid, params[])
  892. {
  893.     SetPlayerInterior(playerid,0);
  894.     if (GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
  895.     {
  896.         LinkVehicleToInterior(GetPlayerVehicleID(playerid),0);
  897.         SetVehiclePos(GetPlayerVehicleID(playerid),-2408.3521,-599.5757,132.6484);
  898.         SetVehicleZAngle(GetPlayerVehicleID(playerid),221.976);
  899.     }
  900.     else
  901.     {
  902.         SetPlayerPos(playerid,-2408.3521,-599.5757,132.6484);
  903.         SetPlayerFacingAngle(playerid,221.976);
  904.     }
  905.     SendClientMessage(playerid,COLOR_BLUE,"You have been Teleported to Drift.");
  906.     new string3[70];
  907.     new name[MAX_PLAYER_NAME];
  908.     GetPlayerName(playerid, name, sizeof(name));
  909.     format(string3, sizeof(string3), "%s(%d) has gone to Drift. (/drift3)", name,playerid);
  910.     SendClientMessageToAll(yellow, string3);
  911.     return 1;
  912. }
  913. // // //
  914. COMMAND:drift4(playerid, params[])
  915. {
  916.     SetPlayerInterior(playerid,0);
  917.     if (GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
  918.     {
  919.         LinkVehicleToInterior(GetPlayerVehicleID(playerid),0);
  920.         SetVehiclePos(GetPlayerVehicleID(playerid),2235.1140,1963.4467,31.7797);
  921.         SetVehicleZAngle(GetPlayerVehicleID(playerid),221.976);
  922.     }
  923.     else
  924.     {
  925.         SetPlayerPos(playerid,2235.1140,1963.4467,31.7797);
  926.         SetPlayerFacingAngle(playerid,221.976);
  927.     }
  928.     SendClientMessage(playerid,COLOR_BLUE,"You have been Teleported to Drift.");
  929.     new string3[70];
  930.     new name[MAX_PLAYER_NAME];
  931.     GetPlayerName(playerid, name, sizeof(name));
  932.     format(string3, sizeof(string3), "%s(%d) has gone to Drift. (/drift4)", name,playerid);
  933.     SendClientMessageToAll(yellow, string3);
  934.     return 1;
  935. }
  936. COMMAND:drift5(playerid, params[])
  937. {
  938.     SetPlayerInterior(playerid,0);
  939.     if (GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
  940.     {
  941.         LinkVehicleToInterior(GetPlayerVehicleID(playerid),0);
  942.         SetVehiclePos(GetPlayerVehicleID(playerid),2090.1851,2430.9177,51.2371);
  943.         SetVehicleZAngle(GetPlayerVehicleID(playerid),221.976);
  944.     }
  945.     else
  946.     {
  947.         SetPlayerPos(playerid,2090.1851,2430.9177,51.2371);
  948.         SetPlayerFacingAngle(playerid,221.976);
  949.     }
  950.     SendClientMessage(playerid,COLOR_BLUE,"You have been Teleported to Drift.");
  951.     new string3[70];
  952.     new name[MAX_PLAYER_NAME];
  953.     GetPlayerName(playerid, name, sizeof(name));
  954.     format(string3, sizeof(string3), "%s(%d) has gone to Drift. (/drift5)", name,playerid);
  955.     SendClientMessageToAll(yellow, string3);
  956.     return 1;
  957. }
  958. COMMAND:drift6(playerid, params[])
  959. {
  960.     SetPlayerInterior(playerid,0);
  961.     if (GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
  962.     {
  963.         LinkVehicleToInterior(GetPlayerVehicleID(playerid),0);
  964.         SetVehiclePos(GetPlayerVehicleID(playerid),2276.4070,1387.4423,42.8203);
  965.         SetVehicleZAngle(GetPlayerVehicleID(playerid),221.976);
  966.     }
  967.     else
  968.     {
  969.         SetPlayerPos(playerid,2276.4070,1387.4423,42.8203);
  970.         SetPlayerFacingAngle(playerid,221.976);
  971.     }
  972.     SendClientMessage(playerid,COLOR_BLUE,"You have been Teleported to Drift.");
  973.     new string3[70];
  974.     new name[MAX_PLAYER_NAME];
  975.     GetPlayerName(playerid, name, sizeof(name));
  976.     format(string3, sizeof(string3), "%s(%d) has gone to Drift. (/drift6)", name,playerid);
  977.     SendClientMessageToAll(yellow, string3);
  978.     return 1;
  979. }
  980. COMMAND:stunt(playerid, params[])
  981. {
  982.     SetPlayerInterior(playerid,0);
  983.     if (GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
  984.     {
  985.         LinkVehicleToInterior(GetPlayerVehicleID(playerid),0);
  986.         SetVehiclePos(GetPlayerVehicleID(playerid),-188.7413,3.7169,3.1094);
  987.         SetVehicleZAngle(GetPlayerVehicleID(playerid),221.976);
  988.     }
  989.     else
  990.     {
  991.         SetPlayerPos(playerid,-188.7413,3.7169,3.1094);
  992.         SetPlayerFacingAngle(playerid,221.976);
  993.     }
  994.     SendClientMessage(playerid,COLOR_BLUE,"You have been Teleported to Stunt Arena.");
  995.     new string3[70];
  996.     new name[MAX_PLAYER_NAME];
  997.     GetPlayerName(playerid, name, sizeof(name));
  998.     format(string3, sizeof(string3), "%s(%d) has gone to Stunting. (/stunt)", name,playerid);
  999.     SendClientMessageToAll(yellow, string3);
  1000.     return 1;
  1001. }
  1002. COMMAND:jump1(playerid, params[])
  1003. {
  1004.     SetPlayerInterior(playerid,0);
  1005.     if (GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
  1006.     {
  1007.         LinkVehicleToInterior(GetPlayerVehicleID(playerid),0);
  1008.         SetVehiclePos(GetPlayerVehicleID(playerid),-2836.2173,1368.1786,102.8800);
  1009.         SetVehicleZAngle(GetPlayerVehicleID(playerid),221.976);
  1010.     }
  1011.     else
  1012.     {
  1013.         SetPlayerPos(playerid,-2836.2173,1368.1786,102.8800);
  1014.         SetPlayerFacingAngle(playerid,221.976);
  1015.     }
  1016.     SendClientMessage(playerid,COLOR_BLUE,"You have been Teleported to Jump.");
  1017.     new string3[70];
  1018.     new name[MAX_PLAYER_NAME];
  1019.     GetPlayerName(playerid, name, sizeof(name));
  1020.     format(string3, sizeof(string3), "%s(%d) has gone to Jump. (/jump1)", name,playerid);
  1021.     SendClientMessageToAll(yellow, string3);
  1022.     return 1;
  1023. }
  1024. COMMAND:poolparty(playerid, params[])
  1025. {
  1026.     SetPlayerInterior(playerid,0);
  1027.     if (GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
  1028.     {
  1029.         LinkVehicleToInterior(GetPlayerVehicleID(playerid),0);
  1030.         SetVehiclePos(GetPlayerVehicleID(playerid),238.1064,-1202.2336,76.1403);
  1031.         SetVehicleZAngle(GetPlayerVehicleID(playerid),221.976);
  1032.     }
  1033.     else
  1034.     {
  1035.         SetPlayerPos(playerid,238.1064,-1202.2336,76.1403);
  1036.         SetPlayerFacingAngle(playerid,221.976);
  1037.     }
  1038.     SendClientMessage(playerid,COLOR_BLUE,"You have been Teleported to Pool Party.");
  1039.     new string3[70];
  1040.     new name[MAX_PLAYER_NAME];
  1041.     GetPlayerName(playerid, name, sizeof(name));
  1042.     format(string3, sizeof(string3), "%s(%d) has gone to Pool Party. (/poolparty)", name,playerid);
  1043.     SendClientMessageToAll(yellow, string3);
  1044.     return 1;
  1045. }
  1046. // ++++++++++++
  1047. COMMAND:site(playerid, params[])
  1048. {   SendClientMessage(playerid,0xFFFF00AA,"Our Website is www.gta-inferno.tk please visit it");
  1049.     GameTextForPlayer(playerid,"~n~~n~~n~~n~~n~~n~~n~~w~www.gta-inferno.tk",3000,5);
  1050.     return 1;
  1051. }
  1052. //++++++++++++++++++++++++++++++++++++
  1053. /*COMMAND:deagle(playerid, params[])
  1054. if (GetPlayerMoney(playerid) >= 500)
  1055.     {
  1056.         GivePlayerWeapon(playerid,24,99);
  1057.         GivePlayerMoney(playerid,-500);
  1058.         SendClientMessage(playerid,green,"Thank You For Bought a Weapon");
  1059.         return 1;
  1060.     }else
  1061.     {
  1062.         SendClientMessage(playerid,0xFF0000AA,"You Dont Have Enough Money");
  1063.         return 1;
  1064.     }
  1065. COMMAND:m4(playerid, params[])
  1066.     if (GetPlayerMoney(playerid) >= 700)
  1067.     {
  1068.         GivePlayerWeapon(playerid,31,99);
  1069.         GivePlayerMoney(playerid,-700);
  1070.         SendClientMessage(playerid,green,"Thank You For Bought a Weapon");
  1071.         return 1;
  1072.     }else
  1073.     {
  1074.         SendClientMessage(playerid,0xFF0000AA,"You Dont Have Enough Money");
  1075.         return 1;
  1076.     }
  1077. COMMAND:combat(playerid, params[])
  1078.     if (GetPlayerMoney(playerid) >= 1000)
  1079.     {
  1080.         GivePlayerWeapon(playerid,27,99);
  1081.         GivePlayerMoney(playerid,-1000);
  1082.         SendClientMessage(playerid,green,"Thank You For Bought a Weapon");
  1083.         return 1;
  1084.     }else
  1085.     {
  1086.         SendClientMessage(playerid,0xFF0000AA,"You Dont Have Enough Money");
  1087.         return 1;
  1088.     }
  1089. COMMAND:heal(playerid, params[])
  1090.     if (GetPlayerMoney(playerid) >= 100)
  1091.     {
  1092.         SetPlayerHealth(playerid,100);
  1093.         GivePlayerMoney(playerid,-100);
  1094.         SendClientMessage(playerid,green,"You Have Been Healed in 100$$");
  1095.         return 1;
  1096.     }else
  1097.     {
  1098.         SendClientMessage(playerid,0xFF0000AA,"You Dont Have Enough Money");
  1099.         return 1;
  1100.     }
  1101. COMMAND:armour(playerid, params[])
  1102.     if (GetPlayerMoney(playerid) >= 200)
  1103.     {
  1104.         SetPlayerArmour(playerid,100);
  1105.         GivePlayerMoney(playerid,-200);
  1106.         SendClientMessage(playerid,green,"You Have Been Given Armour in 200$$");
  1107.         return 1;
  1108.     }else
  1109.     {
  1110.         SendClientMessage(playerid,0xFF0000AA,"You Dont Have Enough Money");
  1111.         return 1;
  1112.     }*/
  1113. COMMAND:para(playerid, params[])
  1114.     if (GetPlayerMoney(playerid) >= 150)
  1115.     {
  1116.         GivePlayerWeapon(playerid,46,1);
  1117.         GivePlayerMoney(playerid,-150);
  1118.         SendClientMessage(playerid,green,"You Have Been Given Parachute !");
  1119.         return 1;
  1120.     }else
  1121.     {
  1122.         SendClientMessage(playerid,0xFF0000AA,"You Dont Have Enough Money");
  1123.         return 1;
  1124.     }
  1125. //=============================================================================================
  1126. COMMAND:skydive(playerid, params[])
  1127. {
  1128.     {
  1129.     if (GetPlayerMoney(playerid) >= 1000)
  1130.     {
  1131.     new string3[70];
  1132.     new name[MAX_PLAYER_NAME];
  1133.     GetPlayerName(playerid, name, sizeof(name));
  1134.     format(string3, sizeof(string3), "%s has gone to Skydiving. (/skydive)", name);
  1135.     SendClientMessageToAll(yellow, string3);
  1136.     GivePlayerWeapon(playerid,46,1);
  1137.     GivePlayerMoney(playerid,-1000);
  1138.     SetPlayerPos(playerid,-1824.5789794922,1044.1844482422,1137.3546142578);
  1139.     SetPlayerFacingAngle(playerid,221.976);
  1140.     GameTextForPlayer(playerid,"~b~Enjoy !",2000,3);
  1141.     }
  1142.     else
  1143.     {
  1144.         SendClientMessage(playerid,0xFF0000AA,"You Dont Have Enough Money");
  1145.     }
  1146.     return 1;
  1147.     }
  1148. }
  1149. // //
  1150.  
  1151.  
  1152.  
  1153. //Flip Command
  1154. COMMAND:flip(playerid, params[])
  1155.     {
  1156.         if(IsPlayerInAnyVehicle(playerid))
  1157.         {
  1158.             new Float:PX, Float:PY, Float:PZ, Float:PA;
  1159.             GetPlayerPos(playerid, PX, PY, PZ);
  1160.             GetVehicleZAngle(GetPlayerVehicleID(playerid), PA);
  1161.             SetVehiclePos(GetPlayerVehicleID(playerid), PX, PY, PZ+1);
  1162.             SetVehicleZAngle(GetPlayerVehicleID(playerid), PA);
  1163.             SendClientMessage(playerid, COLOR_BLUE,"Vehicle Fliped!");
  1164.             PlayerPlaySound(playerid, 1085, 0.0, 0.0, 0.0);
  1165.         }
  1166.         else
  1167.         {
  1168.             SendClientMessage(playerid, COLOR_RED,"You can't flip your player.");
  1169.         }
  1170.         return 1;
  1171.         }
  1172. // Personal NRG
  1173. COMMAND:nrg(playerid, params[])
  1174.     {
  1175.         if( PVeh[playerid] > 0 )
  1176.         {
  1177.             if(GetPlayerVehicleID(playerid) !=  PVeh[playerid])
  1178.             {
  1179.                 if(IsPlayerInAnyVehicle(playerid))
  1180.                 {
  1181.                     RemovePlayerFromVehicle(playerid);
  1182.                 }
  1183.                 new Float: Ang;
  1184.                 GetPlayerPos(playerid, X, Y, Z);
  1185.                 GetPlayerFacingAngle(playerid, Ang);
  1186.                 GetPlayerName(playerid, Name, sizeof( Name ));
  1187.                 PutPlayerInVehicle(playerid, PVeh[playerid], 0);
  1188.                 SetVehiclePos(PVeh[playerid], X, Y, Z);
  1189.                 SetVehicleZAngle(PVeh[playerid], Ang);
  1190.                 SetVehicleHealth(PVeh[playerid],  1000.0);
  1191.                 LinkVehicleToInterior(PVeh[playerid], GetPlayerInterior(playerid));
  1192.                 SendClientMessage(playerid,COLOR_GREEN, "personal nrg called.");
  1193.                 PlayerPlaySound(playerid, 1085, 0.0, 0.0, 0.0);
  1194.             }
  1195.             else
  1196.             {
  1197.                 SendClientMessage(playerid,COLOR_RED, "You are already on your personal nrg.");
  1198.             }
  1199.         }
  1200.         else
  1201.         {
  1202.             if(IsPlayerInAnyVehicle(playerid))
  1203.             {
  1204.                 RemovePlayerFromVehicle(playerid);
  1205.             }
  1206.             new Float: Ang;
  1207.             GetPlayerPos(playerid, X, Y, Z);
  1208.             GetPlayerFacingAngle(playerid, Ang);
  1209.             GetPlayerName(playerid, Name, sizeof( Name ));
  1210.             PVeh[playerid] = CreateVehicle(522, X, Y , Z, Ang, 75,3, 5000000);
  1211.             PutPlayerInVehicle(playerid, PVeh[playerid], 0);
  1212.             LinkVehicleToInterior(PVeh[playerid], GetPlayerInterior(playerid));
  1213.             printf("personal nrg created for %s.", Name);
  1214.             SendClientMessage(playerid,COLOR_RED, "personal nrg created.");
  1215.             PlayerPlaySound(playerid, 1085, 0.0, 0.0, 0.0);
  1216.             SetVehicleParamsForPlayer(PVeh[playerid], playerid, 0, 0);
  1217.             for(new i=0; i <= MAX_PLAYERS; i++)
  1218.             {
  1219.                 if ( IsPlayerConnected(i) )
  1220.                 {
  1221.                     if ( i != playerid )
  1222.                     {
  1223.                         SetVehicleParamsForPlayer(PVeh[playerid], i, 0, 1);
  1224.                     }
  1225.                 }
  1226.             }
  1227.         }
  1228.         return 1;
  1229.  }
  1230. /// AFK Commands
  1231. COMMAND:afk(playerid, params[])
  1232.     {
  1233.         new string[256];
  1234.         if (PlayerData[playerid][AFKstatus] == 1)
  1235.         {
  1236.             SendClientMessage(playerid, COLOUR_RED, "ERROR: Your status is already AFK/BRB!");
  1237.             return 1;
  1238.         }
  1239.  
  1240.         else if (PlayerData[playerid][AFKstatus] == 0)
  1241.         {
  1242.             new pname[MAX_PLAYER_NAME];
  1243.             GetPlayerName(playerid, pname, sizeof(pname));
  1244.             format(string, sizeof(string), "** %s is away from keyboard!", pname);
  1245.             SendClientMessageToAll(COLOUR_YELLOW, string);
  1246.             TogglePlayerControllable(playerid,0);
  1247.             SetPlayerVirtualWorld(playerid, GetPlayerVirtualWorld(playerid) + 50);
  1248.             PlayerData[playerid][AFKstatus] = 1;
  1249.             return 1;
  1250.  }
  1251. return 0;
  1252.  }
  1253.  
  1254. COMMAND:brb(playerid, params[])
  1255.     {
  1256.         new string[256];
  1257.         if (PlayerData[playerid][AFKstatus] == 1)
  1258.         {
  1259.             SendClientMessage(playerid, COLOUR_RED, "ERROR: Your status is already AFK/BRB!");
  1260.             return 1;
  1261.         }
  1262.  
  1263.         else if (PlayerData[playerid][AFKstatus] == 0)
  1264.         {
  1265.             new pname[MAX_PLAYER_NAME];
  1266.             GetPlayerName(playerid, pname, sizeof(pname));
  1267.             format(string, sizeof(string), "** %s will be right back!", pname);
  1268.             SendClientMessageToAll(COLOUR_YELLOW, string);
  1269.             TogglePlayerControllable(playerid,0);
  1270.             SetPlayerVirtualWorld(playerid, GetPlayerVirtualWorld(playerid) + 50);
  1271.             PlayerData[playerid][AFKstatus] = 1;
  1272.             return 1;
  1273.  }
  1274. return 0;
  1275. }
  1276.  
  1277. COMMAND:back(playerid, params[])
  1278.     {
  1279.         new string [256];
  1280.         if (PlayerData[playerid][AFKstatus] == 0)
  1281.         {
  1282.             SendClientMessage(playerid, COLOUR_RED, "ERROR: Your status is already BACK!");
  1283.             return 1;
  1284.         }
  1285.  
  1286.         else if (PlayerData[playerid][AFKstatus] == 1)
  1287.         {
  1288.             new pname[MAX_PLAYER_NAME];
  1289.             GetPlayerName(playerid, pname, sizeof(pname));
  1290.             format(string, sizeof(string), "** %s has returned!", pname);
  1291.             SendClientMessageToAll(COLOUR_YELLOW, string);
  1292.             TogglePlayerControllable(playerid,1);
  1293.             SetPlayerVirtualWorld(playerid, GetPlayerVirtualWorld(playerid) - 50);
  1294.             PlayerData[playerid][AFKstatus] = 0;
  1295.             return 1;
  1296.  }
  1297. return 0;
  1298. }
  1299. /// Teleports
  1300. COMMAND:exitmg(playerid, params[])
  1301.     {
  1302.         {
  1303.             SpawnPlayer(playerid);
  1304.             SetCameraBehindPlayer(playerid);
  1305.             SendClientMessage(playerid, green, "You Left the Mini Game!");
  1306.         }
  1307.         return 1;
  1308. }
  1309. COMMAND:hugejump(playerid, params[])
  1310. {
  1311.     SetPlayerInterior(playerid,0);
  1312.     if (GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
  1313.     {
  1314.         LinkVehicleToInterior(GetPlayerVehicleID(playerid),0);
  1315.         SetVehiclePos(GetPlayerVehicleID(playerid),-2051.5952,-273.0008,35.3203);
  1316.         SetVehicleZAngle(GetPlayerVehicleID(playerid),221.976);
  1317.     }
  1318.     else
  1319.     {
  1320.         SetPlayerPos(playerid,-2051.5952,-273.0008,35.3203);
  1321.         SetPlayerFacingAngle(playerid,221.976);
  1322.     }
  1323.     SendClientMessage(playerid,COLOR_BLUE,"You are at Huge Jump! Have Fun!");
  1324.     new string3[70];
  1325.     new name[MAX_PLAYER_NAME];
  1326.     GetPlayerName(playerid, name, sizeof(name));
  1327.     format(string3, sizeof(string3), "%s(%d) has gone to Huge Jump. (/hugejump)", name,playerid);
  1328.     SendClientMessageToAll(yellow, string3);
  1329.     return 1;
  1330. }
  1331.  
  1332. /*COMMAND:driftcity(playerid, params[])
  1333. {
  1334.     SetPlayerInterior(playerid,0);
  1335.     if (GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
  1336.     {
  1337.         LinkVehicleToInterior(GetPlayerVehicleID(playerid),0);
  1338.         SetVehiclePos(GetPlayerVehicleID(playerid),-2202.8438,-4165.2114,16.4755);
  1339.         SetVehicleZAngle(GetPlayerVehicleID(playerid),221.976);
  1340.     }
  1341.     else
  1342.     {
  1343.         SetPlayerPos(playerid,-2202.8438,-4165.2114,16.4755);
  1344.         SetPlayerFacingAngle(playerid,221.976);
  1345.     }
  1346.     SendClientMessage(playerid,COLOR_BLUE,"You are at Drift City!");
  1347.     new string3[70];
  1348.     new name[MAX_PLAYER_NAME];
  1349.     GetPlayerName(playerid, name, sizeof(name));
  1350.     format(string3, sizeof(string3), "%s(%d) has gone to Drift City. (/driftcity)", name,playerid);
  1351.     SendClientMessageToAll(yellow, string3);
  1352.     return 1;
  1353. }
  1354. */
  1355. COMMAND:lstower(playerid, params[])
  1356. {
  1357.     SetPlayerInterior(playerid,0);
  1358.     if (GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
  1359.     {
  1360.         LinkVehicleToInterior(GetPlayerVehicleID(playerid),0);
  1361.         SetVehiclePos(GetPlayerVehicleID(playerid),1537.1813,-1364.6439,1882.5000);
  1362.         SetVehicleZAngle(GetPlayerVehicleID(playerid),221.976);
  1363.     }
  1364.     else
  1365.     {
  1366.         SetPlayerPos(playerid,1537.1813,-1364.6439,1882.5000);
  1367.         SetPlayerFacingAngle(playerid,221.976);
  1368.     }
  1369.     SendClientMessage(playerid,COLOR_BLUE,"You are at LS Tower!");
  1370.     new string3[70];
  1371.     new name[MAX_PLAYER_NAME];
  1372.     GetPlayerName(playerid, name, sizeof(name));
  1373.     format(string3, sizeof(string3), "%s(%d) has gone to Los Santos Tower. (/lstower)", name,playerid);
  1374.     SendClientMessageToAll(yellow, string3);
  1375.     return 1;
  1376. }
  1377. COMMAND:waytodeath(playerid, params[])
  1378. {
  1379.     SetPlayerInterior(playerid,0);
  1380.     if (GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
  1381.     {
  1382.         LinkVehicleToInterior(GetPlayerVehicleID(playerid),0);
  1383.         SetVehiclePos(GetPlayerVehicleID(playerid),1013.4863,2784.7273,1074.5000);
  1384.         SetVehicleZAngle(GetPlayerVehicleID(playerid),221.976);
  1385.     }
  1386.     else
  1387.     {
  1388.         SetPlayerPos(playerid,1013.4863,2784.7273,1074.5000);
  1389.         SetPlayerFacingAngle(playerid,221.976);
  1390.     }
  1391.     SendClientMessage(playerid,COLOR_BLUE,"You are at Way to Death!");
  1392.     new string3[70];
  1393.     new name[MAX_PLAYER_NAME];
  1394.     GetPlayerName(playerid, name, sizeof(name));
  1395.     format(string3, sizeof(string3), "%s(%d) has gone to Way To Death. (/waytodeath)", name,playerid);
  1396.     SendClientMessageToAll(yellow, string3);
  1397.     return 1;
  1398. }
  1399. COMMAND:drag(playerid, params[])
  1400. {
  1401.     SetPlayerInterior(playerid,0);
  1402.     if (GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
  1403.     {
  1404.         LinkVehicleToInterior(GetPlayerVehicleID(playerid),0);
  1405.         SetVehiclePos(GetPlayerVehicleID(playerid),1031.1125,-2297.4236,12.8004);
  1406.         SetVehicleZAngle(GetPlayerVehicleID(playerid),221.976);
  1407.     }
  1408.     else
  1409.     {
  1410.         SetPlayerPos(playerid,1031.1125,-2297.4236,12.8004);
  1411.         SetPlayerFacingAngle(playerid,221.976);
  1412.     }
  1413.     SendClientMessage(playerid,COLOR_BLUE,"You are at Drag Race!");
  1414.     new string3[70];
  1415.     new name[MAX_PLAYER_NAME];
  1416.     GetPlayerName(playerid, name, sizeof(name));
  1417.     format(string3, sizeof(string3), "%s(%d) has gone to Drag. (/drag)", name,playerid);
  1418.     SendClientMessageToAll(yellow, string3);
  1419.     return 1;
  1420. }
  1421. COMMAND:monstercrash(playerid, params[])
  1422. {
  1423.     SetPlayerInterior(playerid,0);
  1424.     if (GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
  1425.     {
  1426.         LinkVehicleToInterior(GetPlayerVehicleID(playerid),0);
  1427.         SetVehiclePos(GetPlayerVehicleID(playerid),-2383.9839,2909.5325,362.3510);
  1428.         SetVehicleZAngle(GetPlayerVehicleID(playerid),221.976);
  1429.     }
  1430.     else
  1431.     {
  1432.         SetPlayerPos(playerid,-2383.9839,2909.5325,362.3510);
  1433.         SetPlayerFacingAngle(playerid,221.976);
  1434.     }
  1435.     SendClientMessage(playerid,COLOR_BLUE,"You are at Monster Crash!");
  1436.     new string3[70];
  1437.     new name[MAX_PLAYER_NAME];
  1438.     GetPlayerName(playerid, name, sizeof(name));
  1439.     format(string3, sizeof(string3), "%s(%d) has gone to Monster Crash. (/monstercrash)", name,playerid);
  1440.     SendClientMessageToAll(yellow, string3);
  1441.     return 1;
  1442. }
  1443. COMMAND:upsidedown(playerid, params[])
  1444. {
  1445.     SetPlayerInterior(playerid,0);
  1446.     if (GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
  1447.     {
  1448.         LinkVehicleToInterior(GetPlayerVehicleID(playerid),0);
  1449.         SetVehiclePos(GetPlayerVehicleID(playerid),391.1825,-82.5999,558.1525);
  1450.         SetVehicleZAngle(GetPlayerVehicleID(playerid),221.976);
  1451.     }
  1452.     else
  1453.     {
  1454.         SetPlayerPos(playerid,391.1825,-82.5999,558.1525);
  1455.         SetPlayerFacingAngle(playerid,221.976);
  1456.     }
  1457.     SendClientMessage(playerid,COLOR_BLUE,"You are at Upside Down!");
  1458.     new string3[70];
  1459.     new name[MAX_PLAYER_NAME];
  1460.     GetPlayerName(playerid, name, sizeof(name));
  1461.     format(string3, sizeof(string3), "%s(%d) has gone to Up Side Down. (/upsidedown)", name,playerid);
  1462.     SendClientMessageToAll(yellow, string3);
  1463.     return 1;
  1464. }
  1465. COMMAND:apark(playerid, params[])
  1466. {
  1467.     SetPlayerInterior(playerid,0);
  1468.     if (GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
  1469.     {
  1470.         LinkVehicleToInterior(GetPlayerVehicleID(playerid),0);
  1471.         SetVehiclePos(GetPlayerVehicleID(playerid),284.4926, -1863.2415, 2.8927);
  1472.         SetVehicleZAngle(GetPlayerVehicleID(playerid),221.976);
  1473.     }
  1474.     else
  1475.     {
  1476.         SetPlayerPos(playerid,284.4926, -1863.2415, 2.8927);
  1477.         SetPlayerFacingAngle(playerid,221.976);
  1478.     }
  1479.     SendClientMessage(playerid,COLOR_BLUE,"You are at Aqua Park!");
  1480.     new string3[70];
  1481.     new name[MAX_PLAYER_NAME];
  1482.     GetPlayerName(playerid, name, sizeof(name));
  1483.     format(string3, sizeof(string3), "%s(%d) has gone to Park. (/apark)", name,playerid);
  1484.     SendClientMessageToAll(yellow, string3);
  1485.     return 1;
  1486. }
  1487. COMMAND:aba(playerid, params[])
  1488. {
  1489.  SendClientMessage(playerid,red,"This Stunt has been deleted.");
  1490.  return 1;
  1491.  }
  1492. /*COMMAND:aba(playerid, params[])
  1493. {
  1494.     SetPlayerInterior(playerid,0);
  1495.     if (GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
  1496.     {
  1497.         LinkVehicleToInterior(GetPlayerVehicleID(playerid),0);
  1498.         SetVehiclePos(GetPlayerVehicleID(playerid),404.49334716797,2461.439453125,15.5);
  1499.         SetVehicleZAngle(GetPlayerVehicleID(playerid),221.976);
  1500.     }
  1501.     else
  1502.     {
  1503.         SetPlayerPos(playerid,404.49334716797,2461.439453125,15.5);
  1504.         SetPlayerFacingAngle(playerid,221.976);
  1505.     }
  1506.     SendClientMessage(playerid,COLOR_BLUE,"You are at Abandoned Airport!");
  1507.     new string3[70];
  1508.     new name[MAX_PLAYER_NAME];
  1509.     GetPlayerName(playerid, name, sizeof(name));
  1510.     format(string3, sizeof(string3), "%s(%d) has gone to Abandoned Airport. (/aba)", name,playerid);
  1511.     SendClientMessageToAll(yellow, string3);
  1512.     return 1;
  1513. }*/
  1514. COMMAND:sfa(playerid, params[])
  1515. {
  1516.     SetPlayerInterior(playerid,0);
  1517.     if (GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
  1518.     {
  1519.         LinkVehicleToInterior(GetPlayerVehicleID(playerid),0);
  1520.         SetVehiclePos(GetPlayerVehicleID(playerid),-1524.8004,-77.4487,14.1484);
  1521.         SetVehicleZAngle(GetPlayerVehicleID(playerid),221.976);
  1522.     }
  1523.     else
  1524.     {
  1525.         SetPlayerPos(playerid,-1524.8004,-77.4487,14.1484);
  1526.         SetPlayerFacingAngle(playerid,221.976);
  1527.     }
  1528.     SendClientMessage(playerid,COLOR_BLUE,"You are at San Fierro Airport!");
  1529.     new string3[70];
  1530.     new name[MAX_PLAYER_NAME];
  1531.     GetPlayerName(playerid, name, sizeof(name));
  1532.     format(string3, sizeof(string3), "%s(%d) has gone to San Fierro Airport. (/sfa)", name,playerid);
  1533.     SendClientMessageToAll(yellow, string3);
  1534.     return 1;
  1535. }
  1536. COMMAND:lsa(playerid, params[])
  1537. {
  1538.     SetPlayerInterior(playerid,0);
  1539.     if (GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
  1540.     {
  1541.         LinkVehicleToInterior(GetPlayerVehicleID(playerid),0);
  1542.         SetVehiclePos(GetPlayerVehicleID(playerid),1646.0890,-2444.3279,13.5547);
  1543.         SetVehicleZAngle(GetPlayerVehicleID(playerid),221.976);
  1544.     }
  1545.     else
  1546.     {
  1547.         SetPlayerPos(playerid,1646.0890,-2444.3279,13.5547);
  1548.         SetPlayerFacingAngle(playerid,221.976);
  1549.     }
  1550.     SendClientMessage(playerid,COLOR_BLUE,"You are at Los Santos Airport!");
  1551.     new string3[70];
  1552.     new name[MAX_PLAYER_NAME];
  1553.     GetPlayerName(playerid, name, sizeof(name));
  1554.     format(string3, sizeof(string3), "%s(%d) has gone to Los Santos Airport. (/lsa)", name,playerid);
  1555.     SendClientMessageToAll(yellow, string3);
  1556.     return 1;
  1557. }
  1558. COMMAND:drift1(playerid, params[])
  1559. {
  1560.     SetPlayerInterior(playerid,0);
  1561.     if (GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
  1562.     {
  1563.         LinkVehicleToInterior(GetPlayerVehicleID(playerid),0);
  1564.         SetVehiclePos(GetPlayerVehicleID(playerid),-308.3555,1527.1465,75.3594);
  1565.         SetVehicleZAngle(GetPlayerVehicleID(playerid),221.976);
  1566.     }
  1567.     else
  1568.     {
  1569.         SetPlayerPos(playerid,-350.0350,1512.0911,79.5141);
  1570.         SetPlayerFacingAngle(playerid,221.976);
  1571.     }
  1572.     SendClientMessage(playerid,COLOR_BLUE,"You are at drift1!");
  1573.     new string3[70];
  1574.     new name[MAX_PLAYER_NAME];
  1575.     GetPlayerName(playerid, name, sizeof(name));
  1576.     format(string3, sizeof(string3), "%s(%d) has gone to Drift. (/drift1)", name,playerid);
  1577.     SendClientMessageToAll(yellow, string3);
  1578.     return 1;
  1579. }
  1580. COMMAND:city(playerid, params[])
  1581. {
  1582.     SetPlayerInterior(playerid,0);
  1583.     if (GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
  1584.     {
  1585.         LinkVehicleToInterior(GetPlayerVehicleID(playerid),0);
  1586.         SetVehiclePos(GetPlayerVehicleID(playerid),837.2653,-1893.0802,12.8672);
  1587.         SetVehicleZAngle(GetPlayerVehicleID(playerid),221.976);
  1588.     }
  1589.     else
  1590.     {
  1591.         SetPlayerPos(playerid,837.2653,-1893.0802,12.8672);
  1592.         SetPlayerFacingAngle(playerid,221.976);
  1593.     }
  1594.     SendClientMessage(playerid,COLOR_BLUE,"You are at City !");
  1595.     new string3[70];
  1596.     new name[MAX_PLAYER_NAME];
  1597.     GetPlayerName(playerid, name, sizeof(name));
  1598.     format(string3, sizeof(string3), "%s(%d) has gone to City. (/city)", name,playerid);
  1599.     SendClientMessageToAll(yellow, string3);
  1600.     return 1;
  1601. }
  1602. COMMAND:annoying(playerid, params[])
  1603. {
  1604.     SetPlayerInterior(playerid,0);
  1605.     if (GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
  1606.     {
  1607.         LinkVehicleToInterior(GetPlayerVehicleID(playerid),0);
  1608.         SetVehiclePos(GetPlayerVehicleID(playerid),2184.6436,-2612.5144,13.5469);
  1609.         SetVehicleZAngle(GetPlayerVehicleID(playerid),221.976);
  1610.     }
  1611.     else
  1612.     {
  1613.         SetPlayerPos(playerid,2184.6436,-2612.5144,13.5469);
  1614.         SetPlayerFacingAngle(playerid,221.976);
  1615.     }
  1616.     SendClientMessage(playerid,COLOR_BLUE,"You have been teleported to Annoying Race!");
  1617.     new string3[70];
  1618.     new name[MAX_PLAYER_NAME];
  1619.     GetPlayerName(playerid, name, sizeof(name));
  1620.     format(string3, sizeof(string3), "%s(%d) has gone to Annoying Race. (/annoying)", name,playerid);
  1621.     SendClientMessageToAll(yellow, string3);
  1622.     return 1;
  1623. }
  1624. COMMAND:shop(playerid, params[])
  1625. {
  1626.     ShowPlayerDialog(playerid, 1, DIALOG_STYLE_LIST, "{000FFF}What is it that you want?", "{33CC99}Sprunk ($1)\n{FF0000}Beer ($2)\n{993300}Wine ($3)\n{FF0033}Deagle ($500)\n{FF00CC}Combat ($700)\n{330099}M4($1000)\n{66FF00}Health($500)\n{660000}Armour($1000)", "Purchase", "Cancel");
  1627.     return 1;
  1628. }
  1629. COMMAND:mc(playerid, params[])
  1630. {
  1631.     SetPlayerInterior(playerid,0);
  1632.     if (GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
  1633.     {
  1634.         LinkVehicleToInterior(GetPlayerVehicleID(playerid),0);
  1635.         SetVehiclePos(GetPlayerVehicleID(playerid),-2342.8923,-1664.8397,483.7031);
  1636.         SetVehicleZAngle(GetPlayerVehicleID(playerid),221.976);
  1637.     }
  1638.     else
  1639.     {
  1640.         SetPlayerPos(playerid,-2342.8923,-1664.8397,483.7031);
  1641.         SetPlayerFacingAngle(playerid,221.976);
  1642.     }
  1643.     SendClientMessage(playerid,COLOR_BLUE,"You have been teleported to Chilliad!");
  1644.     new string3[70];
  1645.     new name[MAX_PLAYER_NAME];
  1646.     GetPlayerName(playerid, name, sizeof(name));
  1647.     format(string3, sizeof(string3), "%s(%d) has gone to Mount Chilliad. (/mc)", name,playerid);
  1648.     SendClientMessageToAll(yellow, string3);
  1649.     return 1;
  1650. }
  1651. COMMAND:shipwar(playerid, params[])
  1652.     {
  1653.                 ResetPlayerWeapons(playerid);
  1654.                 TogglePlayerControllable(playerid, 1);
  1655.                 new ShipMadness[128], playerName[MAX_PLAYER_NAME], RandomSpawn = random(9);
  1656.                 GetPlayerName(playerid, playerName, MAX_PLAYER_NAME);
  1657.                 if (RandomSpawn == 0)
  1658.                 {
  1659.                     InCar[playerid] = false;
  1660.                     SetPlayerPos(playerid, -2473.3635,1552.3779,33.2273);
  1661.                     SetPlayerFacingAngle(playerid, 162.4520);
  1662.                     SetCameraBehindPlayer(playerid);
  1663.                 }
  1664.                 if (RandomSpawn == 1)
  1665.                 {
  1666.                     InCar[playerid] = false;
  1667.                     SetPlayerPos(playerid, -2464.5215,1531.9247,17.3281);
  1668.                     SetPlayerFacingAngle(playerid, 356.1172);
  1669.                     SetCameraBehindPlayer(playerid);
  1670.                 }
  1671.                 if (RandomSpawn == 2)
  1672.                 {
  1673.                     InCar[playerid] = false;
  1674.                     SetPlayerPos(playerid, -2460.7542,1551.8220,23.1406);
  1675.                     SetPlayerFacingAngle(playerid, 179.0821);
  1676.                     SetCameraBehindPlayer(playerid);
  1677.                 }
  1678.                 if (RandomSpawn == 3)
  1679.                 {
  1680.                     InCar[playerid] = false;
  1681.                     SetPlayerPos(playerid, -2444.2595,1530.2435,20.2344);
  1682.                     SetPlayerFacingAngle(playerid, 340.1136);
  1683.                     SetCameraBehindPlayer(playerid);
  1684.                 }
  1685.                 if (RandomSpawn == 4)
  1686.                 {
  1687.                     InCar[playerid] = false;
  1688.                     SetPlayerPos(playerid, -2401.1440,1532.8340,26.0469);
  1689.                     SetPlayerFacingAngle(playerid, 17.7140);
  1690.                     SetCameraBehindPlayer(playerid);
  1691.                 }
  1692.                 if (RandomSpawn == 5)
  1693.                 {
  1694.                     InCar[playerid] = false;
  1695.                     SetPlayerPos(playerid, -2374.3948,1535.5518,26.0469);
  1696.                     SetPlayerFacingAngle(playerid, 57.7976);
  1697.                     SetCameraBehindPlayer(playerid);
  1698.                 }
  1699.                 if (RandomSpawn == 6)
  1700.                 {
  1701.                     InCar[playerid] = false;
  1702.                     SetPlayerPos(playerid, -2359.6692,1561.0190,26.0469);
  1703.                     SetPlayerFacingAngle(playerid, 162.1386);
  1704.                     SetCameraBehindPlayer(playerid);
  1705.                 }
  1706.                 if (RandomSpawn == 7)
  1707.                 {
  1708.                     InCar[playerid] = false;
  1709.                     SetPlayerPos(playerid, -2382.4871,1547.8801,10.8281);
  1710.                     SetPlayerFacingAngle(playerid, 108.2448);
  1711.                     SetCameraBehindPlayer(playerid);
  1712.                 }
  1713.                 if (RandomSpawn == 8)
  1714.                 {
  1715.                     InCar[playerid] = false;
  1716.                     SetPlayerPos(playerid, -2422.0405,1551.3163,7.9219);
  1717.                     SetPlayerFacingAngle(playerid, 143.3385);
  1718.                     SetCameraBehindPlayer(playerid);
  1719.                 }
  1720.                 GivePlayerWeapon(playerid, 4, 1);
  1721.                 GivePlayerWeapon(playerid, 24, 47);
  1722.                 GivePlayerWeapon(playerid, 26, 44);
  1723.                 SetPlayerInterior(playerid, 0);
  1724.                 SendClientMessage(playerid, COLOR_PURPLE, "You have been teleportated to -ShipWar-");
  1725.                 SendClientMessage(playerid, COLOR_RED, "SHOOTING WITH WEAPONS OUTSIDE -SHIPWAR- WIL RESULT IN KICK OR BAN!!!");
  1726.                 format(ShipMadness, sizeof(ShipMadness), "%s has teleported to /ShipWar", playerName);
  1727.                 new string3[70];
  1728.                 new name[MAX_PLAYER_NAME];
  1729.                 GetPlayerName(playerid, name, sizeof(name));
  1730.                 format(string3, sizeof(string3), "%s(%d) has gone to MiniGame. (/shipwar)", name,playerid);
  1731.                 SendClientMessageToAll(yellow, string3);
  1732.                 for(new i=0; i<MAX_PLAYERS; i++)
  1733.                 {
  1734.                     if(IsPlayerConnected(i))
  1735.                     {
  1736.                         if(ReceiveInfo[i] == true)
  1737.                         {
  1738.                             SendClientMessage(i, COLOR_GREY, ShipMadness);
  1739.                         }
  1740.                     }
  1741.                 }
  1742.                 return 1;
  1743.             }
  1744. COMMAND:minigun(playerid, params[])
  1745.     {
  1746.         ResetPlayerWeapons(playerid);
  1747.         new MinigunMadness[128], playerName[MAX_PLAYER_NAME], RandomSpawn = random(6);
  1748.         GetPlayerName(playerid, playerName, MAX_PLAYER_NAME);
  1749.         if (RandomSpawn == 0)
  1750.         {
  1751.             InCar[playerid] = false;
  1752.             SetPlayerPos(playerid, 2595.3945,2758.7642,23.8222);
  1753.             SetPlayerFacingAngle(playerid, 247.9706);
  1754.             SetCameraBehindPlayer(playerid);
  1755.         }
  1756.         if (RandomSpawn == 1)
  1757.         {
  1758.             InCar[playerid] = false;
  1759.             SetPlayerPos(playerid, 2600.9648,2726.4263,23.8222);
  1760.             SetPlayerFacingAngle(playerid, 329.4380);
  1761.             SetCameraBehindPlayer(playerid);
  1762.         }
  1763.         if (RandomSpawn == 2)
  1764.         {
  1765.             InCar[playerid] = false;
  1766.             SetPlayerPos(playerid, 2639.5300,2729.5732,23.8222);
  1767.             SetPlayerFacingAngle(playerid, 46.8321);
  1768.             SetCameraBehindPlayer(playerid);
  1769.         }
  1770.         if (RandomSpawn == 3)
  1771.         {
  1772.             InCar[playerid] = false;
  1773.             SetPlayerPos(playerid, 2642.3181,2757.0920,23.8222);
  1774.             SetPlayerFacingAngle(playerid, 121.7195);
  1775.             SetCameraBehindPlayer(playerid);
  1776.         }
  1777.         if (RandomSpawn == 4)
  1778.         {
  1779.             InCar[playerid] = false;
  1780.             SetPlayerPos(playerid, 2649.0498,2780.8462,19.3222);
  1781.             SetPlayerFacingAngle(playerid, 196.2701);
  1782.             SetCameraBehindPlayer(playerid);
  1783.         }
  1784.         if (RandomSpawn == 5)
  1785.         {
  1786.             InCar[playerid] = false;
  1787.             SetPlayerPos(playerid, 2607.4639,2732.1467,36.5386);
  1788.             SetPlayerFacingAngle(playerid, 255.2007);
  1789.             SetCameraBehindPlayer(playerid);
  1790.         }
  1791.         GivePlayerWeapon(playerid, 38, 2000);
  1792.         SetPlayerInterior(playerid, 0);
  1793.         SendClientMessage(playerid, COLOR_GREEN, "You have been teleportated to -Minigun1-");
  1794.         SendClientMessage(playerid, COLOR_YELLOW, "Do You Want To Exit Mini Game USE: /exitmg");
  1795.         SendClientMessage(playerid, COLOR_RED, "SHOOTING WITH MINIGUN OUTSIDE -MINIGUN1- WILL RESULT ON KICK OR BAN!!!");
  1796.         format(MinigunMadness, sizeof(MinigunMadness), "%s(%d) has gone to MiniGun. (/minigun1)", playerName,playerid);
  1797.         new string3[70];
  1798.         new name[MAX_PLAYER_NAME];
  1799.         GetPlayerName(playerid, name, sizeof(name));
  1800.         format(string3, sizeof(string3), "%s(%d) has gone to MiniGame. (/minigun)", name,playerid);
  1801.         SendClientMessageToAll(yellow, string3);
  1802.         for(new i=0; i<MAX_PLAYERS; i++)
  1803.         {
  1804.             if(IsPlayerConnected(i))
  1805.             {
  1806.                 if(ReceiveInfo[i] == true)
  1807.                 {
  1808.                     SendClientMessage(i, COLOR_GREY, MinigunMadness);
  1809.                 }
  1810.             }
  1811.         }
  1812.         return 1;
  1813.     }
  1814. COMMAND:mod(playerid, params[])
  1815. {
  1816.     #pragma unused params
  1817.     new neon5 = CreateObject(18648,0,0,0,0,0,0,100.0);
  1818.     new neon6 = CreateObject(18648,0,0,0,0,0,0,100.0);
  1819.     SetVehicleNumberPlate(GetPlayerVehicleID(playerid), "Sufyan");
  1820.     AttachObjectToVehicle(neon5, GetPlayerVehicleID(playerid), 0.8, 0.0, -0.70, 0.0, 0.0, 0.0);
  1821.     AttachObjectToVehicle(neon6,GetPlayerVehicleID(playerid), -0.8, 0.0, -0.70, 0.0, 0.0, 0.0);
  1822.     return 1;
  1823. }
  1824.  
  1825. COMMAND:neon(playerid, params[])
  1826. {
  1827.     #pragma unused params
  1828.     new vehid = GetPlayerVehicleID(playerid);
  1829.     new neon5 = CreateObject(18648,0,0,0,0,0,0,100.0);
  1830.     new neon6 = CreateObject(18648,0,0,0,0,0,0,100.0);
  1831.     SetVehicleNumberPlate(GetPlayerVehicleID(playerid), "Sufyan");
  1832.     if(!IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid, ADMIN_RED, "You must be in a vehicle to use this command!");
  1833.     else if(On[vehid] == 1)
  1834.     {
  1835.         SendClientMessage(playerid, COLOR_GREEN, "Neon mod disabled!");
  1836.         DestroyObject(18648);
  1837.         On[vehid] = 0;
  1838.     }
  1839.     else
  1840.     {
  1841.         SendClientMessage(playerid, COLOR_GREEN, "Neon mod enabled!");
  1842.         AttachObjectToVehicle(neon5, GetPlayerVehicleID(playerid), 0.8, 0.0, -0.70, 0.0, 0.0, 0.0);
  1843.         AttachObjectToVehicle(neon6,GetPlayerVehicleID(playerid), -0.8, 0.0, -0.70, 0.0, 0.0, 0.0);
  1844.         On[vehid] = 1;
  1845.     }
  1846.     return 1;
  1847. }
  1848. // Vehicle
  1849.     new engine,lights,alarm,doors,bonnet,boot,objective;
  1850.  
  1851. COMMAND:startengine(playerid, params[]){
  1852.         new vid = GetPlayerVehicleID(playerid);
  1853.         if(vid != INVALID_VEHICLE_ID) {
  1854.             GetVehicleParamsEx(vid,engine,lights,alarm,doors,bonnet,boot,objective);
  1855.             SetVehicleParamsEx(vid,VEHICLE_PARAMS_ON,lights,alarm,doors,bonnet,boot,objective);
  1856.         }
  1857.         return 1;
  1858.     }
  1859. COMMAND:stopengine(playerid, params[]){
  1860.         new vid = GetPlayerVehicleID(playerid);
  1861.         if(vid != INVALID_VEHICLE_ID) {
  1862.             GetVehicleParamsEx(vid,engine,lights,alarm,doors,bonnet,boot,objective);
  1863.             SetVehicleParamsEx(vid,VEHICLE_PARAMS_OFF,lights,alarm,doors,bonnet,boot,objective);
  1864.         }
  1865.         return 1;
  1866.     }
  1867.  
  1868. COMMAND:minigun2(playerid, params[])
  1869.     {
  1870.         ResetPlayerWeapons(playerid);
  1871.         new MinigunMadness[128], playerName[MAX_PLAYER_NAME], RandomSpawn = random(6);
  1872.         GetPlayerName(playerid, playerName, MAX_PLAYER_NAME);
  1873.         if (RandomSpawn == 0)
  1874.         {
  1875.             InCar[playerid] = false;
  1876.             SetPlayerPos(playerid, 2389.3079,-2686.4307,13.8002);
  1877.             SetPlayerFacingAngle(playerid, 247.9706);
  1878.             SetCameraBehindPlayer(playerid);
  1879.         }
  1880.         if (RandomSpawn == 1)
  1881.         {
  1882.             InCar[playerid] = false;
  1883.             SetPlayerPos(playerid, 2389.3079,-2686.4307,13.8002);
  1884.             SetPlayerFacingAngle(playerid, 329.4380);
  1885.             SetCameraBehindPlayer(playerid);
  1886.         }
  1887.         if (RandomSpawn == 2)
  1888.         {
  1889.             InCar[playerid] = false;
  1890.             SetPlayerPos(playerid, 2409.6206,-2615.9431,13.9221);
  1891.             SetPlayerFacingAngle(playerid, 46.8321);
  1892.             SetCameraBehindPlayer(playerid);
  1893.         }
  1894.         if (RandomSpawn == 3)
  1895.         {
  1896.             InCar[playerid] = false;
  1897.             SetPlayerPos(playerid, 2248.4668,-2632.1819,13.5642);
  1898.             SetPlayerFacingAngle(playerid, 121.7195);
  1899.             SetCameraBehindPlayer(playerid);
  1900.         }
  1901.         if (RandomSpawn == 4)
  1902.         {
  1903.             InCar[playerid] = false;
  1904.             SetPlayerPos(playerid, 2209.2549,-2698.2922,17.8828);
  1905.             SetPlayerFacingAngle(playerid, 196.2701);
  1906.             SetCameraBehindPlayer(playerid);
  1907.         }
  1908.         if (RandomSpawn == 5)
  1909.         {
  1910.             InCar[playerid] = false;
  1911.             SetPlayerPos(playerid, 2184.6436,-2612.5144,13.5469);
  1912.             SetPlayerFacingAngle(playerid, 255.2007);
  1913.             SetCameraBehindPlayer(playerid);
  1914.         }
  1915.         GivePlayerWeapon(playerid, 38, 2000);
  1916.         SetPlayerInterior(playerid, 0);
  1917.         SendClientMessage(playerid, COLOR_GREEN, "You have been teleportated to -Minigun2-");
  1918.         SendClientMessage(playerid, COLOR_YELLOW, "Do You Want To Exit Mini Game USE: /exitmg");
  1919.         SendClientMessage(playerid, COLOR_RED, "SHOOTING WITH MINIGUN OUTSIDE -MINIGUN2- WILL RESULT ON KICK OR BAN!!!");
  1920.         format(MinigunMadness, sizeof(MinigunMadness), "%s has gone to MiniGun. (/minigun2)", playerName);
  1921.         new string3[70];
  1922.         new name[MAX_PLAYER_NAME];
  1923.         GetPlayerName(playerid, name, sizeof(name));
  1924.         format(string3, sizeof(string3), "%s(%d) has gone to MiniGame. (/minigun2)", name,playerid);
  1925.         SendClientMessageToAll(yellow, string3);
  1926.         for(new i=0; i<MAX_PLAYERS; i++)
  1927.         {
  1928.             if(IsPlayerConnected(i))
  1929.             {
  1930.                 if(ReceiveInfo[i] == true)
  1931.                 {
  1932.                     SendClientMessage(i, COLOR_GREY, MinigunMadness);
  1933.                 }
  1934.             }
  1935.         }
  1936.         return 1;
  1937.     }
  1938.     COMMAND:eiffel(playerid, params[])
  1939.     {
  1940.       SetPlayerPos(playerid,948.788574, 2439.683350, 10.874555);
  1941.       SendClientMessage(playerid,green," /lift1up  , /lift1down , /lift2up , /lift2down , /lift3up  , /lift3down");
  1942.         return 1;
  1943.     }
  1944.  
  1945. COMMAND:dm(playerid, params[])
  1946.     {
  1947.         ResetPlayerWeapons(playerid);
  1948.         new MinigunMadness[128], playerName[MAX_PLAYER_NAME], RandomSpawn = random(6);
  1949.         GetPlayerName(playerid, playerName, MAX_PLAYER_NAME);
  1950.         if (RandomSpawn == 0)
  1951.         {
  1952.             InCar[playerid] = false;
  1953.             SetPlayerPos(playerid, 2389.3079,-2686.4307,13.8002);
  1954.             SetPlayerFacingAngle(playerid, 247.9706);
  1955.             SetCameraBehindPlayer(playerid);
  1956.         }
  1957.         if (RandomSpawn == 1)
  1958.         {
  1959.             InCar[playerid] = false;
  1960.             SetPlayerPos(playerid, 2290.2297,613.9958,10.9434);
  1961.             SetPlayerFacingAngle(playerid, 329.4380);
  1962.             SetCameraBehindPlayer(playerid);
  1963.         }
  1964.         if (RandomSpawn == 2)
  1965.         {
  1966.             InCar[playerid] = false;
  1967.             SetPlayerPos(playerid, 2290.2129,614.2157,13.6324);
  1968.             SetPlayerFacingAngle(playerid, 46.8321);
  1969.             SetCameraBehindPlayer(playerid);
  1970.         }
  1971.         if (RandomSpawn == 3)
  1972.         {
  1973.             InCar[playerid] = false;
  1974.             SetPlayerPos(playerid, 2283.5107,614.5233,13.632);
  1975.             SetPlayerFacingAngle(playerid, 121.7195);
  1976.             SetCameraBehindPlayer(playerid);
  1977.         }
  1978.         if (RandomSpawn == 4)
  1979.         {
  1980.             InCar[playerid] = false;
  1981.             SetPlayerPos(playerid, 2283.4067,613.5623,10.9434);
  1982.             SetPlayerFacingAngle(playerid, 196.2701);
  1983.             SetCameraBehindPlayer(playerid);
  1984.         }
  1985.         if (RandomSpawn == 5)
  1986.         {
  1987.             InCar[playerid] = false;
  1988.             SetPlayerPos(playerid, 2283.4067,613.5623,10.9434);
  1989.             SetPlayerFacingAngle(playerid, 255.2007);
  1990.             SetCameraBehindPlayer(playerid);
  1991.         }
  1992.         SetPlayerInterior(playerid, 0);
  1993.         GivePlayerWeapon(playerid, 24, 2000);
  1994.         GivePlayerWeapon(playerid, 31, 2000);
  1995.         GivePlayerWeapon(playerid, 27, 2000);
  1996.         SendClientMessage(playerid, COLOR_GREEN, "You have been teleportated to -DM-");
  1997.         SendClientMessage(playerid, COLOR_YELLOW, "Do You Want To Exit Mini Game USE: /exitmg");
  1998.         SendClientMessage(playerid, COLOR_RED, "SHOOTING WITH WEAPONS OUTSIDE -DM- WILL RESULT ON KICK OR BAN!!!");
  1999.         format(MinigunMadness, sizeof(MinigunMadness), "%s has gone to Death Match. (/DM)", playerName);
  2000.         new string3[70];
  2001.         new name[MAX_PLAYER_NAME];
  2002.         GetPlayerName(playerid, name, sizeof(name));
  2003.         format(string3, sizeof(string3), "%s(%d) has gone to MiniGame. (/dm)", name,playerid);
  2004.         SendClientMessageToAll(yellow, string3);
  2005.         for(new i=0; i<MAX_PLAYERS; i++)
  2006.         {
  2007.             if(IsPlayerConnected(i))
  2008.             {
  2009.                 if(ReceiveInfo[i] == true)
  2010.                 {
  2011.                     SendClientMessage(i, COLOR_GREY, MinigunMadness);
  2012.                 }
  2013.             }
  2014.         }
  2015.         return 1;
  2016.     }
  2017. COMMAND:glassdm(playerid, params[])
  2018.     {
  2019.     SendClientMessage(playerid,red,"This MiniGame has beed deleted.");
  2020.         /*ResetPlayerWeapons(playerid);
  2021.         new GlassMadness[128], playerName[MAX_PLAYER_NAME], RandomSpawn = random(8);
  2022.         GetPlayerName(playerid, playerName, MAX_PLAYER_NAME);
  2023.         if (RandomSpawn == 0)
  2024.         {
  2025.             InCar[playerid] = false;
  2026.             SetPlayerPos(playerid, -33.6020,1507.4240,95.4173);
  2027.             SetPlayerFacingAngle(playerid, 325.6300);
  2028.             SetCameraBehindPlayer(playerid);
  2029.         }
  2030.         if (RandomSpawn == 1)
  2031.         {
  2032.             InCar[playerid] = false;
  2033.             SetPlayerPos(playerid, -12.6829,1507.4701,95.4341);
  2034.             SetPlayerFacingAngle(playerid, 40.2041);
  2035.             SetCameraBehindPlayer(playerid);
  2036.         }
  2037.         if (RandomSpawn == 2)
  2038.         {
  2039.             InCar[playerid] = false;
  2040.             SetPlayerPos(playerid, -12.6831,1544.3137,95.4309);
  2041.             SetPlayerFacingAngle(playerid, 146.1118);
  2042.             SetCameraBehindPlayer(playerid);
  2043.         }
  2044.         if (RandomSpawn == 3)
  2045.         {
  2046.             InCar[playerid] = false;
  2047.             SetPlayerPos(playerid, -32.7342,1543.9973,95.4126);
  2048.             SetPlayerFacingAngle(playerid, 220.0591);
  2049.             SetCameraBehindPlayer(playerid);
  2050.         }
  2051.         if (RandomSpawn == 4)
  2052.         {
  2053.             InCar[playerid] = false;
  2054.             SetPlayerPos(playerid, -23.6215,1545.4828,95.4222);
  2055.             SetPlayerFacingAngle(playerid, 181.8555);
  2056.             SetCameraBehindPlayer(playerid);
  2057.         }
  2058.         if (RandomSpawn == 5)
  2059.         {
  2060.             InCar[playerid] = false;
  2061.             SetPlayerPos(playerid, -11.9289,1525.8883,95.4330);
  2062.             SetPlayerFacingAngle(playerid, 89.4213);
  2063.             SetCameraBehindPlayer(playerid);
  2064.         }
  2065.         if (RandomSpawn == 6)
  2066.         {
  2067.             InCar[playerid] = false;
  2068.             SetPlayerPos(playerid, -23.4273,1505.9843,95.4257);
  2069.             SetPlayerFacingAngle(playerid, 359.8071);
  2070.             SetCameraBehindPlayer(playerid);
  2071.         }
  2072.         if (RandomSpawn == 7)
  2073.         {
  2074.             InCar[playerid] = false;
  2075.             SetPlayerPos(playerid, -34.1823,1525.6079,95.4088);
  2076.             SetPlayerFacingAngle(playerid, 270.5063);
  2077.             SetCameraBehindPlayer(playerid);
  2078.         }
  2079.         GivePlayerWeapon(playerid, 29, 130);
  2080.         SetPlayerInterior(playerid, 0);
  2081.         SendClientMessage(playerid, COLOR_GREEN, "You have been teleportated to -GlassDM-");
  2082.         SendClientMessage(playerid, COLOR_YELLOW, "Do You Want To Exit Mini Game USE: /exitmg");
  2083.         SendClientMessage(playerid, COLOR_RED, "SHOOTING WITH WEAPONS OUTSIDE -GLASSDM- WIL RESULT IN KICK OR BAN!!!");
  2084.         format(GlassMadness, sizeof(GlassMadness), "%s has gone to Glass DeathMatch. (/glassdm)", playerName);
  2085.         new string3[70];
  2086.         new name[MAX_PLAYER_NAME];
  2087.         GetPlayerName(playerid, name, sizeof(name));
  2088.         format(string3, sizeof(string3), "%s(%d) has gone to MiniGame. (/glassdm)", name,playerid);
  2089.         SendClientMessageToAll(yellow, string3);
  2090.         for(new i=0; i<MAX_PLAYERS; i++)
  2091.         {
  2092.             if(IsPlayerConnected(i))
  2093.             {
  2094.                 if(ReceiveInfo[i] == true)
  2095.                 {
  2096.                     SendClientMessage(i, COLOR_GREY, GlassMadness);
  2097.                 }
  2098.             }
  2099.         }*/
  2100.         return 1;
  2101. }
  2102. COMMAND:stopvote(playerid, params[])
  2103. {
  2104.     if(IsPlayerAdmin(playerid))
  2105.     #pragma unused params
  2106.     TextDrawDestroy(TCountDown);
  2107.     TextDrawDestroy(VoteKick);
  2108.     KillTimer(Timer);
  2109.     KillTimer(thingy);
  2110.     SendClientMessageToAll(0xFF0000FF,"An admin has stopped the vote kick.");
  2111.     return 1;
  2112. }
  2113. COMMAND:votekick(playerid, params[])
  2114. {
  2115.     new id,n[24],on[24],str2[128],string[3];
  2116.     new tmp[256], tmp2[256], Index,str[128];
  2117.     VPlayers = GetPlayersOnServer()/2+1;
  2118.     if(GetPlayersOnServer() <= 2) return SendClientMessage(playerid,GREY,"There needs to be atleast 3 people online to use this command.");
  2119.     tmp = strtok(params,Index), tmp2 = strtok(params,Index),id = strval(tmp);
  2120.     if(VoteActive == 1) return SendClientMessage(playerid,0xFF0000FF,"There is already a votekick in proccess, please wait untill it is finished");
  2121.     IDofotherplayer = id;
  2122.     GetPlayerName(playerid,n,24),GetPlayerName(id,on,24);
  2123.     Voted[playerid] = 1;
  2124.     KickName = on;
  2125.     PlayerName = n;
  2126.     if(!strlen(params)) return SendClientMessage(playerid,GREY,"USAGE: /votekick <ID> <Reason>");
  2127.     if(!IsPlayerConnected(id))return SendClientMessage(playerid,GREY,"You have entered an incorrect ID.");
  2128.     Votes = 1;
  2129.     VoteActive = 1;
  2130.     format(str2,sizeof(str2),"~r~Votekick on ~w~%s. ~r~%d/%d",PlayerName,Votes,VPlayers);
  2131.     VoteKick = TextDrawCreate(50.0,300.0,str2);
  2132.     TextDrawLetterSize(VoteKick,0.5,2.5);
  2133.     TextDrawShowForAll(VoteKick);
  2134.     thingy = SetTimer("VoteFail",21000,false);
  2135.     Timer = SetTimer("CountDownTimer",1000,true);
  2136.     format(str,sizeof(str),"%s has started a votekick on %s. Reason: %s",n,on,params[2]);
  2137.     SendClientMessageToAll(0xFF0000FF,str);
  2138.     format(string,sizeof(string),"%d",Count);
  2139.     TCountDown = TextDrawCreate(300.0,300.0,string);
  2140.     Count = 21;
  2141.     return 1;
  2142. }
  2143. COMMAND:vote(playerid, params[])
  2144. {
  2145.     #pragma unused params
  2146.     new str[128],name[24],str2[128];
  2147.     GetPlayerName(playerid,name,24);
  2148.     if(VoteActive == 0) return SendClientMessage(playerid,GREY,"There is no active vote kick on right now.");
  2149.     if(Voted[playerid] == 1) return SendClientMessage(playerid,LIGHTBLUE,"You have already voted!");
  2150.     KillTimer(thingy);
  2151.     thingy = SetTimer("VoteFail",21000,false);
  2152.     Votes++;
  2153.     Voted[playerid] = 1;
  2154.     format(str,sizeof(str),"%s has voted. %d/%d",name,Votes,VPlayers);
  2155.     SendClientMessageToAll(0xFF0000FF,str);
  2156.     TextDrawDestroy(VoteKick);
  2157.     format(str2,sizeof(str),"~r~Votekick on ~w~%s. ~r~%d/%d",KickName,Votes,VPlayers);
  2158.     TextDrawCreate(50.0,300,str2);
  2159.     TextDrawLetterSize(VoteKick,0.5,2.5);
  2160.     TextDrawShowForAll(VoteKick);
  2161.     KillTimer(Timer);
  2162.     Timer = SetTimer("CountDownTimer",1000,true);
  2163.     Count = 21;
  2164.     if(Votes == VPlayers)
  2165.     {
  2166.         format(str,sizeof(str),"%s has been kicked. %d/%d votes.",KickName,Votes,Votes);
  2167.         SendClientMessageToAll(0xFF0000FF,str);
  2168.         TextDrawDestroy(VoteKick);
  2169.         KillTimer(thingy);
  2170.         VoteActive = 0;
  2171.         Kick(IDofotherplayer);
  2172.         return 1;
  2173.     }
  2174.     return 1;
  2175. }
  2176.  
  2177. forward VoteFail(playerid);
  2178. public VoteFail(playerid)
  2179. {
  2180.     Votes = 0;
  2181.     VoteActive = 0;
  2182.     Voted[playerid] = 0;
  2183.     SendClientMessageToAll(LIGHTBLUE,"There were not enough votes for the vote-kick.");
  2184.     TextDrawDestroy(VoteKick);
  2185.     return 1;
  2186. }
  2187.  
  2188. GetPlayersOnServer()
  2189. {
  2190.     new count;
  2191.     for(new x=0; x< MAX_PLAYERS; x++)
  2192.     {
  2193.         if(IsPlayerConnected(x))
  2194.         {
  2195.             count++;
  2196.         }
  2197.     }
  2198.     return count;
  2199. }
  2200. //------------------------------------------------------------------------------
  2201. COMMAND:buildingjump(playerid, params[])
  2202.     {
  2203.     SetPlayerInterior(playerid,0);
  2204.     if (GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
  2205.     {
  2206.         LinkVehicleToInterior(GetPlayerVehicleID(playerid),0);
  2207.         SetVehiclePos(GetPlayerVehicleID(playerid),3335.7023,809.5499,8.0119);
  2208.         SetVehicleZAngle(GetPlayerVehicleID(playerid),221.976);
  2209.     }
  2210.     else
  2211.     {
  2212.         SetPlayerPos(playerid,3335.7023,809.5499,8.0119);
  2213.         SetPlayerFacingAngle(playerid,221.976);
  2214.     }
  2215.     SendClientMessage(playerid,COLOR_BLUE,"You have been Teleported to Building Jump.");
  2216.     new string3[70];
  2217.     new name[MAX_PLAYER_NAME];
  2218.     GetPlayerName(playerid, name, sizeof(name));
  2219.     format(string3, sizeof(string3), "%s(%d) has gone to Building Jump. (/buildingjump)", name,playerid);
  2220.     SendClientMessageToAll(yellow, string3);
  2221.     return 1;
  2222. }
  2223. COMMAND:ultrastunt(playerid, params[])
  2224.     {
  2225.     SetPlayerInterior(playerid,0);
  2226.     if (GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
  2227.     {
  2228.         LinkVehicleToInterior(GetPlayerVehicleID(playerid),0);
  2229.         SetVehiclePos(GetPlayerVehicleID(playerid),-3074.2168,2389.9021,11.5788);
  2230.         SetVehicleZAngle(GetPlayerVehicleID(playerid),221.976);
  2231.     }
  2232.     else
  2233.     {
  2234.         SetPlayerPos(playerid,-3074.2168,2389.9021,11.5788);
  2235.         SetPlayerFacingAngle(playerid,221.976);
  2236.     }
  2237.     SendClientMessage(playerid,COLOR_BLUE,"You have been Teleported to Ultra Stunt.");
  2238.     new string3[70];
  2239.     new name[MAX_PLAYER_NAME];
  2240.     GetPlayerName(playerid, name, sizeof(name));
  2241.     format(string3, sizeof(string3), "%s(%d) has gone to Ultra Stunt. (/ultrastunt)", name,playerid);
  2242.     SendClientMessageToAll(yellow, string3);
  2243.     return 1;
  2244. }
  2245. COMMAND:rollercoaster(playerid, params[])
  2246.     {
  2247.     SetPlayerInterior(playerid,0);
  2248.     if (GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
  2249.     {
  2250.         LinkVehicleToInterior(GetPlayerVehicleID(playerid),0);
  2251.         SetVehiclePos(GetPlayerVehicleID(playerid),27.9113,-894.5089,1762.4447);
  2252.         SetVehicleZAngle(GetPlayerVehicleID(playerid),221.976);
  2253.     }
  2254.     else
  2255.     {
  2256.         SetPlayerPos(playerid,27.9113,-894.5089,1762.4447);
  2257.         SetPlayerFacingAngle(playerid,221.976);
  2258.     }
  2259.     SendClientMessage(playerid,COLOR_BLUE,"You have been Teleported to Roller Coaster.");
  2260.     new string3[70];
  2261.     new name[MAX_PLAYER_NAME];
  2262.     GetPlayerName(playerid, name, sizeof(name));
  2263.     format(string3, sizeof(string3), "%s(%d) has gone to Roller Coaster. (/rollercoaster)", name,playerid);
  2264.     SendClientMessageToAll(yellow, string3);
  2265.     return 1;
  2266. }
  2267. // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2268. // Rainbow
  2269. //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2270. /*COMMAND:rainbow(playerid, params[])
  2271. {
  2272.     #pragma unused params
  2273.     new vehid = GetPlayerVehicleID(playerid);
  2274.     if(!IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid, ADMIN_RED, "You must be in a vehicle to use this command!");
  2275.     else if(On[vehid] == 1)
  2276.     {
  2277.         SendClientMessage(playerid, COLOR_GREEN, "Rainbow mod disabled!");
  2278.         On[vehid] = 0;
  2279.     }
  2280.     else
  2281.     {
  2282.         SendClientMessage(playerid, COLOR_GREEN, "Rainbow mod enabled!");
  2283.         On[vehid] = 1;
  2284.     }
  2285.     return 1;
  2286. }*/
  2287. //------------------------------------------------------------------------------
  2288.  
  2289. public OnPlayerRequestClass(playerid, classid)
  2290. {
  2291.     SetGameModeText("Race/Stunt/DM/MiniGame/Drift/Drag/Freeroam");
  2292.     gPlayerClass[playerid] = classid;
  2293.  
  2294.     switch (classid) {
  2295.  
  2296.             case 0:
  2297.  
  2298.             {
  2299.                 gTeam[playerid] = TEAM_COPS;
  2300.                 GameTextForPlayer(playerid, "~g~Cops", 1000, 6);
  2301.                 ApplyAnimation(playerid,"DANCING","dance_loop", 4.1,1,1,1,1,1);
  2302.  
  2303.             }
  2304.  
  2305.             case 1:
  2306.  
  2307.             {
  2308.                 gTeam[playerid] = TEAM_ARMY;
  2309.                 GameTextForPlayer(playerid, "~p~Army", 1000, 6);
  2310.                 ApplyAnimation(playerid,"DANCING","dance_loop", 4.1,1,1,1,1,1);
  2311.             }
  2312.  
  2313.             case 2:
  2314.  
  2315.             {
  2316.                 gTeam[playerid] = TEAM_RICH;
  2317.                 GameTextForPlayer(playerid, "~y~Rich", 1000, 6);
  2318.                 ApplyAnimation(playerid,"DANCING","dance_loop", 4.1,1,1,1,1,1);
  2319.             }
  2320.  
  2321.             case 3:
  2322.  
  2323.             {
  2324.                 gTeam[playerid] = TEAM_WORKERS;
  2325.                 GameTextForPlayer(playerid, "~b~~h~~h~Workers", 1000, 6);
  2326.                 ApplyAnimation(playerid,"DANCING","dance_loop", 4.1,1,1,1,1,1);
  2327.  
  2328.             }
  2329.             case 4:
  2330.  
  2331.             {
  2332.                 gTeam[playerid] = TEAM_FARMERS;
  2333.                 GameTextForPlayer(playerid, "~y~~h~~h~Farmers", 1000, 6);
  2334.                 ApplyAnimation(playerid,"DANCING","dance_loop", 4.1,1,1,1,1,1);
  2335.  
  2336.             }
  2337.             case 5:
  2338.  
  2339.             {
  2340.                 gTeam[playerid] = TEAM_MEDICS;
  2341.                 GameTextForPlayer(playerid, "~r~~r~~r~Medics", 1000, 6);
  2342.                 ApplyAnimation(playerid,"DANCING","dance_loop", 4.1,1,1,1,1,1);
  2343.  
  2344.             }
  2345.             case 6:
  2346.  
  2347.             {
  2348.                 gTeam[playerid] = TEAM_FIREMEN;
  2349.                 GameTextForPlayer(playerid, "~y~~h~~h~FireMen", 1000, 6);
  2350.                 ApplyAnimation(playerid,"DANCING","dance_loop", 4.1,1,1,1,1,1);
  2351.  
  2352.             }
  2353.             case 7:
  2354.  
  2355.             {
  2356.                 gTeam[playerid] = TEAM_TRAIDS;
  2357.                 GameTextForPlayer(playerid, "~b~Traids", 1000, 6);
  2358.                 ApplyAnimation(playerid,"DANCING","dance_loop", 4.1,1,1,1,1,1);
  2359.  
  2360.             }
  2361.             case 8:
  2362.  
  2363.             {
  2364.                 gTeam[playerid] = TEAM_STUNT;
  2365.                 GameTextForPlayer(playerid, "~w~Stunt", 1000, 6);
  2366.                 ApplyAnimation(playerid,"DANCING","dance_loop", 4.1,1,1,1,1,1);
  2367.  
  2368.             }
  2369.  
  2370.  
  2371.  
  2372.     }
  2373.     SetPlayerInterior(playerid,17);
  2374.     SetPlayerPos(playerid,486.0409, -9.4562, 1000.6719);
  2375.     SetPlayerFacingAngle(playerid, 137.9666);
  2376.     SetPlayerCameraPos(playerid, 483.809051, -13.435981, 1000.679687);
  2377.     SetPlayerCameraLookAt(playerid, 486.0409, -9.4562, 1000.6719);
  2378.     ApplyAnimation(playerid,"DANCING","dance_loop", 4.1,1,1,1,1,1);
  2379.     return 1;
  2380. }
  2381. public SetPlayerToTeamColor(playerid)
  2382. {
  2383.     if(gTeam[playerid] == TEAM_COPS) {
  2384.         SetPlayerColor(playerid,COLOR_BLUE);
  2385.     } else if(gTeam[playerid] == TEAM_ARMY) {
  2386.         SetPlayerColor(playerid,COLOR_GREEN);
  2387.     } else if(gTeam[playerid] == TEAM_RICH) {
  2388.         SetPlayerColor(playerid,COLOR_SAND);
  2389.     } else if(gTeam[playerid] == TEAM_WORKERS) {
  2390.         SetPlayerColor(playerid,COLOR_GREY);
  2391.     } else if(gTeam[playerid] == TEAM_FARMERS) {
  2392.         SetPlayerColor(playerid,COLOR_MAROON);
  2393.     } else if(gTeam[playerid] == TEAM_MEDICS) {
  2394.         SetPlayerColor(playerid,COLOR_PURPLE);
  2395.     } else if(gTeam[playerid] == TEAM_FIREMEN) {
  2396.         SetPlayerColor(playerid,COLOR_ORANGE);
  2397.     } else if(gTeam[playerid] == TEAM_TRAIDS) {
  2398.         SetPlayerColor(playerid,COLOR_RED);
  2399.     } if(gTeam[playerid] == TEAM_STUNT) {
  2400.         SetPlayerColor(playerid,COLOR_WHITE);
  2401.     }
  2402. }
  2403. public GameModeExitFunc()
  2404. {
  2405.     GameModeExit();
  2406.     KillTimer(TimerA);
  2407.     KillTimer(TimerB);
  2408.     KillTimer(TimerC);
  2409.     return 1;
  2410. }
  2411.  
  2412. Float:GetPlayerTheoreticAngle(i)
  2413. {
  2414.         new Float:sin;
  2415.         new Float:dis;
  2416.         new Float:angle2;
  2417.         new Float:x,Float:y,Float:z;
  2418.         new Float:tmp3;
  2419.         new Float:tmp4;
  2420.         new Float:MindAngle;
  2421.  
  2422.         if(IsPlayerConnected(i)){
  2423.  
  2424.                 GetPlayerPos(i,x,y,z);
  2425.  
  2426.                 dis = floatsqroot(floatpower(floatabs(floatsub(x,ppos[i][0])),2)+floatpower(floatabs(floatsub(y,ppos[i][1])),2));
  2427.  
  2428.                 if(IsPlayerInAnyVehicle(i)){GetVehicleZAngle(GetPlayerVehicleID(i), angle2);}else{GetPlayerFacingAngle(i, angle2);}
  2429.  
  2430.                 if(x>ppos[i][0]){tmp3=x-ppos[i][0];}else{tmp3=ppos[i][0]-x;}
  2431.                 if(y>ppos[i][1]){tmp4=y-ppos[i][1];}else{tmp4=ppos[i][1]-y;}
  2432.  
  2433.                 if(ppos[i][1]>y && ppos[i][0]>x){
  2434.                     sin = asin(tmp3/dis);
  2435.                     MindAngle = floatsub(floatsub(floatadd(sin, 90), floatmul(sin, 2)), -90.0);
  2436.                 }
  2437.  
  2438.                 if(ppos[i][1]<y && ppos[i][0]>x){
  2439.                     sin = asin(tmp3/dis);
  2440.                     MindAngle = floatsub(floatadd(sin, 180), 180.0);
  2441.                 }
  2442.  
  2443.                 if(ppos[i][1]<y && ppos[i][0]<x){
  2444.                     sin = acos(tmp4/dis);
  2445.                     MindAngle = floatsub(floatadd(sin, 360), floatmul(sin, 2));
  2446.                 }
  2447.  
  2448.                 if(ppos[i][1]>y && ppos[i][0]<x){
  2449.                     sin = asin(tmp3/dis);
  2450.                     MindAngle = floatadd(sin, 180);
  2451.                 }
  2452.         }
  2453.  
  2454.         if(MindAngle == 0.0){return angle2;}else{return MindAngle;}
  2455. }
  2456.  
  2457. public DriftExit(playerid){
  2458.         PlayerDriftCancellation[playerid] = 0;
  2459.  
  2460.          ////////////////////////////////////////////////////
  2461.         new Float:h;
  2462.         GetVehicleHealth(GetPlayerVehicleID(playerid),h);
  2463.         if(DriftPointsNow[playerid]>70 && DriftPointsNow[playerid]<10000 && h==HealthInit[playerid]) GivePlayerMoney(playerid,DriftPointsNow[playerid]*DriftBonus[playerid]);
  2464.         TextDrawHideForPlayer(playerid,TDLabels[0]);
  2465.         TextDrawHideForPlayer(playerid,TDLabels[1]);
  2466.         TextDrawHideForPlayer(playerid,TDLabels[2]);
  2467.         TextDrawHideForPlayer(playerid,TDValueDrift[playerid]);
  2468.         TextDrawHideForPlayer(playerid,TDValueBonus[playerid]);
  2469.         TextDrawHideForPlayer(playerid,TDValueCash[playerid]);
  2470.         DriftBonus[playerid]=1;
  2471.         AutoFixBool[playerid]=true;
  2472.         SetVehicleHealth(GetPlayerVehicleID(playerid),HealthInit[playerid]);
  2473.         ////////////////////////////////////////////////////
  2474.  
  2475.         DriftPointsNow[playerid] = 0;
  2476. }
  2477.  
  2478. Float:ReturnPlayerAngle(playerid){
  2479.         new Float:Ang;
  2480.         if(IsPlayerInAnyVehicle(playerid))GetVehicleZAngle(GetPlayerVehicleID(playerid), Ang); else GetPlayerFacingAngle(playerid, Ang);
  2481.         return Ang;
  2482. }
  2483.  
  2484. public Drift(){
  2485.         new Float:Angle1, Float:Angle2, Float:BySpeed;
  2486.  
  2487.         new Float:SpeedX;
  2488.         for(new g=0;g<200;g++){
  2489.                 GetPlayerPos(g, X, Y, Z);
  2490.                 SpeedX = floatsqroot(floatadd(floatadd(floatpower(floatabs(floatsub(X,SavedPos[ g ][ sX ])),2),floatpower(floatabs(floatsub(Y,SavedPos[ g ][ sY ])),2)),floatpower(floatabs(floatsub(Z,SavedPos[ g ][ sZ ])),2)));
  2491.                 Angle1 = ReturnPlayerAngle(g);
  2492.                 Angle2 = GetPlayerTheoreticAngle(g);
  2493.                 BySpeed = floatmul(SpeedX, 12);
  2494.                 if(IsPlayerInAnyVehicle(g) && GetVType(GetPlayerVehicleID(g)) && floatabs(floatsub(Angle1, Angle2)) > DRIFT_MINKAT && floatabs(floatsub(Angle1, Angle2)) < DRIFT_MAXKAT && BySpeed > DRIFT_SPEED){
  2495.                         if(PlayerDriftCancellation[g] > 0)KillTimer(PlayerDriftCancellation[g]);
  2496.                         PlayerDriftCancellation[g] = 0;
  2497.                         DriftPointsNow[g] += floatval( floatabs(floatsub(Angle1, Angle2)) * 3 * (BySpeed*0.1) )/10;
  2498.                         PlayerDriftCancellation[g] = SetTimerEx("DriftExit", 3000, 0, "d", g);
  2499.                 }
  2500.  
  2501.                 if(DriftPointsNow[g] > 70 && DriftPointsNow[g]<10000){
  2502.  
  2503.                     if(DriftPointsNow[g]<200){
  2504.                         DriftBonus[g]=1;
  2505.                     }
  2506.                     if(DriftPointsNow[g]>=200 && DriftPointsNow[g]<500){
  2507.                         DriftBonus[g]=2;
  2508.                     }
  2509.                     if(DriftPointsNow[g]>=500 && DriftPointsNow[g]<1000){
  2510.                         DriftBonus[g]=3;
  2511.                     }
  2512.                     if(DriftPointsNow[g]>=1000 && DriftPointsNow[g]<1500){
  2513.                         DriftBonus[g]=4;
  2514.                     }
  2515.                     if(DriftPointsNow[g]>=1500){
  2516.                         DriftBonus[g]=5;
  2517.                     }
  2518.  
  2519.                     TextDrawShowForPlayer(g,TDLabels[0]);
  2520.                     TextDrawShowForPlayer(g,TDLabels[1]);
  2521.                     TextDrawShowForPlayer(g,TDLabels[2]);
  2522.  
  2523.                     TextDrawShowForPlayer(g,TDValueDrift[g]);
  2524.                     TextDrawShowForPlayer(g,TDValueBonus[g]);
  2525.                     TextDrawShowForPlayer(g,TDValueCash[g]);
  2526.  
  2527.                     new DPs[128],DBn[128],Cash[128],csh;
  2528.  
  2529.                     valstr(DPs,DriftPointsNow[g],false);
  2530.                     format(DBn,sizeof(DBn),"X%i",DriftBonus[g]);
  2531.                     csh=DriftPointsNow[g]*DriftBonus[g];
  2532.                     format(Cash,sizeof(Cash),"$%i",csh);
  2533.  
  2534.                     TextDrawSetString(TDValueDrift[g],DPs);
  2535.                     TextDrawSetString(TDValueBonus[g],DBn);
  2536.                     TextDrawSetString(TDValueCash[g],Cash);
  2537.                     ////////////////////////////////////////
  2538.                 }
  2539.                 SavedPos[ g ][ sX ] = X;
  2540.                 SavedPos[ g ][ sY ] = Y;
  2541.                 SavedPos[ g ][ sZ ] = Z;
  2542.         }
  2543. }
  2544.  
  2545. public AngleUpdate(){
  2546.         for(new g=0;g<=MAX_PLAYERS;g++){
  2547.                 new Float:x, Float:y, Float:z;
  2548.                 if(IsPlayerInAnyVehicle(g))GetVehiclePos(GetPlayerVehicleID(g), x, y, z); else GetPlayerPos(g, x, y, z);
  2549.                 ppos[g][0] = x;
  2550.                 ppos[g][1] = y;
  2551.                 ppos[g][2] = z;
  2552.         }
  2553. }
  2554.  
  2555. floatval(Float:val){
  2556.         new str[256];
  2557.         format(str, 256, "%.0f", val);
  2558.         return todec(str);
  2559. }
  2560.  
  2561. todec(str[]){
  2562.         return strval(str);
  2563. }
  2564.  
  2565. LoadTextDraws(){
  2566.     TDLabels[0]=TextDrawCreate(Label_X,TD_Y,"Drift Points");
  2567.     TextDrawColor(TDLabels[0],COLOR_Label);
  2568.     TextDrawSetShadow(TDLabels[0],0);
  2569.     TextDrawSetOutline(TDLabels[0],1);
  2570.     TextDrawLetterSize(TDLabels[0],0.5,2);
  2571.     TextDrawBackgroundColor(TDLabels[0],green);
  2572.     TextDrawFont(TDLabels[0],1);
  2573.  
  2574.     TDLabels[1]=TextDrawCreate(Label_X,TD_Y+50,"Drift Bonus");
  2575.     TextDrawColor(TDLabels[1],COLOR_Label);
  2576.     TextDrawSetShadow(TDLabels[1],0);
  2577.     TextDrawSetOutline(TDLabels[1],1);
  2578.     TextDrawLetterSize(TDLabels[1],0.5,2);
  2579.     TextDrawBackgroundColor(TDLabels[1],green);
  2580.     TextDrawFont(TDLabels[1],1);
  2581.  
  2582.     TDLabels[2]=TextDrawCreate(Label_X,TD_Y+100,"Drift Cash");
  2583.     TextDrawColor(TDLabels[2],COLOR_Label);
  2584.     TextDrawSetShadow(TDLabels[2],0);
  2585.     TextDrawSetOutline(TDLabels[2],1);
  2586.     TextDrawLetterSize(TDLabels[2],0.5,2);
  2587.     TextDrawBackgroundColor(TDLabels[2],green);
  2588.     TextDrawFont(TDLabels[2],1);
  2589.  
  2590.     new i;
  2591.     for(i=0;i<=MAX_PLAYERS;i++){
  2592.         TDValueDrift[i]=TextDrawCreate(Value_X,TD_Y+20,"0");
  2593.         TextDrawColor(TDValueDrift[i],COLOR_Value);
  2594.         TextDrawSetShadow(TDValueDrift[i],0);
  2595.         TextDrawSetOutline(TDValueDrift[i],1);
  2596.         TextDrawLetterSize(TDValueDrift[i],0.5,2);
  2597.         TextDrawBackgroundColor(TDValueDrift[i],COLOR_ValueOut);
  2598.         TextDrawFont(TDValueDrift[i],3);
  2599.  
  2600.         TDValueBonus[i]=TextDrawCreate(Value_X,TD_Y+70,"X1");
  2601.         TextDrawColor(TDValueBonus[i],COLOR_Value);
  2602.         TextDrawSetShadow(TDValueBonus[i],0);
  2603.         TextDrawSetOutline(TDValueBonus[i],1);
  2604.         TextDrawLetterSize(TDValueBonus[i],0.5,2);
  2605.         TextDrawBackgroundColor(TDValueBonus[i],COLOR_ValueOut);
  2606.         TextDrawFont(TDValueBonus[i],3);
  2607.  
  2608.         TDValueCash[i]=TextDrawCreate(Value_X,TD_Y+120,"$0");
  2609.         TextDrawColor(TDValueCash[i],COLOR_Value);
  2610.         TextDrawSetShadow(TDValueCash[i],0);
  2611.         TextDrawSetOutline(TDValueCash[i],1);
  2612.         TextDrawLetterSize(TDValueCash[i],0.5,2);
  2613.         TextDrawBackgroundColor(TDValueCash[i],COLOR_ValueOut);
  2614.         TextDrawFont(TDValueCash[i],3);
  2615.     }
  2616.  
  2617.     return 1;
  2618. }
  2619.  
  2620. public CheckPlayerState(){
  2621.     new i,cs;
  2622.  
  2623.     for(i=0;i<=MAX_PLAYERS;i++){
  2624.         cs=GetPlayerState(i);
  2625.         if(DriftMode[i] && cs==PLAYER_STATE_DRIVER && DriftPointsNow[i]>70){
  2626.             new Float:h;
  2627.             GetVehicleHealth(GetPlayerVehicleID(i),h);
  2628.             if(h<HealthInit[i]){
  2629.                 KillTimer(DriftTimer[i]);
  2630.                 DriftExit(i);
  2631.                 GameTextForPlayer(i,"~n~~n~~n~~n~~n~~n~~n~~r~Vehicle Crashed !",800,5);
  2632.                 DriftMode[i]=false;
  2633.             }
  2634.         }
  2635.         if(cs==PLAYER_STATE_DRIVER && DriftMode[i]==false){
  2636.             if(GetVType(GetPlayerVehicleID(i))){
  2637.                 DriftMode[i]=true;
  2638.                 GetVehicleHealth(GetPlayerVehicleID(i),HealthInit[i]);
  2639.                 AutoFixBool[i]=false;
  2640.                 DriftTimer[i]=SetTimerEx("Drift", 200, true, "i", i);
  2641.             }
  2642.         }
  2643.         else if(cs!=PLAYER_STATE_DRIVER && DriftMode[i]==true){
  2644.             KillTimer(DriftTimer[i]);
  2645.             DriftMode[i]=false;
  2646.             AutoFixBool[i]=true;
  2647.         }
  2648.         else{}
  2649.     }
  2650.     return 1;
  2651. }
  2652.  
  2653. public AutoFix(){
  2654.     new i;
  2655.     for(i=0;i<=MAX_PLAYERS;i++){
  2656.         if(AutoFixBool[i] && IsPlayerInAnyVehicle(i)){
  2657.             SetVehicleHealth(GetPlayerVehicleID(i),HealthInit[i]);
  2658.         }
  2659.     }
  2660. }
  2661.  
  2662. GetVType(vid){
  2663.  
  2664.     new Convertibles[4]={480, 533, 439, 555};
  2665.     new Industrial[26]={499, 422, 482, 498, 609, 524, 578, 455, 403, 414, 582, 443, 514, 413, 515, 440, 543, 605, 459, 531, 408, 552, 478, 456, 554};
  2666.     new LowRider[8]={536, 575, 534, 567, 535, 566, 576, 412};
  2667.     new OffRoad[13]={568, 424, 573, 579, 400, 500, 444, 556, 557, 470, 489, 505, 595};
  2668.     new Service[19]={416, 433, 431, 438, 437, 523, 427, 490, 528, 407, 544, 596, 596, 597, 598, 599, 432, 601, 420};
  2669.     new Saloon[35]={445, 504, 401, 518, 527, 542, 507, 562, 585, 419, 526, 604, 466, 492, 474, 546, 517, 410, 551, 516, 467, 600, 426, 436, 547, 405, 580, 560, 550, 549, 540, 491, 529, 421};
  2670.     new Sports[20]={602, 429, 496, 402, 541, 415, 589, 587, 565, 494, 502, 503, 411, 559, 603, 475, 506, 451, 558, 477};
  2671.     new Wagons[5]={418, 404, 479, 458, 561};
  2672.  
  2673.     new modelid=GetVehicleModel(vid);
  2674.     new i;
  2675.     for(i=0;i<3;i++){
  2676.             if(Convertibles[i]==modelid) return 1;
  2677.     }
  2678.     for(i=0;i<25;i++){
  2679.             if(Industrial[i]==modelid) return 1;
  2680.     }
  2681.     for(i=0;i<7;i++){
  2682.             if(LowRider[i]==modelid) return 1;
  2683.     }
  2684.     for(i=0;i<12;i++){
  2685.             if(OffRoad[i]==modelid) return 1;
  2686.     }
  2687.     for(i=0;i<19;i++){
  2688.             if(Service[i]==modelid) return 1;
  2689.     }
  2690.     for(i=0;i<35;i++){
  2691.             if(Saloon[i]==modelid) return 1;
  2692.     }
  2693.     for(i=0;i<20;i++){
  2694.             if(Sports[i]==modelid) return 1;
  2695.     }
  2696.     for(i=0;i<5;i++){
  2697.             if(Wagons[i]==modelid) return 1;
  2698.     }
  2699.     return 0;
  2700. }
  2701.  
  2702. public OnGameModeInit()
  2703. {
  2704.     SendRconCommand("mapname SanAndreas");
  2705.     SendRconCommand("weburl www.gta-inferno.tk");
  2706.     SetGameModeText("Stunt/DM/MiniGame/Drift/Drag/Freeroam");
  2707.     SetTimer("SendMSG",30000,1);
  2708.     SetTimer("SetServerName",2000,1);//timer SetServerName, 5000 ms (5secs), looping true
  2709.     ShowPlayerMarkers(1);
  2710.     ShowNameTags(1);
  2711.     EnableStuntBonusForAll(1);
  2712.  
  2713.  
  2714.  
  2715. //Team Spawn Places & Weapons
  2716.     //COPS
  2717.     AddPlayerClass(285,-1594.2036,716.0620,-4.9063,273.1099, 4, 1, 25, 50, 29, 300);
  2718.     //ARMY
  2719.     AddPlayerClass(287,-1335.0159,487.8400,11.1875,178.4670, 31, 360, 26, 200, 23, 100);
  2720. //++++++++++++++++++++++++++RICH
  2721.     AddPlayerClass(233,-2662.1272,876.3647,79.7738,358.0241, 32, 360, 31, 250, 15, 1);
  2722. //+++++++++++++++++++++++++WORKERS
  2723.     AddPlayerClass(27,-2111.2927,158.3477,35.0792,357.9431, 24, 100, 27, 350, 6, 1);
  2724. //+++++++++++++++++++++++++FARMERS
  2725.     AddPlayerClass(200,-688.1036,943.9858,13.6328,359.4665, 28, 150, 33, 75, 5, 1);
  2726.     //MEDICS
  2727.     AddPlayerClass(275,-2675.1758,632.7332,14.4531,169.8774, 32, 360, 24, 100, 30, 260);
  2728.     //FIREMEN
  2729.     AddPlayerClass(277,-2026.9349,67.0510,28.6916,263.2600, 9, 1, 25, 100, 29, 250);
  2730.     //TRAIDS
  2731.     AddPlayerClass(294,-2187.9766,642.0545,49.4375,89.5823, 8, 1, 24, 100, 26, 260);
  2732.     //STUNT
  2733.     AddPlayerClass(217,-2730.6345,1345.1517,17.2706,273.4470,27,100,4,1,0,0);
  2734.  
  2735.    
  2736.  
  2737.     // Car Spawns
  2738.  //Drift 6
  2739.     AddStaticVehicle(411,2296.0557,1386.9115,42.5474,358.9629,90,106); // Drift 6 Veh
  2740.     AddStaticVehicle(451,2282.5959,1388.9009,42.5264,358.3844,51,90); // Drift 6 Veh
  2741.     AddStaticVehicle(522,2279.1201,1388.4993,42.3936,4.5294,75,3); // Drift 6 Veh
  2742.     AddStaticVehicle(506,2309.1843,1389.2344,42.5249,359.3457,57,104); // Drift 6 Veh
  2743.     AddStaticVehicle(560,2302.4702,1408.3011,42.4838,271.0350,1,255); // drift6 veh
  2744.  
  2745. //
  2746.     AddStaticVehicle(427,-1573.1011,712.0585,-5.0936,88.8965,0,1); //
  2747.     AddStaticVehicle(523,-1575.6327,752.0048,-5.6738,91.0276,0,0); //
  2748.     AddStaticVehicle(523,-1575.5959,749.9540,-5.6738,91.0276,0,0); //
  2749.     AddStaticVehicle(523,-1575.5504,747.4155,-5.6738,91.0276,0,0); //
  2750.     AddStaticVehicle(601,-1573.9761,722.4783,-5.4834,91.4207,1,1); //
  2751.     AddStaticVehicle(490,-1606.2762,732.6603,-5.1102,271.1123,0,0); //
  2752.     AddStaticVehicle(599,-1573.6008,730.7451,-5.0530,90.1259,0,1); //
  2753.     AddStaticVehicle(597,-1572.7026,738.6387,-5.4735,88.3203,0,1); //
  2754.     AddStaticVehicle(470,-1333.5718,449.8955,7.1806,270.6500,43,0); //
  2755.     AddStaticVehicle(470,-1333.5087,444.3299,7.1808,270.6500,43,0); //
  2756.     AddStaticVehicle(470,-1333.4562,439.6928,7.1809,270.6500,43,0); //
  2757.     AddStaticVehicle(433,-1225.1317,455.3934,7.6242,87.1089,43,0); //
  2758.     AddStaticVehicle(433,-1224.9518,458.9565,7.6242,87.1089,43,0); //
  2759.     AddStaticVehicle(433,-1224.7485,462.9807,7.6242,87.1089,43,0); //
  2760.     AddStaticVehicle(573,-2082.1628,178.5148,35.7051,268.2899,115,43); //
  2761.     AddStaticVehicle(573,-2082.3381,175.1001,35.7051,268.2899,115,43); //
  2762.     AddStaticVehicle(573,-2082.4099,172.7078,35.7051,268.2899,115,43); //
  2763.     AddStaticVehicle(573,-2082.4744,170.5609,35.7051,268.2899,115,43); //
  2764.     AddStaticVehicle(573,-2082.5688,167.4119,35.7051,268.2899,115,43); //
  2765.     AddStaticVehicle(406,-2127.8254,253.7796,37.0656,269.4318,1,1); //
  2766.     AddStaticVehicle(486,-2120.6699,264.0245,35.9713,4.5181,1,1); //
  2767.     AddStaticVehicle(478,-673.3409,944.4835,12.1295,269.9055,66,1); //
  2768.     AddStaticVehicle(478,-702.9569,944.2500,12.3741,89.4458,66,1); //
  2769.     AddStaticVehicle(532,-686.1566,978.4252,13.1166,1.1845,0,0); //
  2770.     AddStaticVehicle(495,-675.3767,963.2661,12.4820,88.0181,119,122); //
  2771.     AddStaticVehicle(495,-675.8998,968.9465,12.4808,88.1899,119,122); //
  2772.     AddStaticVehicle(495,-686.4150,969.2789,12.6737,88.1899,119,122); //
  2773.     AddStaticVehicle(495,-686.6185,962.8370,12.6788,88.1899,119,122); //
  2774.     AddStaticVehicle(448,-1808.6826,616.2928,34.7716,182.1345,3,6); //
  2775.     AddStaticVehicle(448,-1811.3905,616.1920,34.7716,182.1345,3,6); //
  2776.     AddStaticVehicle(448,-1813.7566,616.1039,34.7716,182.1345,3,6); //
  2777.     AddStaticVehicle(448,-1817.6935,616.1774,34.7736,182.1345,3,6); //
  2778.     AddStaticVehicle(448,-1820.5216,616.0721,34.7736,182.1345,3,6); //
  2779.     AddStaticVehicle(448,-1824.0836,615.9396,34.7736,182.1345,3,6); //
  2780.     AddStaticVehicle(482,-1834.7313,595.9672,35.2780,359.8256,48,48); //
  2781.     AddStaticVehicle(482,-1830.3599,595.9539,35.2780,359.8256,48,48); //
  2782.     AddStaticVehicle(482,-1824.4756,595.9359,35.2780,359.8256,48,48); //
  2783.     AddStaticVehicle(411,-2680.3582,868.1898,76.1780,0.5814,116,1); //
  2784.     AddStaticVehicle(411,-2668.5542,903.5589,79.3203,285.3606,116,1); //
  2785.     AddStaticVehicle(411,-2677.1677,901.0431,79.3510,280.2635,116,1); //
  2786.     AddStaticVehicle(411,-2692.7075,898.1335,79.3536,280.2720,116,1); //
  2787.     AddStaticVehicle(487,-2679.9141,860.0684,80.5486,357.0008,29,42); //
  2788.     AddStaticVehicle(416,-2659.1118,629.6276,14.6026,270.2384,1,3); //
  2789.     AddStaticVehicle(416,-2606.9570,607.8986,14.6073,180.9349,1,3); //
  2790.     AddPlayerClass(285,-2604.8420,597.9857,14.4531,181.1951,0,0,0,0,0,0); // elegy
  2791.     AddStaticVehicle(562,-2588.5327,622.2831,14.1752,270.6198,11,1); //
  2792.     AddStaticVehicle(562,-2572.9685,632.5116,13.8954,270.6198,11,1); //
  2793.     AddStaticVehicle(562,-2546.3992,622.1685,14.0346,270.6198,11,1); //
  2794.     AddStaticVehicle(480,-2546.3508,637.7484,14.2269,90.5774,12,12); //
  2795.     AddStaticVehicle(480,-2572.1807,632.6991,14.2321,270.5749,12,12); //
  2796.     AddStaticVehicle(480,-2589.1636,627.4868,14.2318,272.7360,12,12); //
  2797.     AddStaticVehicle(407,-2021.4147,84.1737,28.2314,269.2899,3,1); //
  2798.     AddStaticVehicle(407,-2021.3066,92.9112,28.2278,269.2899,3,1); //
  2799.     AddStaticVehicle(407,-2021.5278,75.0398,28.2351,269.2899,3,1); //
  2800.     AddStaticVehicle(550,-2206.5420,648.3783,49.2593,180.6965,15,15); //
  2801.     AddStaticVehicle(550,-2184.2783,645.9597,49.2571,88.2839,15,15); //
  2802.     AddStaticVehicle(550,-2195.6804,646.3010,49.2551,88.2839,15,15); //
  2803.     AddStaticVehicle(411,-1357.0570,-274.2186,13.8755,43.3387,123,1); //
  2804.     AddStaticVehicle(411,-1354.2697,-271.5883,13.8755,43.3387,123,1); //
  2805.     AddStaticVehicle(411,-1350.2401,-267.7857,13.8755,43.3387,123,1); //
  2806.     AddStaticVehicle(411,-1346.4601,-264.2185,13.8755,43.3387,123,1); //
  2807.     AddStaticVehicle(541,-1389.2517,-240.0763,13.7735,223.3967,58,8); //
  2808.     AddStaticVehicle(541,-1384.8372,-235.9020,13.7735,223.3967,58,8); //
  2809.     AddStaticVehicle(541,-1379.5337,-230.8872,13.7734,223.3967,58,8); //
  2810.     AddStaticVehicle(541,-1372.8385,-224.2552,13.7753,223.3967,58,8); //
  2811.     AddStaticVehicle(541,-1370.2032,-221.4607,13.7771,223.3967,58,8); //
  2812.     AddStaticVehicle(562,-1358.0973,-240.4174,13.8598,315.4322,35,1); //
  2813.     AddStaticVehicle(562,-1354.5288,-236.7954,13.8589,315.4195,35,1); //
  2814.     AddStaticVehicle(562,-1350.4526,-232.6597,13.8607,315.4196,35,1); //
  2815.     AddStaticVehicle(562,-1347.7930,-235.2805,13.8608,315.4196,35,1); //
  2816.     AddStaticVehicle(562,-1351.5958,-239.1399,13.8642,315.4195,35,1); //
  2817.     AddStaticVehicle(562,-1355.7328,-243.3377,13.8690,315.4195,35,1); //
  2818. //  AddStaticVehicle(562,-333.4285,1515.5099,75.0765,358.8512,17,1); //
  2819. //  AddStaticVehicle(562,-327.2280,1515.3859,75.0765,358.8512,17,1); //
  2820. //  AddStaticVehicle(562,-317.9517,1515.2003,75.0765,358.8512,17,1); //
  2821. //  AddStaticVehicle(562,-314.7780,1515.1368,75.0765,358.8512,17,1); //
  2822.     AddStaticVehicle(411,760.9025,-2529.2776,10.4294,89.9030,64,1); //
  2823.     AddStaticVehicle(562,861.5906,-2506.1206,10.4649,271.0932,35,1); //
  2824.     AddStaticVehicle(562,855.5150,-2523.6470,10.4635,181.1174,35,1); //
  2825.     AddStaticVehicle(562,820.2460,-2523.9666,10.4646,181.7300,35,1); //
  2826.     AddStaticVehicle(402,833.0634,-2513.4202,10.5786,0.9080,13,13); //
  2827.     AddStaticVehicle(402,820.1490,-2493.7393,10.5787,1.5857,13,13); //
  2828.     AddStaticVehicle(444,820.9183,-2466.3000,10.7416,0.4357,32,42); //
  2829.     AddStaticVehicle(541,801.4960,-2446.7673,9.9804,269.7304,58,8); //
  2830.     AddStaticVehicle(421,797.1646,-2468.0378,10.2115,89.4922,13,1); //
  2831.     AddStaticVehicle(420,769.9692,-2506.8384,10.4099,181.1413,0,0); //
  2832.     AddStaticVehicle(420,747.1281,-2586.6567,10.4099,89.1122,0,0); //
  2833.     AddStaticVehicle(420,696.9579,-2576.9292,10.4101,89.4390,0,0); //
  2834.     AddStaticVehicle(429,642.2761,-2631.1389,10.3669,179.4069,0,0); //
  2835.     AddStaticVehicle(560,646.2556,-2631.1711,10.3925,356.4649,9,39); //
  2836.     AddStaticVehicle(603,653.5237,-2631.1519,10.5257,357.5202,0,0); //
  2837.     AddStaticVehicle(487,721.2064,-2612.1794,11.0811,276.5895,0,0); //
  2838.     AddStaticVehicle(600,788.2097,-2648.8638,10.2811,0.7777,32,8); //
  2839.     AddStaticVehicle(406,821.8531,-2602.0293,12.3457,359.4247,1,1); //
  2840.     AddStaticVehicle(522,790.3207,-2706.7966,10.0838,270.1785,75,3); //
  2841.     AddStaticVehicle(522,790.1221,-2708.9929,10.0889,266.4365,75,3); //
  2842.     AddStaticVehicle(522,789.9946,-2711.0403,10.0889,266.4366,75,3); //
  2843.     AddStaticVehicle(522,789.8975,-2712.5994,10.0889,266.4366,75,3); //
  2844.     AddStaticVehicle(522,789.7502,-2714.9641,10.0889,266.4366,75,3); //
  2845.     AddStaticVehicle(452,872.3733,-2660.9895,-0.8239,359.0965,1,22); //
  2846.     AddStaticVehicle(452,871.1231,-2685.3977,-0.9698,358.7943,1,22); //
  2847.     AddStaticVehicle(452,869.8931,-2707.8057,-0.4728,357.1878,1,22); //
  2848.     AddStaticVehicle(452,871.6946,-2738.6396,-0.2127,356.1288,1,22); //
  2849.     AddStaticVehicle(470,817.3370,-2721.2900,12.4791,268.4345,0,0); //
  2850.     AddStaticVehicle(470,816.6985,-2744.6455,12.4798,268.4345,0,0); //
  2851.     AddStaticVehicle(547,760.5595,-2764.5874,10.1781,269.9479,0,0); //
  2852.     AddStaticVehicle(451,717.7635,-2754.2791,10.1724,271.3105,125,125); //
  2853.     AddStaticVehicle(558,700.4571,-2759.0232,10.0955,91.3982,116,1); //
  2854.     AddStaticVehicle(582,721.5889,-2708.0215,10.5768,359.3807,41,20); //
  2855.     AddStaticVehicle(597,1245.3037,-2040.1078,59.6152,181.0108,0,1); //
  2856.     AddStaticVehicle(411,-2343.4736,-1659.2391,483.4301,302.4656,123,1); //
  2857.     AddStaticVehicle(411,-2348.0469,-1652.0511,483.4301,302.4656,123,1); //
  2858.     AddStaticVehicle(411,-2352.1614,-1645.5842,483.4302,302.4656,123,1); //
  2859.     AddStaticVehicle(411,-2354.0356,-1642.6378,483.4302,302.4656,123,1); //
  2860.         //Way To Death
  2861.     AddStaticVehicle(541,1013.4863,2784.7273,1074.5000,90.0000,1,0); // Bullet
  2862.     AddStaticVehicle(541,1014.1976,2791.1343,1074.5000,90.0000,1,0); // Bullet
  2863.     AddStaticVehicle(541,1030.3352,2784.6333,1074.5000,90.0000,1,0); // Bullet
  2864.     AddStaticVehicle(541,1030.1847,2791.1851,1074.5000,90.0000,1,0); // Bullet
  2865.     AddStaticVehicle(541,1047.4824,2785.0417,1074.5000,90.0000,1,0); // Bullet
  2866.     AddStaticVehicle(541,1047.5262,2790.8459,1074.5000,90.0000,1,0); // Bullet
  2867.     AddStaticVehicle(541,1064.1064,2785.0645,1074.5000,90.0000,1,0); // Bullet
  2868.     AddStaticVehicle(541,1064.2322,2790.8184,1074.5000,90.0000,1,0); // Bullet
  2869.         //Drag Race
  2870.     AddStaticVehicle(451,1018.1115,-2328.1990,12.7970, 19.1895,1,1); // Turismo
  2871.     AddStaticVehicle(451,1021.9979,-2326.8132,12.7997, 15.1187,1,1); // Turismo
  2872.     AddStaticVehicle(451,1027.1621,-2325.0903,12.7985, 19.3656,1,1); // Turismo
  2873.     AddStaticVehicle(451,1032.7085,-2323.0239,12.8028, 16.1102,1,1); // Turismo
  2874.     AddStaticVehicle(451,1029.6615,-2312.4136,12.8002, 79.1068,1,1); // Turismo
  2875.         //MonsterCrash
  2876.     AddStaticVehicle(444,-2381.6616,2950.6799,362.3547,180.1227,1,1); // Monster
  2877.     AddStaticVehicle(444,-2381.6372,2939.5186,362.3547,180.1228,1,1); // Monster
  2878.     AddStaticVehicle(444,-2381.6123,2927.6519,362.3547,180.1228,1,1); // Monster
  2879.     AddStaticVehicle(444,-2381.5886,2916.4019,362.3547,180.1225,1,1); // Monster
  2880.     AddStaticVehicle(444,-2386.4470,2951.3674,362.3546,179.7106,1,1); // Monster
  2881.     AddStaticVehicle(444,-2386.5088,2939.0859,362.3547,179.7091,1,1); // Monster
  2882.     AddStaticVehicle(444,-2386.5664,2927.8965,362.3547,179.7215,1,1); // Monster
  2883.     AddStaticVehicle(444,-2386.6223,2916.2607,362.3547,179.7200,1,1); // Monster
  2884.         //LSTower
  2885.     AddStaticVehicle(522,1542.9153,-1361.9492,1882.5000,0.2570,3,6); // NRG500
  2886.     AddStaticVehicle(522,1544.7842,-1361.9364,1882.5000,0.2723,13,6); // NRG500
  2887.     AddStaticVehicle(522,1546.7435,-1361.9312,1882.5000,0.1157,14,36); // NRG500
  2888.     AddStaticVehicle(471,1548.6028,-1362.0868,1882.5000,0.0529,8,8); // Quad
  2889.     AddStaticVehicle(481,1550.7400,-1362.1753,1882.5000,359.2753,3,3); // Bike
  2890.         //UpsideDown
  2891.     AddStaticVehicle(411,361.7381,-80.0696,558.1525,269.7961,8,8); // Infernus
  2892.     AddStaticVehicle(411,372.4498,-80.1074,558.1525,269.7960,3,8); // Infernus
  2893.     AddStaticVehicle(411,383.7889,-80.1475,558.1524,269.7958,25,8); // Infernus
  2894.     AddStaticVehicle(411,361.0311,-85.0374,558.1525,269.1889,3,8); // Infernus
  2895.     AddStaticVehicle(411,373.0689,-85.2083,558.1524,269.1889,6,8); // Infernus
  2896.     AddStaticVehicle(411,384.1176,-85.3655,558.1525,269.1888,0,8); // Infernus
  2897.         //AquaPark
  2898.     AddStaticVehicle(493,253.6098,-1917.8197,-0.1049,180.9621,36,13); // Jetmax
  2899.     AddStaticVehicle(493,264.7177,-1917.2307,-0.1223,181.6459,36,13); // Jetmax
  2900.     AddStaticVehicle(493,275.6197,-1917.8173,-0.0792,180.5575,36,13); // Jetmax
  2901.     AddStaticVehicle(493,286.7505,-1917.6251,-0.1524,180.8557,36,13); // Jetmax
  2902.         //HugeJump
  2903.     AddStaticVehicle(522, -2061.8483886719, -267.88720703125, 34.980690002441, 0.000000, -1, -1); //vehicle (nrg-500) (1)
  2904.     AddStaticVehicle(522, -2065.84765625, -267.88671875, 34.980690002441, 0.000000, -1, -1); //vehicle (nrg-500) (2)
  2905.     AddStaticVehicle(522, -2063.84765625, -267.88671875, 34.980690002441, 0.000000, -1, -1); //vehicle (nrg-500) (3)
  2906.     AddStaticVehicle(522, -2055.8483886719, -267.88720703125, 34.980690002441, 0.000000, -1, -1); //vehicle (nrg-500) (4)
  2907.     AddStaticVehicle(522, -2059.84765625, -267.88671875, 34.980690002441, 0.000000, -1, -1); //vehicle (nrg-500) (5)
  2908.     AddStaticVehicle(522, -2057.84765625, -267.88671875, 34.980690002441, 0.000000, -1, -1); //vehicle (nrg-500) (6)
  2909.     AddStaticVehicle(522, -2041.8483886719, -267.88720703125, 34.980690002441, 0.000000, -1, -1); //vehicle (nrg-500) (7)
  2910.     AddStaticVehicle(522, -2053.84765625, -267.88671875, 34.980690002441, 0.000000, -1, -1); //vehicle (nrg-500) (8)
  2911.     AddStaticVehicle(522, -2051.84765625, -267.88671875, 34.980690002441, 0.000000, -1, -1); //vehicle (nrg-500) (9)
  2912.     AddStaticVehicle(522, -2049.84765625, -267.88671875, 34.980690002441, 0.000000, -1, -1); //vehicle (nrg-500) (10)
  2913.     AddStaticVehicle(522, -2047.84765625, -267.88671875, 34.980690002441, 0.000000, -1, -1); //vehicle (nrg-500) (11)
  2914.     AddStaticVehicle(522, -2045.84765625, -267.88671875, 34.980690002441, 0.000000, -1, -1); //vehicle (nrg-500) (12)
  2915.     AddStaticVehicle(522, -2043.84765625, -267.88671875, 34.980690002441, 0.000000, -1, -1); //vehicle (nrg-500) (13)
  2916.  
  2917. //------------------------------Weapons-------------------------------------------
  2918. CreatePickup(351, 15, 2280.3647,563.0795,16.2417);
  2919. //
  2920. CreatePickup(367, 15, -2480.6821289063,1443.5310058594,1.3636169433594);
  2921. //------------------------------------------------------------------------------
  2922. CreatePickup(350, 15, 2295.9907,608.6465,10.8203);
  2923. //------------------------------------------------------------------------------
  2924. CreatePickup(358, 15, 2255.0378,585.2465,21.1914);
  2925. //------------------------------------------------------------------------------
  2926. CreatePickup(372, 15, 2248.3215,570.4719,7.7802);
  2927. //------------------------------------------------------------------------------
  2928. CreatePickup(342, 15, 2261.6013,547.6295,17.8039);
  2929. //------------------------------------------------------------------------------
  2930. AddStaticPickup(1242, 15, 2290.2297,613.9958,10.9434, 0);
  2931. //---------------armor----------------------------------------------------------
  2932. AddStaticPickup(1242, 15, 2283.4067,613.5623,10.9434, 0);
  2933. //------------------------------------------------------------------------------
  2934.  
  2935.  
  2936. //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2937. //   Drift 1 Cars and Objects
  2938. //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2939.     AddStaticVehicle(522,-354.33709717,1522.19665527,75.22051239,0.00000000,-1,-1); //NRG-500
  2940.     AddStaticVehicle(522,-356.64721680,1522.44860840,75.22051239,0.00000000,-1,-1); //NRG-500
  2941.     AddStaticVehicle(522,-359.09082031,1522.52136230,75.22051239,0.00000000,-1,-1); //NRG-500
  2942.     AddStaticVehicle(522,-361.64065552,1522.98303223,75.22287750,0.00000000,-1,-1); //NRG-500
  2943.     AddStaticVehicle(522,-364.23681641,1522.93261719,75.22287750,0.00000000,-1,-1); //NRG-500
  2944.     AddStaticVehicle(522,-366.97662354,1522.66516113,75.22287750,0.00000000,-1,-1); //NRG-500
  2945.     AddStaticVehicle(560,-345.52655029,1513.64611816,75.16435242,0.00000000,-1,-1); //Sultan
  2946.     AddStaticVehicle(560,-339.67950439,1513.68054199,75.16435242,0.00000000,-1,-1); //Sultan
  2947.    
  2948.     new plate = AddStaticVehicle(562,-342.56250000,1513.72351074,75.11292267,0.00000000,-1,-1); //Elegy
  2949.     SetVehicleNumberPlate(plate, "Sufyan");
  2950.    
  2951.     new neon = CreateObject(18648,0,0,0,0,0,0,100.0);
  2952.     new neon2 = CreateObject(18648,0,0,0,0,0,0,100.0);
  2953.  
  2954.     AttachObjectToVehicle(neon, plate, 0.8, 0.0, -0.70, 0.0, 0.0, 0.0);
  2955.     AttachObjectToVehicle(neon2,plate, -0.8, 0.0, -0.70, 0.0, 0.0, 0.0);
  2956.  
  2957.     new plateh = AddStaticVehicle(415,-2723.3706,1360.5648,17.0430,0.1333,58,52); // harini Car
  2958.     SetVehicleNumberPlate(plateh, "Harini");
  2959.    
  2960.     AddStaticVehicle(587,-336.62982178,1514.31567383,75.16937256,0.00000000,-1,-1); //Euros
  2961.     AddStaticVehicle(602,-333.77755737,1514.08410645,75.25937653,0.00000000,-1,-1); //Alpha
  2962.     AddStaticVehicle(603,-330.29660034,1514.46057129,75.36205292,0.00000000,-1,-1); //Phoenix
  2963.     AddStaticVehicle(411,-327.26177979,1514.40002441,75.15937805,0.00000000,-1,-1); //Infernus
  2964.     AddStaticVehicle(411,-317.80700684,1513.98535156,75.15937805,0.00000000,-1,-1); //Infernus
  2965.     AddStaticVehicle(415,-324.13616943,1514.31860352,75.20889282,0.00000000,-1,-1); //Cheetah
  2966.     AddStaticVehicle(451,-321.07342529,1514.40441895,75.12374878,0.00000000,-1,-1); //Turismo
  2967.     AddStaticVehicle(451,-314.92089844,1513.90258789,75.12133026,0.00000000,-1,-1); //Turismo
  2968.     AddStaticVehicle(480,-282.03182983,1560.64929199,75.20937347,142.66394043,-1,-1); //Comet
  2969.     AddStaticVehicle(432,-343.82806396,1542.95605469,75.66183472,0.00000000,-1,-1); //Rhino
  2970.  
  2971.     CreateObject(978,-313.20214844,1507.41955566,75.40271759,0.00000000,0.00000000,0.00000000); //object(sub_roadright) (1)
  2972.     CreateObject(978,-322.26126099,1507.40722656,75.40271759,0.00000000,0.00000000,0.00000000); //object(sub_roadright) (2)
  2973.     CreateObject(978,-331.38717651,1507.44812012,75.40271759,0.00000000,0.00000000,0.00000000); //object(sub_roadright) (3)
  2974.     CreateObject(978,-340.60546875,1507.41174316,75.40271759,0.00000000,0.00000000,0.00000000); //object(sub_roadright) (4)
  2975.     CreateObject(978,-349.78039551,1507.39160156,75.40271759,0.00000000,0.00000000,0.00000000); //object(sub_roadright) (5)
  2976.     CreateObject(978,-359.07577515,1507.41345215,75.40271759,0.00000000,0.00000000,0.00000000); //object(sub_roadright) (6)
  2977.     CreateObject(978,-368.40713501,1507.42480469,75.40271759,0.00000000,0.00000000,0.00000000); //object(sub_roadright) (7)
  2978.     CreateObject(978,-377.60174561,1507.44262695,75.40271759,0.00000000,0.00000000,0.00000000); //object(sub_roadright) (8)
  2979.     CreateObject(978,-386.86349487,1507.42968750,75.40271759,0.00000000,0.00000000,0.00000000); //object(sub_roadright) (9)
  2980.     CreateObject(978,-395.95031738,1507.32519531,75.33045197,0.00000000,0.00000000,0.00000000); //object(sub_roadright) (10)
  2981.     CreateObject(978,-291.94403076,1512.48229980,75.40271759,0.00000000,0.00000000,222.00000000); //object(sub_roadright) (11)
  2982.     CreateObject(978,-285.16061401,1518.58593750,75.40271759,0.00000000,0.00000000,221.99523926); //object(sub_roadright) (12)
  2983.     CreateObject(978,-278.34106445,1524.74145508,75.40271759,0.00000000,0.00000000,221.99523926); //object(sub_roadright) (13)
  2984.     CreateObject(978,-271.53335571,1530.92163086,75.40271759,0.00000000,0.00000000,221.99523926); //object(sub_roadright) (14)
  2985.     CreateObject(978,-264.72036743,1537.18554688,75.40271759,0.00000000,0.00000000,221.99523926); //object(sub_roadright) (15)
  2986.     CreateObject(978,-258.03549194,1543.24121094,75.39250183,0.00000000,0.00000000,221.99523926); //object(sub_roadright) (16)
  2987.     CreateObject(1634,-261.62231445,1546.84765625,75.73672485,0.00000000,0.00000000,301.75000000); //object(landjump2) (2)
  2988.     CreateObject(978,-323.69418335,1534.54687500,75.19959259,0.00000000,0.00000000,0.00000000); //object(sub_roadright) (20)
  2989.     CreateObject(978,-314.49081421,1534.54687500,75.19959259,0.00000000,0.00000000,0.00000000); //object(sub_roadright) (21)
  2990.     CreateObject(978,-305.23800659,1534.54687500,75.19959259,0.00000000,0.00000000,0.00000000); //object(sub_roadright) (22)
  2991.     CreateObject(978,-296.08227539,1534.54687500,75.19959259,0.00000000,0.00000000,0.00000000); //object(sub_roadright) (23)
  2992.     CreateObject(978,-332.50616455,1534.51806641,75.19959259,0.00000000,0.00000000,0.00000000); //object(sub_roadright) (24)
  2993. //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2994. //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2995. //   OBJECTS ALL
  2996. //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2997.     CreateDynamicObject(13592, -257.75387573242, -43.431259155273, 11.662350654602, 0, 0, 260);
  2998.     CreateDynamicObject(13592, -250.7548828125, -45.736328125, 11.662350654602, 0, 0, 259.99694824219);
  2999.     CreateDynamicObject(13592, -243.93347167969, -47.941242218018, 11.662350654602, 0, 0, 259.99694824219);
  3000.     CreateDynamicObject(13592, -237.89288330078, -49.917385101318, 11.662350654602, 0, 0, 259.99694824219);
  3001.     CreateDynamicObject(13592, -138.06669616699, 147.80685424805, 12.445125579834, 0, 0, 259.99694824219);
  3002.     CreateDynamicObject(13592, -224.46484375, -54.373046875, 11.662350654602, 0, 0, 259.99694824219);
  3003.     CreateDynamicObject(1655, -222.58843994141, -62.435096740723, 3.417299747467, 2.9061279296875, 0, 170);
  3004.     CreateDynamicObject(1655, -223.65859985352, -68.343894958496, 7.3157682418823, 17.436492919922, 0, 169.99694824219);
  3005.     CreateDynamicObject(1655, -224.64431762695, -74.050743103027, 13.95762348175, 34.872039794922, 0, 169.99145507813);
  3006.     CreateDynamicObject(1655, -225.06819152832, -76.763931274414, 20.021926879883, 50.854248046875, 0, 169.99145507813);
  3007.     CreateDynamicObject(1655, -225.169921875, -77.623901367188, 27.81888961792, 69.740020751953, 0, 169.99145507813);
  3008.     CreateDynamicObject(7073, -234.68389892578, -35.620063781738, 12.731363296509, 0, 39.232666015625, 250);
  3009.     CreateDynamicObject(1655, -230.10702514648, -24.154270172119, 2.6953611373901, 355.64080810547, 0, 158.37542724609);
  3010.     CreateDynamicObject(7073, -246.38124084473, -60.997669219971, 15.041574478149, 0, 39.232177734375, 69.999389648438);
  3011.     CreateDynamicObject(1655, -250.11308288574, -74.807350158691, 2.6953611373901, 355.63842773438, 0, 341.10803222656);
  3012.     CreateDynamicObject(13641, -151.27015686035, 10.566868782043, 9.1921901702881, 352.74407958984, 2.9295959472656, 70.369689941406);
  3013.     CreateDynamicObject(13641, -148.38610839844, 22.179670333862, 12.946283340454, 352.74353027344, 2.9278564453125, 70.367431640625);
  3014.     CreateDynamicObject(13641, -145.22250366211, 34.086025238037, 17.133541107178, 352.74353027344, 2.9278564453125, 70.367431640625);
  3015.     CreateDynamicObject(1655, -189.82699584961, -73.840576171875, 2.8397488594055, 357.09362792969, 0, 169.99694824219);
  3016.     CreateDynamicObject(1655, -191.02935791016, -80.813407897949, 7.0269927978516, 17.431488037109, 0, 169.99145507813);
  3017.     CreateDynamicObject(1655, -191.90682983398, -86.084419250488, 13.235682487488, 34.866577148438, 0, 169.99145507813);
  3018.     CreateDynamicObject(1655, -192.4559173584, -89.37181854248, 20.888256072998, 52.301849365234, 0, 169.99145507813);
  3019.     CreateDynamicObject(1655, -192.54222106934, -89.782249450684, 29.407159805298, 75.549377441406, 0, 169.99145507813);
  3020.     CreateDynamicObject(1655, -192.06037902832, -87.128204345703, 37.781597137451, 85.561645507813, 180, 349.99145507813);
  3021.     CreateDynamicObject(1655, -191.19987487793, -82.114135742188, 44.567752838135, 66.671722412109, 179.99890136719, 349.98696899414);
  3022.     CreateDynamicObject(1655, -190.07008361816, -75.847549438477, 49.18811416626, 50.686798095703, 179.99652099609, 349.98355102539);
  3023.     CreateDynamicObject(12956, -165.81475830078, 56.999977111816, 5.3678750991821, 0, 0, 340);
  3024.     CreateDynamicObject(1655, -269.95974731445, -0.3955440223217, 2.8940670490265, 11.618041992188, 0, 78.7080078125);
  3025.     CreateDynamicObject(16304, -222.728515625, 85.0830078125, 5.4975070953369, 0, 0, 0);
  3026.     CreateDynamicObject(3363, -222.19982910156, 30.932586669922, 2.1171875, 0, 0, 20);
  3027.     CreateDynamicObject(16776, -206.52919006348, -70.637809753418, 2.1171875, 0, 0, 171.28155517578);
  3028.     CreateDynamicObject(7392, -181.63562011719, 183.84284973145, 11.667377471924, 0, 312.04467773438, 265.6376953125);
  3029.     CreateDynamicObject(1655, -191.876953125, 34.4970703125, 3.2729120254517, 11.618041992188, 0, 279.98657226563);
  3030.     CreateDynamicObject(1655, -163.27606201172, -54.764778137207, 2.8319573402405, 357.08862304688, 0, 229.99145507813);
  3031.     CreateDynamicObject(1655, -158.41555786133, -58.859241485596, 5.8640995025635, 8.713134765625, 0, 229.98779296875);
  3032.     CreateDynamicObject(1655, -153.90759277344, -62.667343139648, 10.917679786682, 26.148895263672, 0, 229.98229980469);
  3033.     CreateDynamicObject(1655, -150.76304626465, -65.386680603027, 18.137088775635, 47.943359375, 0, 229.98229980469);
  3034.     CreateDynamicObject(1655, -149.6473236084, -66.368537902832, 25.789663314819, 63.922515869141, 0, 229.98229980469);
  3035.     CreateDynamicObject(1655, -150.24871826172, -65.876335144043, 34.164150238037, 81.355224609375, 0, 229.98229980469);
  3036.     CreateDynamicObject(1655, -152.50736999512, -63.911659240723, 40.950305938721, 79.757202148438, 180, 49.982269287109);
  3037.     CreateDynamicObject(1655, -156.30967712402, -60.717334747314, 46.581371307373, 63.771545410156, 179.99780273438, 49.973388671875);
  3038.     CreateDynamicObject(7073, -133.14436340332, 115.03747558594, 10.565540313721, 355.22094726563, 56.969604492188, 61.65771484375);
  3039.     CreateDynamicObject(1655, -204.03942871094, 141.88540649414, 3.3104047775269, 357.08862304688, 0, 339.99145507813);
  3040.     CreateDynamicObject(1655, -196.0087890625, 139.0068359375, 3.3104047775269, 357.08862304688, 0, 339.98840332031);
  3041.     CreateDynamicObject(1655, -190.84014892578, 137.14398193359, 3.3104047775269, 357.08862304688, 0, 339.98840332031);
  3042.     CreateDynamicObject(1655, -183.22509765625, 134.39102172852, 3.3104047775269, 357.08862304688, 0, 339.98840332031);
  3043.     CreateDynamicObject(1655, -178.33203125, 132.6103515625, 3.3104047775269, 357.08862304688, 0, 339.98840332031);
  3044.     CreateDynamicObject(1655, -170.85546875, 129.8994140625, 3.3104047775269, 357.08862304688, 0, 339.98840332031);
  3045.     CreateDynamicObject(1337, -139.4521484375, 122.392578125, 2.9263801574707, 0, 0, 0);
  3046.     CreateDynamicObject(7073, 147.58047485352, 114.25188446045, 471.86242675781, 0, 0, 0);
  3047.     CreateDynamicObject(7073, 145.8603515625, 115.28002929688, 473.86505126953, 0, 0, 0);
  3048.     CreateDynamicObject(7073, 147.58090209961, 110.75007629395, 470.5725402832, 0, 0, 0);
  3049.     CreateDynamicObject(7073, 147.82211303711, 103.96284484863, 469.65438842773, 0, 0, 0);
  3050.     CreateDynamicObject(7073, 147.75230407715, 95.383392333984, 469.58828735352, 0, 0, 0);
  3051.     CreateDynamicObject(7073, 147.751953125, 95.3828125, 469.58828735352, 0, 0, 0);
  3052.     CreateDynamicObject(7073, 153.51113891602, 98.776901245117, 485.11898803711, 0, 0, 0);
  3053.     CreateDynamicObject(7073, 152.85284423828, 108.41270446777, 484.2633972168, 0, 0, 0);
  3054.     CreateDynamicObject(7073, 144.3681640625, 108.79913330078, 482.07440185547, 0, 0, 0);
  3055.     CreateDynamicObject(7073, 142.8759765625, 108.23082733154, 480.99243164063, 0, 0, 0);
  3056.     CreateDynamicObject(13641, -155.861328125, -3.3115234375, 3.7054524421692, 0, 0, 69.999389648438);
  3057.     CreateDynamicObject(7073, -271.1083984375, 43.2255859375, 9.0083198547363, 355.22094726563, 56.969604492188, 141.65771484375);
  3058.     CreateDynamicObject(7073, -115.14751434326, 120.93476867676, 10.565540313721, 355.21545410156, 56.964111328125, 164.38989257813);
  3059.     CreateDynamicObject(7073, -123.7398223877, 136.76986694336, 10.565540313721, 355.21545410156, 56.964111328125, 251.65525817871);
  3060.     CreateDynamicObject(7073, -141.17796325684, 130.70643615723, 9.6992111206055, 355.21545410156, 56.964111328125, 341.6552734375);
  3061.     CreateDynamicObject(1655, -139.37698364258, 100.56913757324, 2.4065856933594, 357.09234619141, 357.09014892578, 329.66918945313);
  3062.     CreateDynamicObject(1655, -99.525772094727, 118.63486480713, 2.4065856933594, 357.08862304688, 357.08862304688, 73.683166503906);
  3063.     CreateDynamicObject(1655, -120.42446136475, 152.16600036621, 2.4065856933594, 357.10830688477, 352.72387695313, 166.36499023438);
  3064.     CreateDynamicObject(1655, -155.01943969727, 134.41477966309, 2.4065856933594, 357.10510253906, 352.72155761719, 256.36038208008);
  3065.     CreateDynamicObject(13592, -231.0703125, -52.1962890625, 11.662350654602, 0, 0, 259.99694824219);
  3066.     CreateDynamicObject(13592, -144.40609741211, 149.77059936523, 12.445125579834, 0, 0, 259.99694824219);
  3067.     CreateDynamicObject(13592, -150.43377685547, 151.74496459961, 12.445125579834, 0, 0, 259.99694824219);
  3068.     CreateDynamicObject(1655, -150.80139160156, 168.48043823242, 5.7448935508728, 357.10360717773, 5.8197021484375, 340.2834777832);
  3069.     CreateDynamicObject(7392, -272.5458984375, 0.646484375, 4.8330993652344, 0, 312.04467773438, 349.99694824219);
  3070.     CreateDynamicObject(1655, -182.7698059082, 178.15292358398, 8.3789691925049, 357.09237670898, 357.0901184082, 359.84066772461);
  3071.     CreateDynamicObject(1655, -145.03625488281, -29.87825012207, 2.262197971344, 357.08862304688, 357.08862304688, 249.66674804688);
  3072.     CreateDynamicObject(1225, 2276.874, 599.225, 10.228, 0.0, 0.0, 0.0);
  3073.     CreateDynamicObject(1225, 2297.935, 599.396, 10.228, 0.0, 0.0, 0.0);
  3074.     CreateDynamicObject(1225, 2275.247, 600.263, 7.306, 0.0, 0.0, 0.0);
  3075.     CreateDynamicObject(1225, 2275.233, 599.885, 7.186, 0.0, 0.0, 0.0);
  3076.     CreateDynamicObject(1225, 2275.742, 599.169, 10.162, 0.0, 85.944, 0.0);
  3077.     CreateDynamicObject(1225, 2298.899, 599.272, 10.228, 0.0, 85.944, 0.0);
  3078.     CreateDynamicObject(2036, 2274.213, 599.217, 9.856, 0.0, 0.0, 0.0);
  3079.     CreateDynamicObject(2035, 2272.813, 599.169, 9.847, 0.0, 0.0, 0.0);
  3080.     CreateDynamicObject(2037, 2274.716, 598.782, 9.895, 0.0, 0.0, 0.0);
  3081.     CreateDynamicObject(2037, 2274.449, 600.266, 9.895, 0.0, 0.0, 0.0);
  3082.     CreateDynamicObject(2037, 2273.834, 600.263, 9.561, 0.0, 0.0, 0.0);
  3083.     CreateDynamicObject(2037, 2273.178, 600.263, 9.380, 0.0, 0.0, 0.0);
  3084.     CreateDynamicObject(2037, 2272.248, 600.263, 9.615, 0.0, 0.0, 0.0);
  3085.     CreateDynamicObject(2037, 2271.391, 600.749, 9.895, 0.0, 0.0, 0.0);
  3086.     CreateDynamicObject(2037, 2272.613, 601.745, 9.895, 0.0, 0.0, 0.0);
  3087.     CreateDynamicObject(2037, 2274.236, 602.667, 9.895, 0.0, 0.0, 0.0);
  3088.     CreateDynamicObject(2037, 2273.620, 601.502, 9.895, 0.0, 0.0, 0.0);
  3089.     CreateDynamicObject(2037, 2273.077, 600.263, 9.844, 0.0, 0.0, 0.0);
  3090.     CreateDynamicObject(2037, 2271.321, 600.726, 9.895, 0.0, 0.0, 0.0);
  3091.     CreateDynamicObject(2037, 2272.122, 602.383, 9.895, 0.0, 0.0, 0.0);
  3092.     CreateDynamicObject(2036, 2300.699, 599.403, 9.856, 0.0, 0.0, 0.0);
  3093.     CreateDynamicObject(2035, 2302.156, 599.304, 9.847, 0.0, 0.0, 0.0);
  3094.     CreateDynamicObject(3461, 2297.052, 603.453, 12.849, 0.0, 0.0, 0.0);
  3095.     CreateDynamicObject(3461, 2277.763, 603.457, 12.804, 0.0, 0.0, 0.0);
  3096.     CreateDynamicObject(8979, 2284.060, 584.296, 7.573, 0.0, 0.0, -90.241);
  3097.     CreateDynamicObject(8979, 2290.895, 584.402, 7.612, 0.0, 0.0, -90.241);
  3098.     CreateDynamicObject(2669, 2283.455, 614.302, 11.161, 0.0, 0.0, 0.0);
  3099.     CreateDynamicObject(2669, 2290.362, 614.232, 11.161, 0.0, 0.0, 0.0);
  3100.     CreateDynamicObject(3568, 2287.374, 623.734, 12.575, 0.0, 0.0, 88.522);
  3101.     CreateDynamicObject(3573, 2269.522, 594.723, 6.722, 0.0, 0.0, 0.0);
  3102.     CreateDynamicObject(3573, 2265.283, 586.406, 6.748, 0.0, 0.0, 89.381);
  3103.     CreateDynamicObject(3573, 2280.541, 586.643, 6.723, 0.0, 0.0, 0.0);
  3104.     CreateDynamicObject(3575, 2288.224, 574.529, 9.473, 0.0, 0.0, 0.0);
  3105.     CreateDynamicObject(3575, 2271.867, 569.943, 9.472, 0.0, 0.0, -89.381);
  3106.     CreateDynamicObject(3572, 2292.547, 586.529, 8.129, 0.0, 0.0, 0.0);
  3107.     CreateDynamicObject(3572, 2270.781, 587.748, 10.799, 0.0, 0.0, 0.0);
  3108.     CreateDynamicObject(3575, 2301.638, 582.361, 9.473, 0.0, 0.0, 89.381);
  3109.     CreateDynamicObject(3573, 2301.918, 591.656, 6.698, 0.0, 0.0, 0.0);
  3110.     CreateDynamicObject(2669, 2290.391, 614.186, 13.850, 0.0, 0.0, 179.622);
  3111.     CreateDynamicObject(2669, 2283.505, 614.245, 13.850, 0.0, 0.0, 179.622);
  3112.     CreateDynamicObject(8572, 2285.120, 617.865, 11.345, 0.0, 0.0, 180.482);
  3113.     CreateDynamicObject(8572, 2292.174, 617.899, 11.295, 0.0, 0.0, 180.482);
  3114.     CreateDynamicObject(10831, 2286.879, 621.108, 14.654, 0.0, 0.0, 0.0);
  3115.     CreateDynamicObject(3256, 2258.050, 585.121, 7.043, 0.0, 0.0, 0.0);
  3116.     CreateDynamicObject(16287, 2244.136, 553.936, 6.781, 0.0, 0.0, 0.0);
  3117.     CreateDynamicObject(16287, 2254.499, 565.065, 6.781, 0.0, 0.0, -91.960);
  3118.     CreateDynamicObject(16287, 2245.664, 576.756, 6.780, 0.0, 0.0, 0.0);
  3119.     CreateDynamicObject(3866, 2249.305, 559.658, 14.620, 0.0, 0.0, 90.241);
  3120.     CreateDynamicObject(3887, 2286.448, 554.466, 13.725, 0.0, 0.0, 90.241);
  3121.     CreateDynamicObject(3866, 2321.871, 556.942, 14.620, 0.0, 0.0, -179.622);
  3122.     CreateDynamicObject(3887, 2325.549, 586.546, 14.050, 0.0, 0.0, -178.763);
  3123.     CreateDynamicObject(5706, 2317.597, 614.025, 15.255, 0.0, 0.0, -179.622);
  3124.     CreateDynamicObject(3575, 2317.803, 582.195, 9.473, 0.0, 0.0, 89.381);
  3125.     CreateDynamicObject(3575, 2309.258, 567.416, 9.473, 0.0, 0.0, -91.100);
  3126.     CreateDynamicObject(3573, 2286.849, 564.137, 6.748, 0.0, 0.0, -90.241);
  3127.     CreateDynamicObject(3572, 2274.742, 560.629, 8.129, 0.0, 0.0, -90.241);
  3128.     CreateDynamicObject(3572, 2264.511, 558.113, 8.128, 0.0, 0.0, -180.482);
  3129.     CreateDynamicObject(3573, 2261.474, 570.174, 6.673, 0.0, 0.0, 180.482);
  3130.     CreateDynamicObject(3572, 2295.398, 572.104, 8.079, 0.0, 0.0, -180.482);
  3131.     CreateDynamicObject(3575, 2320.757, 552.038, 9.473, 0.0, 0.0, -89.381);
  3132.     CreateDynamicObject(14414, 2322.523, 581.770, 13.941, 0.0, 0.0, 91.100);
  3133.     CreateDynamicObject(13749, 2317.374, 560.132, 18.734, 0.0, 0.0, -33.518);
  3134.     CreateDynamicObject(11544, 2328.511, 565.099, 24.405, 0.0, 0.0, 182.201);
  3135.     CreateDynamicObject(11479, 2301.504, 558.659, 12.456, 0.0, 0.0, 0.0);
  3136.     CreateDynamicObject(11479, 2281.601, 579.212, 12.437, 0.0, 0.0, -178.763);
  3137.     CreateDynamicObject(3572, 2280.433, 582.913, 10.774, 0.0, 0.0, -89.381);
  3138.     CreateDynamicObject(8615, 2284.590, 588.920, 8.056, 0.0, 0.0, -180.482);
  3139.     CreateDynamicObject(8614, 2282.639, 582.937, 10.850, 0.0, 0.0, 91.100);
  3140.     CreateDynamicObject(8614, 2310.548, 591.788, 8.129, 0.0, 0.0, 90.241);
  3141.     CreateDynamicObject(3399, 2310.434, 586.460, 9.923, 0.0, 0.0, 0.0);
  3142.     CreateDynamicObject(974, 2326.595, 573.757, 17.022, -89.381, 1.719, 0.859);
  3143.     CreateDynamicObject(974, 2326.726, 586.569, 16.857, -89.381, 1.719, 94.538);
  3144.     CreateDynamicObject(974, 2326.054, 575.257, 12.157, -89.381, 1.719, 94.538);
  3145.     CreateDynamicObject(974, 2327.251, 588.000, 12.776, -89.381, 1.719, 94.538);
  3146.     CreateDynamicObject(974, 2284.742, 554.385, 16.490, -89.381, 1.719, 88.522);
  3147.     CreateDynamicObject(974, 2273.308, 554.489, 16.612, -89.381, 1.719, 88.522);
  3148.     CreateDynamicObject(974, 2274.359, 553.518, 11.862, -89.381, 1.719, 91.960);
  3149.     CreateDynamicObject(974, 2287.155, 553.547, 12.446, -89.381, 1.719, 91.960);
  3150.     CreateDynamicObject(5152, 2274.676, 558.623, 10.452, 0.0, -12.032, -89.381);
  3151.     CreateDynamicObject(5152, 2271.827, 563.496, 7.904, 0.0, -17.189, 0.0);
  3152.     CreateDynamicObject(969, 2292.886, 572.053, 15.408, -91.960, -0.859, -90.241);
  3153.     CreateDynamicObject(969, 2292.972, 563.665, 15.408, -91.960, -0.859, -97.116);
  3154.     CreateDynamicObject(974, 2290.116, 554.147, 15.952, -78.209, 0.0, 86.803);
  3155.     CreateDynamicObject(3453, 2232.486, 606.303, 12.820, 0.0, 0.0, -182.201);
  3156.     CreateDynamicObject(3452, 2259.593, 611.866, 12.820, 0.0, 0.0, -181.341);
  3157.     CreateDynamicObject(3452, 2226.713, 576.859, 12.768, 0.0, 0.0, -88.522);
  3158.     CreateDynamicObject(8417, 2218.590, 561.481, 1.805, 0.0, 91.100, 91.100);
  3159.     CreateDynamicObject(8417, 2217.171, 580.529, 1.806, 0.0, 91.100, 1.719);
  3160.     CreateDynamicObject(8417, 2226.497, 613.295, 1.729, 0.0, 91.100, -36.956);
  3161.     CreateDynamicObject(8417, 2252.985, 621.763, 1.706, 0.0, 91.100, -90.241);
  3162.     CreateDynamicObject(8417, 2334.997, 578.854, 6.817, 0.0, 90.241, 0.859);
  3163.     CreateDynamicObject(8417, 2335.257, 566.381, 6.817, 0.0, 90.241, 0.859);
  3164.     CreateDynamicObject(8417, 2295.171, 545.824, -3.820, 0.0, 90.241, 91.100);
  3165.     CreateDynamicObject(3572, 2257.733, 592.061, 8.128, 0.0, 0.0, -180.482);
  3166.     CreateDynamicObject(3572, 2248.280, 588.371, 8.129, 0.0, 0.0, -89.381);
  3167.     CreateDynamicObject(8417, 2334.752, 603.685, 6.831, 0.0, 90.241, 0.859);
  3168.     CreateDynamicObject(8417, 2320.408, 624.572, 6.906, 0.0, 91.100, -90.241);
  3169.     CreateDynamicObject(3515, 2286.992, 594.521, 5.801, 0.0, 0.0, 0.0);
  3170.     CreateDynamicObject(2780, 2257.311, 585.149, 24.158, 0.0, 0.0, 0.0);
  3171.     CreateDynamicObject(18450, 355.043100, -82.583000, 557.081600, 0.0000, 0.0000, 0.0000);
  3172.     CreateDynamicObject(4726, 1544.695600, -1356.250600, 1874.5605, 0.0000, 0.0000, 0.0000);
  3173.     CreateDynamicObject(18450, 1029.493530, 2787.852295, 1066.784424, 0.0000, 0.0000, 0.0000);
  3174.     CreateDynamicObject(18450, -2383.949463, 2945.699219, 360.635925, 0.0000, 0.0000, 269.7591);
  3175.     CreateDynamicObject(8040, -2693.54565430, 1345.44848633, 17.03621674, 0.00000000, 0.00000000, 0.00000000);
  3176.     CreateDynamicObject(16395, -2731.05468750, 1366.92431641, 78.54426575, 0.00000000, 0.00000000, 0.00000000);
  3177.     CreateDynamicObject(1219, -2836.69848633, 1366.83129883, 102.41063690, 22.00000000, 0.00000000, 102.00000000);
  3178.     CreateDynamicObject(1219, -2837.12841797, 1369.32177734, 102.56050873, 21.99462891, 0.00000000, 101.99710083);
  3179.     CreateDynamicObject(1219, -2837.71166992, 1366.63195801, 103.46905518, 21.99462891, 0.00000000, 101.99710083);
  3180.     CreateDynamicObject(1219, -2838.05371094, 1368.74365234, 103.61582184, 21.99462891, 0.00000000, 101.99707031);
  3181.     CreateDynamicObject(1334, -2837.74340820, 1368.87695312, 104.90267181, 0.00000000, 0.00000000, 102.00000000);
  3182.     CreateDynamicObject(1334, -2837.45483398, 1366.83312988, 104.76786804, 0.00000000, 0.00000000, 101.99707031);
  3183.     CreateDynamicObject(1632, -2634.67968750, 1365.17028809, 77.93257141, 22.00000000, 0.00000000, 262.00000000);
  3184.     CreateDynamicObject(8355, -2488.59960938, 1465.15625000, 0.36362076, 0.00000000, 0.00000000, 0.00000000);
  3185.     CreateDynamicObject(8355, -2450.13671875, 1474.27343750, 0.21041107, 0.00000000, 0.00000000, 0.00000000);
  3186.     CreateDynamicObject(8355, -2524.55883789, 1455.02221680, 0.19896698, 0.00000000, 0.00000000, 0.00000000);
  3187.     CreateDynamicObject(8355, -2562.60571289, 1457.67236328, 0.30589676, 0.00000000, 0.00000000, 0.00000000);
  3188.     CreateDynamicObject(8355, -2588.05273438, 1483.10656738, 0.00000000, 0.00000000, 0.00000000, 0.00000000);
  3189.     CreateDynamicObject(8355, -2414.00488281, 1480.17871094, 0.22004318, 0.00000000, 0.00000000, 0.00000000);
  3190.     CreateDynamicObject(8355, -2376.25488281, 1464.83398438, 0.00000000, 0.00000000, 0.00000000, 0.00000000);
  3191.     CreateDynamicObject(8355, -2339.39379883, 1476.50646973, 0.24427032, 0.00000000, 0.00000000, 0.00000000);
  3192.     CreateDynamicObject(8355, -2303.87304688, 1487.51660156, 0.06225204, 0.00000000, 0.00000000, 0.00000000);
  3193.     CreateDynamicObject(8355, -2304.60253906, 1395.86096191, 0.07773209, 0.00000000, 0.00000000, 0.00000000);
  3194.     CreateDynamicObject(9241, -2538.93286133, 1468.81738281, 2.25786591, 0.00000000, 0.00000000, 0.00000000);
  3195.     CreateDynamicObject(8355, -2624.40869141, 1496.51440430, 0.00000000, 0.00000000, 0.00000000, 0.00000000);
  3196.     CreateDynamicObject(8355, -2519.87109375, 1545.33398438, 0.09465981, 0.00000000, 0.00000000, 0.00000000);
  3197.     CreateDynamicObject(8355, -2552.14624023, 1533.63183594, 0.00000000, 0.00000000, 0.00000000, 0.00000000);
  3198.     CreateDynamicObject(1681, -2534.69921875, 1467.37170410, 6.06401587, 0.00000000, 0.00000000, 0.00000000);
  3199.     CreateDynamicObject(1632, -2506.71142578, 1469.64343262, 1.66373301, 0.00000000, 0.00000000, 92.00000000);
  3200.     CreateDynamicObject(8355, -2590.94628906, 1586.38928223, 0.00000000, 0.00000000, 0.00000000, 0.00000000);
  3201.     CreateDynamicObject(3763, -2570.12915039, 1602.56689453, 26.39089966, 0.00000000, 0.00000000, 0.00000000);
  3202.     CreateDynamicObject(16006, -2548.61108398, 1609.82031250, 0.00000000, 0.00000000, 0.00000000, 0.00000000);
  3203.     CreateDynamicObject(16000, -2521.07910156, 1612.18261719, 0.09465981, 0.00000000, 0.00000000, 0.00000000);
  3204.     CreateDynamicObject(3505, -2543.57788086, 1482.40002441, 0.52349091, 0.00000000, 0.00000000, 0.00000000);
  3205.     CreateDynamicObject(3505, -2543.58959961, 1452.57214355, 0.30589676, 0.00000000, 0.00000000, 0.00000000);
  3206.     CreateDynamicObject(3508, -2837.84082031, 1367.82421875, 105.85018921, 0.00000000, 0.00000000, 0.00000000);
  3207.     CreateDynamicObject(1632, -2537.96118164, 1546.83154297, 1.39477205, 0.00000000, 0.00000000, 262.00000000);
  3208.     CreateDynamicObject(8355, -2284.26904297, 1506.01843262, 0.06225204, 0.00000000, 0.00000000, 262.00000000);
  3209.     CreateDynamicObject(8355, -2227.48291016, 1498.19226074, 0.06225204, 0.00000000, 0.00000000, 301.99804688);
  3210.     CreateDynamicObject(8354, -2270.23608398, 1441.38977051, 0.00000000, 0.00000000, 0.00000000, 0.00000000);
  3211.     CreateDynamicObject(8355, -2147.58422852, 1547.61315918, 0.02900696, 0.00000000, 0.00000000, 301.99218750);
  3212.     CreateDynamicObject(8355, -2063.99340820, 1599.95385742, 0.00000000, 0.00000000, 0.00000000, 301.99218750);
  3213.     CreateDynamicObject(8355, -1968.19470215, 1659.94262695, 0.00000000, 0.00000000, 0.00000000, 301.99218750);
  3214.     CreateDynamicObject(8355, -1888.73901367, 1708.88354492, 0.00000000, 0.00000000, 0.00000000, 301.99218750);
  3215.     CreateDynamicObject(8355, -1781.85546875, 1773.44519043, 24.06701660, 22.00000000, 0.00000000, 301.99218750);
  3216.     CreateDynamicObject(16776, -2357.28369141, 1503.04138184, 0.72653002, 0.00000000, 0.00000000, 0.00000000);
  3217.     CreateDynamicObject(16776, -2355.46337891, 1475.82104492, 0.24427032, 0.00000000, 0.00000000, 191.00097656);
  3218.     CreateDynamicObject(1632, -2390.28149414, 1491.52136230, 1.30011225, 0.00000000, 0.00000000, 261.99645996);
  3219.     CreateDynamicObject(1632, -2332.02197266, 1492.24719238, 1.54438257, 0.00000000, 0.00000000, 102.00000000);
  3220.     CreateDynamicObject(8355, -2273.49829102, 1558.47290039, 0.00000000, 0.00000000, 0.00000000, 0.00000000);
  3221.     CreateDynamicObject(18228, -2233.34375000, 1544.35180664, 0.00000000, 0.00000000, 0.00000000, 0.00000000);
  3222.     CreateDynamicObject(18228, -2194.37060547, 1564.39648438, 0.00000000, 0.00000000, 0.00000000, 0.00000000);
  3223.     CreateDynamicObject(18228, -2163.08959961, 1587.52978516, 0.00000000, 0.00000000, 0.00000000, 0.00000000);
  3224.     CreateDynamicObject(18228, -2293.68237305, 1579.70800781, 0.00000000, 0.00000000, 0.00000000, 0.00000000);
  3225.     CreateDynamicObject(18228, -2147.75659180, 1511.86132812, 0.00000000, 0.00000000, 0.00000000, 0.00000000);
  3226.     CreateDynamicObject(18228, -2106.64379883, 1537.68164062, 0.00000000, 0.00000000, 0.00000000, 0.00000000);
  3227.     CreateDynamicObject(18228, -2066.31835938, 1563.21691895, 0.00000000, 0.00000000, 0.00000000, 0.00000000);
  3228.     CreateDynamicObject(18228, -2027.26379395, 1584.77929688, 0.00000000, 0.00000000, 0.00000000, 0.00000000);
  3229.     CreateDynamicObject(18228, -2124.74975586, 1611.45861816, 0.00000000, 0.00000000, 0.00000000, 0.00000000);
  3230.     CreateDynamicObject(18228, -2084.80444336, 1632.14526367, 0.00000000, 0.00000000, 0.00000000, 0.00000000);
  3231.     CreateDynamicObject(18227, -2161.43505859, 1458.53735352, 0.00000000, 0.00000000, 0.00000000, 0.00000000);
  3232.     CreateDynamicObject(18228, -2483.01586914, 1639.36437988, 2.29126740, 0.00000000, 0.00000000, 0.00000000);
  3233.     CreateDynamicObject(18228, -2480.45239258, 1587.90283203, 4.00324249, 0.00000000, 0.00000000, 222.00000000);
  3234.     CreateDynamicObject(8493, -2032.10729980, 1768.01953125, 16.83708382, 0.00000000, 0.00000000, 102.00000000);
  3235.     CreateDynamicObject(1231, -2197.39233398, 1499.02648926, 2.79264498, 0.00000000, 0.00000000, 0.00000000);
  3236.     CreateDynamicObject(1231, -2190.71435547, 1503.20288086, 2.79264498, 0.00000000, 0.00000000, 0.00000000);
  3237.     CreateDynamicObject(1231, -2183.18237305, 1507.76611328, 2.79264498, 0.00000000, 0.00000000, 0.00000000);
  3238.     CreateDynamicObject(1231, -2173.00878906, 1514.04931641, 2.79264498, 0.00000000, 0.00000000, 0.00000000);
  3239.     CreateDynamicObject(1231, -2165.82275391, 1518.69104004, 2.79264498, 0.00000000, 0.00000000, 0.00000000);
  3240.     CreateDynamicObject(1231, -2151.31909180, 1527.13024902, 2.75939989, 0.00000000, 0.00000000, 0.00000000);
  3241.     CreateDynamicObject(1231, -2128.07275391, 1541.63305664, 2.75939989, 0.00000000, 0.00000000, 0.00000000);
  3242.     CreateDynamicObject(1231, -2112.27099609, 1551.66735840, 2.75939989, 0.00000000, 0.00000000, 0.00000000);
  3243.     CreateDynamicObject(1231, -2086.89648438, 1567.10290527, 2.75939989, 0.00000000, 0.00000000, 0.00000000);
  3244.     CreateDynamicObject(1231, -2065.10351562, 1580.55664062, 2.73039293, 0.00000000, 0.00000000, 0.00000000);
  3245.     CreateDynamicObject(1231, -2048.80615234, 1589.83593750, 2.73039293, 0.00000000, 0.00000000, 0.00000000);
  3246.     CreateDynamicObject(1231, -2030.45947266, 1602.64575195, 2.73039293, 0.00000000, 0.00000000, 0.00000000);
  3247.     CreateDynamicObject(1231, -1989.29406738, 1628.75451660, 2.73039293, 0.00000000, 0.00000000, 0.00000000);
  3248.     CreateDynamicObject(1231, -1965.05261230, 1643.35229492, 2.73039293, 0.00000000, 0.00000000, 0.00000000);
  3249.     CreateDynamicObject(1231, -1940.48474121, 1658.59716797, 2.73039293, 0.00000000, 0.00000000, 0.00000000);
  3250.     CreateDynamicObject(1231, -1919.87658691, 1671.23059082, 2.73039293, 0.00000000, 0.00000000, 0.00000000);
  3251.     CreateDynamicObject(1231, -1899.74829102, 1683.74914551, 2.73039293, 0.00000000, 0.00000000, 0.00000000);
  3252.     CreateDynamicObject(1231, -1862.47448730, 1706.82568359, 2.73039293, 0.00000000, 0.00000000, 0.00000000);
  3253.     CreateDynamicObject(1231, -1886.56115723, 1728.71557617, 2.73039293, 0.00000000, 0.00000000, 0.00000000);
  3254.     CreateDynamicObject(1231, -1914.07031250, 1711.41821289, 2.73039293, 0.00000000, 0.00000000, 0.00000000);
  3255.     CreateDynamicObject(1231, -1933.06982422, 1699.91149902, 2.73039293, 0.00000000, 0.00000000, 0.00000000);
  3256.     CreateDynamicObject(1231, -1947.63696289, 1691.00256348, 2.73039293, 0.00000000, 0.00000000, 0.00000000);
  3257.     CreateDynamicObject(1231, -1973.17724609, 1674.84826660, 2.73039293, 0.00000000, 0.00000000, 0.00000000);
  3258.     CreateDynamicObject(1231, -2003.60131836, 1656.05871582, 2.73039293, 0.00000000, 0.00000000, 0.00000000);
  3259.     CreateDynamicObject(1231, -2027.21008301, 1641.24938965, 2.73039293, 0.00000000, 0.00000000, 0.00000000);
  3260.     CreateDynamicObject(1231, -2054.38012695, 1623.83544922, 2.73039293, 0.00000000, 0.00000000, 0.00000000);
  3261.     CreateDynamicObject(1231, -2068.33789062, 1615.21850586, 2.73039293, 0.00000000, 0.00000000, 0.00000000);
  3262.     CreateDynamicObject(1231, -2089.28198242, 1602.07568359, 2.73039293, 0.00000000, 0.00000000, 0.00000000);
  3263.     CreateDynamicObject(1231, -2125.60034180, 1579.44348145, 2.75939989, 0.00000000, 0.00000000, 0.00000000);
  3264.     CreateDynamicObject(1231, -2164.19580078, 1555.26953125, 2.75939989, 0.00000000, 0.00000000, 0.00000000);
  3265.     CreateDynamicObject(1231, -2190.10864258, 1539.59313965, 2.79264498, 0.00000000, 0.00000000, 0.00000000);
  3266.     CreateDynamicObject(1231, -2208.21240234, 1528.18493652, 2.79264498, 0.00000000, 0.00000000, 0.00000000);
  3267.     CreateDynamicObject(1231, -2230.45483398, 1514.76586914, 2.79264498, 0.00000000, 0.00000000, 0.00000000);
  3268.     CreateDynamicObject(1231, -2024.49975586, 1768.93151855, 33.59482193, 0.00000000, 0.00000000, 0.00000000);
  3269.     CreateDynamicObject(1231, -2024.23864746, 1768.60034180, 33.56594849, 0.00000000, 0.00000000, 0.00000000);
  3270.     CreateDynamicObject(1231, -2024.52722168, 1768.67163086, 34.60118103, 0.00000000, 0.00000000, 0.00000000);
  3271.     CreateDynamicObject(13592, -2432.92871094, 1459.97265625, 11.79065037, 0.00000000, 22.00000000, 262.00000000);
  3272.     CreateDynamicObject(13592, -2425.57104492, 1457.21875000, 11.79065037, 0.00000000, 21.99462891, 261.99645996);
  3273.     CreateDynamicObject(13592, -2418.27319336, 1454.60253906, 11.79065037, 0.00000000, 21.99462891, 261.99645996);
  3274.     CreateDynamicObject(13592, -2411.09033203, 1452.26586914, 11.79065037, 0.00000000, 21.99462891, 261.99645996);
  3275.     CreateDynamicObject(13592, -2403.68481445, 1450.02478027, 11.79065037, 0.00000000, 21.99462891, 261.99645996);
  3276.     CreateDynamicObject(13592, -2396.57812500, 1447.23327637, 12.22473717, 0.00000000, 21.99462891, 261.99645996);
  3277.     CreateDynamicObject(13594, -2436.70874023, 1462.85815430, 4.20815849, 0.00000000, 0.00000000, 0.00000000);
  3278.     CreateDynamicObject(8550, -2388.74975586, 1695.95617676, 3.88448143, 0.00000000, 0.00000000, 0.00000000);
  3279.     CreateDynamicObject(7073, -2732.82128906, 1345.18444824, 34.53734207, 0.00000000, 0.00000000, 0.00000000);
  3280.     CreateDynamicObject(3571, 991.157166, 2403.592041, 9.493286, 0.0000, 0.0000, 0.0000);
  3281.     CreateDynamicObject(3571, 983.203491, 2403.590332, 9.518263, 0.0000, 0.0000, 0.0000);
  3282.     CreateDynamicObject(3571, 980.384888, 2406.863525, 9.518242, 0.0000, 0.0000, 270.0000);
  3283.     CreateDynamicObject(3571, 996.003296, 2407.567139, 9.430106, 0.0000, 0.0000, 270.0000);
  3284.     CreateDynamicObject(3571, 988.600342, 2418.670898, 9.543266, 0.0000, 0.0000, 180.0000);
  3285.     CreateDynamicObject(3571, 993.349121, 2418.636475, 9.543262, 0.0000, 0.0000, 180.0000);
  3286.     CreateDynamicObject(3571, 995.982910, 2414.877686, 9.543262, 0.0000, 0.0000, 90.0000);
  3287.     CreateDynamicObject(1426, 992.840637, 2404.400146, 11.059437, 0.0000, 0.0000, 0.0000);
  3288.     CreateDynamicObject(1426, 989.551636, 2404.378906, 11.059429, 0.0000, 0.0000, 0.0000);
  3289.     CreateDynamicObject(1426, 986.246216, 2404.309570, 11.059425, 0.0000, 0.0000, 0.0000);
  3290.     CreateDynamicObject(1426, 982.928040, 2404.298096, 11.059425, 0.0000, 0.0000, 0.0000);
  3291.     CreateDynamicObject(3571, 983.139526, 2418.655518, 9.543270, 0.0000, 0.0000, 180.0000);
  3292.     CreateDynamicObject(3867, 989.527222, 2411.315918, 18.079905, 324.7631, 0.0000, 89.5183);
  3293.     CreateDynamicObject(17310, 971.293701, 2410.315430, 23.341942, 0.0000, 42.1124, 0.0000);
  3294.     CreateDynamicObject(17310, 943.391785, 2410.422852, 23.966925, 0.0000, 39.5340, 180.0000);
  3295.     CreateDynamicObject(3571, 921.569641, 2403.516113, 9.418249, 0.0000, 0.0000, 180.0000);
  3296.     CreateDynamicObject(3571, 929.053650, 2403.494629, 9.393242, 0.0000, 0.0000, 180.0000);
  3297.     CreateDynamicObject(3571, 933.678345, 2406.230469, 9.418261, 0.0000, 0.0000, 90.0000);
  3298.     CreateDynamicObject(3571, 918.849426, 2408.968018, 9.568258, 0.0000, 0.0000, 90.0000);
  3299.     CreateDynamicObject(3571, 918.827820, 2414.511230, 9.568254, 0.0000, 0.0000, 90.0000);
  3300.     CreateDynamicObject(3571, 933.644531, 2413.965332, 9.393253, 0.0000, 0.0000, 90.0000);
  3301.     CreateDynamicObject(3571, 923.479248, 2418.038330, 9.468271, 0.0000, 0.0000, 0.0000);
  3302.     CreateDynamicObject(3571, 930.930664, 2418.049316, 9.468241, 0.0000, 0.0000, 0.0000);
  3303.     CreateDynamicObject(3571, 921.610657, 2418.150635, 9.515579, 0.0000, 0.0000, 0.0000);
  3304.     CreateDynamicObject(3571, 993.285400, 2403.578369, 9.390604, 0.0000, 0.0000, 0.0000);
  3305.     CreateDynamicObject(3867, 925.532593, 2411.148193, 18.325811, 324.7631, 0.0000, 271.2372);
  3306.     CreateDynamicObject(3867, 932.124512, 2411.487549, 27.528757, 324.7631, 0.0000, 270.3777);
  3307.     CreateDynamicObject(3867, 982.081665, 2411.476563, 28.363184, 324.7631, 0.0000, 90.3777);
  3308.     CreateDynamicObject(3571, 980.380493, 2414.019775, 9.550068, 0.0000, 0.0000, 270.2409);
  3309.     CreateDynamicObject(1426, 980.691162, 2404.256348, 11.059425, 0.0000, 0.0000, 0.0000);
  3310.     CreateDynamicObject(17310, 988.360962, 2426.930664, 24.041962, 0.0000, 42.1124, 270.0000);
  3311.     CreateDynamicObject(17310, 988.478760, 2456.491455, 24.041924, 0.0000, 42.1124, 90.0000);
  3312.     CreateDynamicObject(3571, 995.810730, 2467.576904, 9.868238, 0.0000, 0.0000, 270.0000);
  3313.     CreateDynamicObject(3571, 990.729065, 2464.797607, 9.848877, 0.0000, 0.0000, 180.0000);
  3314.     CreateDynamicObject(3571, 984.309265, 2464.896240, 9.869881, 0.0000, 0.0000, 0.0000);
  3315.     CreateDynamicObject(3571, 995.812561, 2475.080566, 9.818239, 0.0000, 0.0000, 270.0000);
  3316.     CreateDynamicObject(3571, 993.096436, 2478.549316, 9.818274, 0.0000, 0.0000, 180.0000);
  3317.     CreateDynamicObject(3571, 986.554382, 2478.502686, 9.793251, 0.0000, 0.0000, 0.0000);
  3318.     CreateDynamicObject(3571, 981.281433, 2475.758057, 9.793262, 0.0000, 0.0000, 269.1406);
  3319.     CreateDynamicObject(3571, 981.262695, 2468.907715, 9.868273, 0.0000, 0.0000, 269.1406);
  3320.     CreateDynamicObject(17310, 971.866760, 2471.346680, 24.441921, 0.0000, 42.1124, 360.0000);
  3321.     CreateDynamicObject(17310, 943.382568, 2471.436279, 24.366926, 0.0000, 42.1124, 180.0001);
  3322.     CreateDynamicObject(3571, 931.752197, 2478.487305, 10.368235, 0.0000, 0.0000, 180.0000);
  3323.     CreateDynamicObject(3571, 924.323120, 2478.454590, 10.368265, 0.0000, 0.0000, 180.0000);
  3324.     CreateDynamicObject(3571, 934.484253, 2473.342529, 10.402966, 0.0000, 0.0000, 90.0000);
  3325.     CreateDynamicObject(3571, 934.491272, 2467.151367, 10.368254, 0.0000, 0.0000, 270.0000);
  3326.     CreateDynamicObject(3571, 919.141113, 2475.783691, 10.393257, 0.0000, 0.0000, 270.0000);
  3327.     CreateDynamicObject(3571, 919.107178, 2467.859863, 10.368250, 0.0000, 0.0000, 270.0000);
  3328.     CreateDynamicObject(3571, 929.591248, 2464.418701, 10.393261, 0.0000, 0.0000, 180.0000);
  3329.     CreateDynamicObject(3571, 921.878113, 2464.467773, 10.343254, 0.0000, 0.0000, 180.0000);
  3330.     CreateDynamicObject(17310, 926.582336, 2456.189697, 24.916952, 0.0000, 42.1124, 90.0001);
  3331.     CreateDynamicObject(17310, 926.471558, 2426.708252, 24.991936, 0.0000, 42.1124, 270.0003);
  3332.     CreateDynamicObject(3867, 926.147400, 2410.083496, 17.897787, 324.7631, 0.0000, 0.3777);
  3333.     CreateDynamicObject(3867, 926.190918, 2416.475586, 27.407587, 324.7631, 0.0000, 0.3777);
  3334.     CreateDynamicObject(3867, 927.043884, 2471.512939, 18.990957, 324.7631, 0.0000, 180.3778);
  3335.     CreateDynamicObject(3867, 927.075989, 2465.752441, 26.882545, 324.7631, 0.0000, 180.3778);
  3336.     CreateDynamicObject(3867, 926.170288, 2471.437500, 19.107576, 324.7631, 0.0000, 270.5154);
  3337.     CreateDynamicObject(3867, 931.615967, 2472.038574, 26.864754, 324.7631, 0.0000, 270.5154);
  3338.     CreateDynamicObject(3867, 988.956177, 2471.005859, 18.604671, 324.7631, 0.0000, 90.5153);
  3339.     CreateDynamicObject(3867, 982.882202, 2470.489502, 26.655558, 324.7631, 0.0000, 90.5153);
  3340.     CreateDynamicObject(3867, 988.362122, 2471.628418, 18.615652, 324.7631, 0.0000, 180.5153);
  3341.     CreateDynamicObject(3867, 988.573242, 2466.478027, 26.189369, 324.7631, 0.0000, 180.5153);
  3342.     CreateDynamicObject(3867, 988.325684, 2410.387939, 18.345530, 324.7631, 0.0000, 0.5153);
  3343.     CreateDynamicObject(3867, 988.146240, 2416.878906, 27.576044, 324.7631, 0.0000, 0.5153);
  3344.     CreateDynamicObject(8210, 956.232178, 2471.191162, 37.771400, 87.6625, 0.0000, 180.4818);
  3345.     CreateDynamicObject(8210, 957.178772, 2411.087891, 36.971237, 87.6625, 0.0000, 0.0000);
  3346.     CreateDynamicObject(8210, 926.912170, 2440.612549, 37.821289, 87.6625, 0.0000, 270.0000);
  3347.     CreateDynamicObject(8210, 987.515442, 2439.906250, 37.829773, 87.6625, 0.0000, 90.3778);
  3348.     CreateDynamicObject(8210, 956.764648, 2410.783447, 39.046227, 316.2725, 0.0000, 359.2777);
  3349.     CreateDynamicObject(8210, 987.919128, 2439.932617, 39.567459, 43.0756, 0.8594, 270.7561);
  3350.     CreateDynamicObject(8210, 954.415588, 2470.654053, 39.484459, 38.7784, 0.8594, 0.8936);
  3351.     CreateDynamicObject(8210, 925.607727, 2439.663086, 38.622269, 36.2001, 0.8594, 90.1705);
  3352.     CreateDynamicObject(3867, 975.336609, 2421.952637, 40.932564, 269.8632, 0.0000, 89.1405);
  3353.     CreateDynamicObject(3867, 952.834595, 2422.242188, 40.857597, 269.8632, 0.0000, 89.1405);
  3354.     CreateDynamicObject(3867, 937.487793, 2423.780518, 40.832390, 269.8632, 0.0000, 0.6186);
  3355.     CreateDynamicObject(3867, 937.190552, 2446.233887, 40.757469, 269.8632, 0.0000, 0.6186);
  3356.     CreateDynamicObject(3867, 976.793579, 2440.270264, 40.932434, 269.8632, 0.0000, 0.6186);
  3357.     CreateDynamicObject(3867, 938.023682, 2459.497803, 40.707497, 269.8632, 0.0000, 269.5183);
  3358.     CreateDynamicObject(3867, 971.572327, 2459.034668, 40.932556, 269.8632, 0.0000, 269.5183);
  3359.     CreateDynamicObject(3867, 956.799805, 2459.238281, 40.707481, 269.8632, 0.0000, 269.5183);
  3360.     CreateDynamicObject(3867, 937.509888, 2433.095947, 51.763512, 352.2651, 0.0000, 268.0403);
  3361.     CreateDynamicObject(3867, 937.836975, 2450.026367, 51.757515, 352.2651, 0.0000, 269.7591);
  3362.     CreateDynamicObject(3867, 975.515869, 2449.270752, 52.207176, 352.2651, 0.0000, 92.7152);
  3363.     CreateDynamicObject(3867, 975.789063, 2431.929443, 52.223862, 352.2651, 0.0000, 89.2774);
  3364.     CreateDynamicObject(3867, 973.729797, 2431.894531, 67.098709, 352.2651, 0.0000, 89.2774);
  3365.     CreateDynamicObject(3867, 973.424927, 2449.354980, 67.160767, 352.2651, 0.0000, 92.7152);
  3366.     CreateDynamicObject(3867, 939.865845, 2449.963623, 66.731956, 352.2651, 0.0000, 269.7591);
  3367.     CreateDynamicObject(3867, 939.498596, 2432.599365, 66.738205, 352.2651, 0.0000, 268.0403);
  3368.     CreateDynamicObject(5268, 956.958069, 2440.472900, 42.678028, 0.0000, 0.0000, 315.0000);
  3369.     CreateDynamicObject(987, 940.291809, 2453.484619, 80.989571, 269.8631, 0.0000, 0.0000);
  3370.     CreateDynamicObject(987, 952.099182, 2453.702637, 80.990746, 268.1442, 0.0000, 0.0000);
  3371.     CreateDynamicObject(987, 961.331177, 2453.806152, 80.948456, 268.1442, 0.0000, 0.0000);
  3372.     CreateDynamicObject(987, 951.380310, 2429.035889, 81.129440, 268.1442, 0.0000, 180.3776);
  3373.     CreateDynamicObject(987, 963.331848, 2429.113525, 81.166695, 268.1442, 0.0000, 180.3776);
  3374.     CreateDynamicObject(987, 973.200562, 2429.137451, 81.192711, 268.1442, 0.0000, 180.3776);
  3375.     CreateDynamicObject(987, 968.623657, 2454.367432, 81.033592, 268.1442, 0.0000, 270.5150);
  3376.     CreateDynamicObject(987, 968.769836, 2442.450684, 80.969124, 268.1442, 0.0000, 270.5150);
  3377.     CreateDynamicObject(987, 968.929138, 2436.432373, 80.949799, 268.1442, 0.0000, 270.5150);
  3378.     CreateDynamicObject(987, 944.957642, 2443.193115, 81.024948, 268.1442, 0.0000, 90.0339);
  3379.     CreateDynamicObject(987, 944.825012, 2431.169189, 80.892303, 268.1442, 0.0000, 90.0339);
  3380.     CreateDynamicObject(987, 944.752258, 2424.198486, 80.701927, 268.1442, 0.0000, 90.0339);
  3381.     CreateDynamicObject(3867, 966.899109, 2441.500244, 90.848755, 356.5623, 0.0000, 90.0000);
  3382.     CreateDynamicObject(3867, 946.815063, 2441.250977, 90.603653, 356.5623, 0.0000, 268.6588);
  3383.     CreateDynamicObject(3867, 965.573730, 2441.611328, 113.156052, 356.5623, 0.0000, 90.0000);
  3384.     CreateDynamicObject(3867, 947.965637, 2441.133789, 112.988747, 357.4217, 0.0000, 268.6588);
  3385.     CreateDynamicObject(3867, 964.290039, 2441.697266, 135.584045, 356.5623, 0.0000, 90.0000);
  3386.     CreateDynamicObject(3867, 948.993408, 2441.093018, 135.551880, 357.4217, 0.0000, 268.6588);
  3387.     CreateDynamicObject(987, 948.330566, 2445.965820, 147.909348, 270.6186, 0.0000, 0.0000);
  3388.     CreateDynamicObject(987, 953.411621, 2446.156250, 147.897415, 270.6186, 0.0000, 0.0000);
  3389.     CreateDynamicObject(987, 964.737366, 2437.804932, 148.280762, 270.6186, 0.0000, 181.2371);
  3390.     CreateDynamicObject(987, 959.664001, 2437.355713, 148.318634, 270.6186, 0.0000, 181.2371);
  3391.     CreateDynamicObject(969, 948.678467, 2449.586914, 148.254944, 0.0000, 0.0000, 0.0000);
  3392.     CreateDynamicObject(969, 956.192871, 2449.603516, 148.275024, 0.0000, 0.0000, 0.0000);
  3393.     CreateDynamicObject(969, 956.050415, 2433.237305, 148.062988, 0.0000, 0.0000, 0.0000);
  3394.     CreateDynamicObject(969, 947.909790, 2433.261719, 148.061752, 0.0000, 0.0000, 0.0000);
  3395.     CreateDynamicObject(3867, 963.031921, 2441.751709, 158.026031, 358.2811, 0.0000, 90.0000);
  3396.     CreateDynamicObject(3867, 949.734497, 2441.001465, 158.148132, 358.2811, 0.0000, 268.6588);
  3397.     CreateDynamicObject(3867, 950.484070, 2441.131836, 180.693573, 358.2811, 0.0000, 268.6588);
  3398.     CreateDynamicObject(3867, 962.142700, 2441.802490, 180.393463, 358.2811, 0.0000, 90.0000);
  3399.     CreateDynamicObject(18284, 948.674500, 2441.038330, 195.828888, 0.0000, 0.0000, 0.0000);
  3400.     CreateDynamicObject(18284, 964.394287, 2441.031738, 195.810791, 0.0000, 0.0000, 0.0000);
  3401.     CreateDynamicObject(18284, 956.483154, 2433.049561, 195.806381, 0.0000, 0.0000, 90.0000);
  3402.     CreateDynamicObject(18284, 956.553955, 2448.816162, 195.810165, 0.0000, 0.0000, 270.0000);
  3403.     CreateDynamicObject(987, 962.378052, 2440.927002, 192.735809, 86.8031, 0.0000, 88.2811);
  3404.     CreateDynamicObject(987, 962.851929, 2440.912354, 192.783585, 270.6186, 359.1406, 269.1406);
  3405.     CreateDynamicObject(987, 950.059387, 2431.529785, 193.008820, 270.6186, 1.7189, 90.0000);
  3406.     CreateDynamicObject(987, 949.940002, 2439.568115, 192.900803, 270.6186, 1.7189, 90.0000);
  3407.     CreateDynamicObject(987, 950.967834, 2448.631836, 192.768051, 270.6186, 1.7189, 0.6186);
  3408.     CreateDynamicObject(987, 962.241882, 2434.153320, 192.764267, 270.6186, 1.7189, 183.5744);
  3409.     CreateDynamicObject(984, 944.545288, 2441.406250, 199.418686, 0.0000, 0.0000, 0.0000);
  3410.     CreateDynamicObject(984, 956.340088, 2429.054688, 199.396179, 0.0000, 0.0000, 90.0000);
  3411.     CreateDynamicObject(984, 968.432739, 2440.828125, 199.350601, 0.0000, 0.0000, 0.0000);
  3412.     CreateDynamicObject(984, 956.153381, 2452.895508, 199.424957, 0.0000, 0.0000, 90.0000);
  3413.     CreateDynamicObject(983, 947.051697, 2450.374023, 199.471832, 0.0000, 0.0000, 315.0000);
  3414.     CreateDynamicObject(983, 966.103394, 2450.615967, 199.471832, 0.0000, 0.0000, 45.0000);
  3415.     CreateDynamicObject(983, 946.923401, 2431.208740, 199.443054, 0.0000, 0.0000, 45.0000);
  3416.     CreateDynamicObject(983, 966.216675, 2431.398438, 199.397476, 0.0000, 0.0000, 315.0000);
  3417.     CreateDynamicObject(983, 944.526428, 2436.616211, 199.465561, 0.0000, 0.0000, 0.0000);
  3418.     CreateDynamicObject(983, 961.161865, 2429.023682, 199.443054, 0.0000, 0.0000, 90.0000);
  3419.     CreateDynamicObject(983, 952.373413, 2428.994385, 199.443054, 0.0000, 0.0000, 90.0000);
  3420.     CreateDynamicObject(983, 960.623413, 2452.902588, 199.471832, 0.0000, 0.0000, 90.0000);
  3421.     CreateDynamicObject(983, 968.436157, 2445.150391, 199.397476, 0.0000, 0.0000, 0.0000);
  3422.     CreateDynamicObject(983, 968.483459, 2436.804199, 199.397476, 0.0000, 0.0000, 0.0000);
  3423.     CreateDynamicObject(983, 952.492554, 2452.906982, 199.471832, 0.0000, 0.0000, 270.0000);
  3424.     CreateDynamicObject(983, 944.610901, 2444.971924, 199.465561, 0.0000, 0.0000, 0.0000);
  3425.     CreateDynamicObject(5130, 964.276489, 2440.939453, 201.753082, 0.0000, 0.0000, 315.0000);
  3426.     CreateDynamicObject(5130, 948.550171, 2440.897705, 201.771179, 0.0000, 0.0000, 135.0000);
  3427.     CreateDynamicObject(988, 956.489075, 2442.407959, 204.734039, 91.1003, 0.0000, 0.0000);
  3428.     CreateDynamicObject(10009, 952.381409, 2438.278809, 209.249130, 0.0000, 0.0000, 45.0000);
  3429.     CreateDynamicObject(10009, 960.047485, 2442.276855, 209.262634, 0.0000, 0.0000, 225.0000);
  3430.     CreateDynamicObject(3877, 956.331055, 2440.444336, 213.974014, 0.0000, 0.0000, 45.0000);
  3431.     CreateDynamicObject(3398, 953.059753, 2445.159912, 212.970428, 0.0000, 0.0000, 0.0000);
  3432.     CreateDynamicObject(3398, 952.921631, 2445.471436, 214.044495, 0.0000, 0.0000, 90.0000);
  3433.     CreateDynamicObject(3398, 953.353088, 2445.269775, 210.395447, 0.0000, 0.0000, 0.0000);
  3434.     CreateDynamicObject(2600, 965.860718, 2450.530029, 199.536194, 0.0000, 0.0000, 135.0000);
  3435.     CreateDynamicObject(2600, 949.800293, 2452.664551, 199.535568, 0.0000, 0.0000, 247.5000);
  3436.     CreateDynamicObject(2600, 955.594238, 2452.767822, 199.535568, 0.0000, 0.0000, 168.7499);
  3437.     CreateDynamicObject(2600, 957.052979, 2429.477051, 199.531784, 0.0000, 0.0000, 0.0000);
  3438.     CreateDynamicObject(2600, 963.665527, 2429.462158, 199.531784, 0.0000, 0.0000, 33.7500);
  3439.     CreateDynamicObject(2600, 949.373352, 2429.265381, 199.531784, 0.0000, 0.0000, 337.5000);
  3440.     CreateDynamicObject(2600, 954.949890, 2439.312744, 213.240158, 0.0000, 0.0000, 0.0000);
  3441.     CreateDynamicObject(2600, 957.456787, 2441.478271, 213.801025, 0.0000, 0.0000, 180.0000);
  3442.     CreateDynamicObject(1256, 960.277161, 2448.006348, 199.423370, 0.0000, 0.0000, 270.0000);
  3443.     CreateDynamicObject(1256, 953.036072, 2448.121582, 199.422745, 0.0000, 0.0000, 270.0000);
  3444.     CreateDynamicObject(1256, 956.785034, 2447.784424, 199.422745, 0.0000, 0.0000, 270.0000);
  3445.     CreateDynamicObject(1256, 956.730957, 2435.394531, 199.418961, 0.0000, 0.0000, 90.0000);
  3446.     CreateDynamicObject(1256, 953.135986, 2435.739014, 199.418961, 0.0000, 0.0000, 90.0000);
  3447.     CreateDynamicObject(1256, 960.393433, 2435.573975, 199.423370, 0.0000, 0.0000, 90.0000);
  3448.     CreateDynamicObject(980, 945.241089, 2424.181152, 83.600334, 0.0000, 0.0000, 0.0000);
  3449.     CreateDynamicObject(980, 956.703979, 2424.219727, 83.546295, 0.0000, 0.0000, 0.0000);
  3450.     CreateDynamicObject(980, 967.989563, 2424.140869, 83.613358, 0.0000, 0.0000, 0.0000);
  3451.     CreateDynamicObject(980, 973.297424, 2429.914795, 83.647369, 0.0000, 0.0000, 271.4780);
  3452.     CreateDynamicObject(980, 973.092102, 2441.333496, 83.720924, 0.0000, 0.0000, 271.4780);
  3453.     CreateDynamicObject(980, 972.758240, 2452.827881, 83.703903, 0.0000, 0.0000, 271.4780);
  3454.     CreateDynamicObject(980, 967.719421, 2458.616943, 83.619743, 0.0000, 0.0000, 176.9399);
  3455.     CreateDynamicObject(980, 956.930298, 2458.847168, 83.619026, 0.0000, 0.0000, 176.9399);
  3456.     CreateDynamicObject(980, 945.971558, 2458.799561, 83.616440, 0.0000, 0.0000, 182.9559);
  3457.     CreateDynamicObject(980, 940.273804, 2452.750488, 83.626900, 0.0000, 0.0000, 90.1368);
  3458.     CreateDynamicObject(980, 940.293091, 2441.247070, 83.640892, 0.0000, 0.0000, 90.1368);
  3459.     CreateDynamicObject(980, 940.316467, 2429.730225, 83.623619, 0.0000, 0.0000, 90.1368);
  3460.     CreateDynamicObject(987, 951.304260, 2425.125732, 80.977051, 271.4780, 0.0000, 0.0000);
  3461.     CreateDynamicObject(988, 957.221069, 2453.531982, 81.198914, 90.2409, 0.0000, 0.0000);
  3462.     CreateDynamicObject(988, 957.172058, 2448.808594, 81.170280, 90.2409, 0.0000, 0.0000);
  3463.     CreateDynamicObject(1472, 957.268066, 2428.739990, 42.644863, 0.0000, 0.0000, 0.0000);
  3464.     CreateDynamicObject(1473, 957.266541, 2429.704590, 43.276825, 358.2811, 0.0000, 0.0000);
  3465.     CreateDynamicObject(1256, 956.494568, 2438.688965, 213.140839, 0.0000, 354.8434, 224.4498);
  3466.     CreateDynamicObject(1256, 955.652771, 2441.795410, 213.127335, 0.0000, 354.8434, 45.6871);
  3467.  
  3468.  
  3469.  
  3470.     AddStaticVehicle(522,-126.0405,19.1460,2.6808,69.6357,132,255); // Stunt Nrg
  3471.     AddStaticVehicle(522,-121.1044,31.9887,2.6892,67.9890,132,3); // Stunt Nrg
  3472.     AddStaticVehicle(522,-118.6247,37.9421,2.6796,245.6117,1,245); // Stunt Nrg
  3473.     AddStaticVehicle(522,-116.4581,42.5581,2.6892,67.1282,5,5); // Stunt Nrg ;)
  3474. //================================================================================================================================
  3475. //   Drift 3  Cars
  3476. //================================================================================================================================
  3477.     AddStaticVehicle(480,-2399.5676,-589.5961,132.4350,124.6503,12,12); // Drift3
  3478.     AddStaticVehicle(411,-2394.1184,-596.6629,132.3979,124.9541,112,1); // Drift3
  3479.     AddStaticVehicle(536,-2402.6245,-584.5739,132.4161,304.4421,12,1); // Drift3
  3480.     AddStaticVehicle(559,-2401.4038,-587.3450,132.3171,121.0138,22,1); // Drift3
  3481.     AddStaticVehicle(522,-2398.2922,-592.2369,132.2206,123.0942,132,300); // NRG For Drift3
  3482.     AddStaticVehicle(451,-2395.9424,-594.5272,132.3554,124.6224,18,18); // Drift 3 Turismo
  3483.     AddStaticVehicle(522,-2397.3301,-611.4301,132.2207,34.5906,13,34); // Drift3 Nrg
  3484. //======================================================================================================================
  3485. //    Drift 2 Cars
  3486. //======================================================================================================================
  3487.     AddStaticVehicle(421,2015.0016,2249.2480,23.7965,265.4022,36,1); // Drift2
  3488.     AddStaticVehicle(411,2005.0833,2263.1401,24.3237,359.9428,116,1); // Drift 2 Infernus
  3489.     AddStaticVehicle(451,2000.2670,2263.1738,24.8456,359.0150,18,18); // Drift 2 Turismo
  3490.     AddStaticVehicle(522,1995.4052,2263.4731,25.2507,356.7806,132,44); // Drift 2 NRG
  3491.     AddStaticVehicle(560,1990.9207,2263.4358,25.8953,358.0767,37,0); // Sultan For Drift 2
  3492.     AddStaticVehicle(522,2015.1182,2255.7031,23.4782,270.8259,132,44); // Drift 2 NRG
  3493. //======================================================================================================================
  3494. //    Drift 4 Cars
  3495. //======================================================================================================================
  3496.     AddStaticVehicle(560,2243.4065,1974.7189,31.4815,359.8899,52,39); // Drift 4 Car
  3497.     AddStaticVehicle(560,2243.3713,1952.3573,31.4863,359.6449,56,29); // Drift 4 Car
  3498.     AddStaticVehicle(587,2276.7083,1938.7310,31.5148,359.2321,40,1); // Drift 4 Car
  3499. //======================================================================================================================
  3500. //    Drift 5 Cars
  3501. //======================================================================================================================
  3502.     AddStaticVehicle(522,2078.9089,2419.2588,49.0888,269.6512,6,25); // Drift Next ... NRG
  3503.     AddStaticVehicle(560,2103.8955,2419.5840,49.2223,269.7747,21,1); // Drift Next ... Car
  3504.     AddStaticVehicle(541,2104.1277,2422.2593,49.1488,267.5842,13,8); // Drift Next ... Car
  3505. //======================================================================================================================
  3506. // Mount Chiiliiad Cars
  3507. //======================================================================================================================
  3508.     AddStaticVehicle(411,-2351.9424,-1615.1373,483.3682,260.0635,63,100);
  3509.     AddStaticVehicle(558,-2349.8643,-1607.3928,483.2176,243.9320,1,255);
  3510.     AddStaticVehicle(451,-2346.7708,-1597.8683,483.3162,241.6297,103,42);
  3511.     AddStaticVehicle(522,-2324.1416,-1587.4280,483.3017,146.2721,110,61);
  3512.     AddStaticVehicle(522,-2318.8389,-1593.2921,483.3810,134.3465,10,245);
  3513.     AddStaticVehicle(522,-2312.2727,-1598.5203,483.4891,138.5267,110,132);
  3514. //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  3515.     //Test
  3516.     new a = CreateObject(18646, 0, 0, 0, 0, 0, 0);
  3517.     AttachObjectToVehicle(a, 402, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0);
  3518.  
  3519.  
  3520. //=================================================================================
  3521. //  Stunts & Vehicles in Jizzy Doms
  3522. //=================================================================================
  3523.     AddStaticVehicle(402,-2688.33764648,1341.54748535,17.21059227,0.00000000,-1,-1); //Buffalo
  3524.     AddStaticVehicle(402,-2691.93798828,1341.52709961,17.21059227,0.00000000,-1,-1); //Buffalo
  3525.     //
  3526.     new dm = CreateObject(1609, 0,0,0,0,0,0, 200);
  3527.     new plate2 = AddStaticVehicle(411,-2701.44726562,1341.56542969,17.07059097,0.00000000,-1,-1); //Infernus
  3528.     SetVehicleNumberPlate(plate2, "Sufyan");
  3529.  
  3530.     new neon0 = CreateObject(18648,0,0,0,0,0,0,100.0);
  3531.     new neon1 = CreateObject(18648,0,0,0,0,0,0,100.0);
  3532.  
  3533.     AttachObjectToVehicle(neon0, plate2, 0.8, 0.0, -0.70, 0.0, 0.0, 0.0);
  3534.     AttachObjectToVehicle(neon1,plate2, -0.8, 0.0, -0.70, 0.0, 0.0, 0.0);
  3535.     AttachObjectToVehicle(dm,plate2,  0.0, 0.0, 1.0, 0.0, 0.0, 0.0);
  3536.     //
  3537. /////
  3538.     new wplate2 = AddStaticVehicle(411,-2711.07250977,1341.65319824,17.07059097,0.00000000,-1,-1); //Infernus
  3539.     SetVehicleNumberPlate(wplate2, "Willian");
  3540.    
  3541.     new wneon0 = CreateObject(18648,0,0,0,0,0,0,100.0);
  3542.     new wneon1 = CreateObject(18648,0,0,0,0,0,0,100.0);
  3543.  
  3544.     AttachObjectToVehicle(wneon0, wplate2, 0.8, 0.0, -0.70, 0.0, 0.0, 0.0);
  3545.     AttachObjectToVehicle(wneon1,wplate2, -0.8, 0.0, -0.70, 0.0, 0.0, 0.0);
  3546.    
  3547.    
  3548. ///
  3549.     AddStaticVehicle(477,-2701.45239258,1350.08776855,17.12059212,0.00000000,-1,-1); //ZR-350
  3550.     AddStaticVehicle(477,-2691.64794922,1360.16357422,17.12059212,0.00000000,-1,-1); //ZR-350
  3551.     AddStaticVehicle(451,-2678.83691406,1349.65490723,17.03496361,0.00000000,-1,-1); //Turismo
  3552.     AddStaticVehicle(451,-2695.09375000,1360.37329102,17.03496361,0.00000000,-1,-1); //Turismo
  3553. //
  3554.     new plate3  = AddStaticVehicle(506,-2675.72924805,1330.53234863,17.06270599,0.00000000,-1,-1); //Super GT
  3555.     SetVehicleNumberPlate(plate3, "Sufyan");
  3556. //
  3557.     new plate4 = AddStaticVehicle(506,-2707.59350586,1341.26660156,17.06270599,0.00000000,-1,-1); //Super GT
  3558.     SetVehicleNumberPlate(plate4, "Sufyan");
  3559. //
  3560.     AddStaticVehicle(541,-2723.40209961,1330.45788574,16.97821999,0.00000000,-1,-1); //Bullet
  3561.     AddStaticVehicle(541,-2717.08227539,1360.68237305,16.97059250,0.00000000,-1,-1); //Bullet
  3562.     AddStaticVehicle(558,-2694.85986328,1341.70239258,16.97438431,0.00000000,-1,-1); //Uranus
  3563.     AddStaticVehicle(558,-2679.12353516,1330.47839355,16.97438431,0.00000000,-1,-1); //Uranus
  3564.     AddStaticVehicle(560,-2685.18945312,1330.63842773,17.07556725,0.00000000,-1,-1); //Sultan
  3565.     AddStaticVehicle(560,-2691.87719727,1349.75085449,17.07556725,0.00000000,-1,-1); //Sultan
  3566.     AddStaticVehicle(562,-2685.50976562,1349.72753906,17.02414131,0.00000000,-1,-1); //Elegy
  3567.     AddStaticVehicle(562,-2694.78100586,1330.47460938,17.02414131,0.00000000,-1,-1); //Elegy
  3568.     AddStaticVehicle(521,-2694.80249023,1350.07946777,16.93096924,0.00000000,-1,-1); //FCR-900
  3569.     AddStaticVehicle(521,-2697.72290039,1349.99975586,16.93096924,0.00000000,-1,-1); //FCR-900
  3570.     AddStaticVehicle(522,-2688.66259766,1350.04003906,16.93096924,0.00000000,-1,-1); //NRG-500
  3571.     AddStaticVehicle(522,-2697.92822266,1341.76049805,16.93096924,0.00000000,-1,-1); //NRG-500
  3572.     AddStaticVehicle(522,-2679.50390625,1361.25817871,16.93096924,0.00000000,-1,-1); //NRG-500
  3573.     AddStaticVehicle(522,-2833.98046875,1368.00000000,101.76062012,262.00195312,-1,-1); //NRG-500
  3574.     AddStaticVehicle(493,-2568.10913086,1624.81628418,0.00000000,0.00000000,-1,-1); //Jetmax
  3575.     AddStaticVehicle(493,-2653.83447266,1532.78149414,0.00000000,0.00000000,-1,-1); //Jetmax
  3576.     AddStaticVehicle(522,-2456.29492188,1417.30920410,0.87078846,0.00000000,-1,-1); //NRG-500
  3577.     AddStaticVehicle(522,-2452.30834961,1417.00231934,0.87078846,0.00000000,-1,-1); //NRG-500
  3578.    
  3579. //
  3580. // Chrismats Object
  3581.     CreateDynamicObject(654, 1174.58129883, -2037.50842285, 71.03858185, 0.00000000, 0.00000000, 0.00000000);
  3582.     CreateDynamicObject(654, 1174.72155762, -2037.07385254, 70.79953766, 0.00000000, 0.00000000, 50.00000000);
  3583.     CreateDynamicObject(727, 1175.03857422, -2036.85888672, 70.37965393, 0.00000000, 0.00000000, 0.00000000);
  3584.     CreateDynamicObject(727, 1175.18627930, -2036.97387695, 72.16234589, 0.00000000, 0.00000000, 0.00000000);
  3585.     CreateDynamicObject(664, 1174.46826172, -2036.67236328, 67.50781250, 0.00000000, 0.00000000, 0.00000000);
  3586.     CreateDynamicObject(687, 1174.92138672, -2037.17517090, 61.50060272, 0.00000000, 0.00000000, 0.00000000);
  3587.     CreateDynamicObject(3511, 1212.29064941, -2002.42419434, 68.77813721, 0.00000000, 0.00000000, 0.00000000);
  3588.     CreateDynamicObject(3511, 1212.89025879, -2071.19702148, 68.94531250, 0.00000000, 0.00000000, 0.00000000);
  3589.     CreateDynamicObject(3510, 1250.44396973, -2066.38378906, 58.62990189, 0.00000000, 0.00000000, 0.00000000);
  3590.     CreateDynamicObject(3510, 1269.80615234, -2067.38745117, 58.12878036, 0.00000000, 0.00000000, 0.00000000);
  3591.     CreateDynamicObject(3472, 1259.86706543, -2066.19384766, 58.63590240, 0.00000000, 0.00000000, 0.00000000);
  3592.     CreateDynamicObject(3472, 1217.44665527, -2068.83081055, 64.10154724, 0.00000000, 0.00000000, 0.00000000);
  3593.     CreateDynamicObject(3472, 1216.70434570, -2004.56347656, 64.10260773, 0.00000000, 0.00000000, 0.00000000);
  3594.     CreateDynamicObject(3472, 1243.45874023, -2065.80688477, 59.09833908, 0.00000000, 0.00000000, 0.00000000);
  3595.     CreateDynamicObject(3877, 1213.37255859, -2041.02136230, 69.67355347, 0.00000000, 0.00000000, 0.00000000);
  3596.     CreateDynamicObject(3877, 1213.31176758, -2032.96936035, 69.66485596, 0.00000000, 0.00000000, 0.00000000);
  3597.     CreateDynamicObject(9123, 1189.09924316, -2037.09167480, 73.90753174, 0.00000000, 0.00000000, 0.00000000);
  3598.     CreateDynamicObject(9129, 1252.42895508, -2007.70397949, 62.19207764, 0.00000000, 0.00000000, 0.00000000);
  3599.     CreateDynamicObject(9129, 1270.66137695, -2006.96740723, 61.62681580, 0.00000000, 0.00000000, 0.00000000);
  3600.     CreateDynamicObject(4597, 1260.98986816, -2008.30822754, 58.87303925, 0.00000000, 0.00000000, 0.00000000);
  3601.     CreateDynamicObject(9933, 1177.19604492, -2037.12597656, -0.63377380, 0.00000000, 0.00000000, 0.00000000);
  3602.     CreateDynamicObject(7666, 1175.69445801, -2036.74597168, 116.97959137, 0.00000000, 0.00000000, 15.00000000);
  3603.     CreateDynamicObject(7666, 1175.54345703, -2036.81420898, 117.22959137, 0.00000000, 0.00000000, 0.00000000);
  3604.     CreateDynamicObject(970, 1187.65490723, -2038.03894043, 68.55929565, 0.00000000, 0.00000000, 0.00000000);
  3605.     CreateDynamicObject(970, 1191.74279785, -2040.46435547, 68.55209351, 0.00000000, 0.00000000, 0.00000000);
  3606.     CreateDynamicObject(970, 1195.89208984, -2040.41918945, 68.55209351, 0.00000000, 0.00000000, 0.00000000);
  3607.     CreateDynamicObject(970, 1199.96850586, -2040.41809082, 68.55209351, 0.00000000, 0.00000000, 0.00000000);
  3608.     CreateDynamicObject(970, 1204.08801270, -2040.44421387, 68.55209351, 0.00000000, 0.00000000, 0.00000000);
  3609.     CreateDynamicObject(970, 1208.24072266, -2040.42480469, 68.55209351, 0.00000000, 0.00000000, 0.00000000);
  3610.     CreateDynamicObject(970, 1208.24645996, -2033.60217285, 68.55929565, 0.00000000, 0.00000000, 0.00000000);
  3611.     CreateDynamicObject(970, 1204.12768555, -2033.60119629, 68.55929565, 0.00000000, 0.00000000, 0.00000000);
  3612.     CreateDynamicObject(970, 1199.96044922, -2033.57763672, 68.55929565, 0.00000000, 0.00000000, 0.00000000);
  3613.     CreateDynamicObject(970, 1195.84533691, -2033.52197266, 68.55929565, 0.00000000, 0.00000000, 0.00000000);
  3614.     CreateDynamicObject(970, 1191.73779297, -2033.55554199, 68.55929565, 0.00000000, 0.00000000, 0.00000000);
  3615.     CreateDynamicObject(970, 1187.63671875, -2033.53137207, 68.55929565, 0.00000000, 0.00000000, 0.00000000);
  3616.     CreateDynamicObject(970, 1184.30004883, -2042.14892578, 68.55209351, 0.00000000, 0.00000000, 55.00000000);
  3617.     CreateDynamicObject(970, 1177.77587891, -2046.45288086, 68.55929565, 0.00000000, 0.00000000, 0.00000000);
  3618.     CreateDynamicObject(970, 1181.44763184, -2045.21130371, 68.55929565, 0.00000000, 0.00000000, 40.00000000);
  3619.     CreateDynamicObject(970, 1173.70471191, -2046.49780273, 68.55929565, 0.00000000, 0.00000000, 0.00000000);
  3620.     CreateDynamicObject(970, 1166.86035156, -2042.96520996, 68.55929565, 0.00000000, 0.00000000, 304.00000000);
  3621.     CreateDynamicObject(970, 1169.75952148, -2045.45556641, 68.55209351, 0.00000000, 0.00000000, 330.00000000);
  3622.     CreateDynamicObject(970, 1165.49877930, -2039.23364258, 68.55929565, 0.00000000, 0.00000000, 95.00000000);
  3623.     CreateDynamicObject(970, 1166.93322754, -2030.09729004, 68.55929565, 0.00000000, 0.00000000, 50.00000000);
  3624.     CreateDynamicObject(970, 1165.45080566, -2033.76647949, 68.55929565, 0.00000000, 0.00000000, 84.00000000);
  3625.     CreateDynamicObject(970, 1178.31835938, -2027.21264648, 68.55929565, 0.00000000, 0.00000000, 0.00000000);
  3626.     CreateDynamicObject(970, 1174.09899902, -2027.18969727, 68.55929565, 0.00000000, 0.00000000, 0.00000000);
  3627.     CreateDynamicObject(970, 1170.02282715, -2027.78979492, 68.55929565, 0.00000000, 0.00000000, 20.00000000);
  3628.     CreateDynamicObject(970, 1184.37744141, -2032.04577637, 68.55929565, 0.00000000, 0.00000000, 310.00000000);
  3629.     CreateDynamicObject(970, 1181.75244141, -2028.90893555, 68.55929565, 0.00000000, 0.00000000, 310.00000000);
  3630.     CreateDynamicObject(1502, 1165.28381348, -2035.67578125, 69.36391449, 0.00000000, 180.00000000, 90.00000000);
  3631.     CreateDynamicObject(1502, 1185.47644043, -2036.36791992, 69.61391449, 0.00000000, 180.00000000, 90.00000000);
  3632.     CreateDynamicObject(970, 1185.52648926, -2039.97375488, 68.55929565, 0.00000000, 0.00000000, 90.00000000);
  3633.     CreateDynamicObject(970, 1185.54418945, -2034.34216309, 68.55929565, 0.00000000, 0.00000000, 90.00000000);
  3634.     CreateDynamicObject(2773, 1184.81762695, -2034.87048340, 68.52503967, 0.00000000, 0.00000000, 0.00000000);
  3635.     CreateDynamicObject(2773, 1184.71081543, -2039.12463379, 68.52503967, 0.00000000, 0.00000000, 0.00000000);
  3636.     CreateDynamicObject(2773, 1183.24890137, -2035.83520508, 68.52503967, 0.00000000, 0.00000000, 90.00000000);
  3637.     CreateDynamicObject(2773, 1183.07897949, -2038.19116211, 68.52503967, 0.00000000, 0.00000000, 90.00000000);
  3638.     CreateDynamicObject(1808, 1185.67895508, -2040.14990234, 68.01078796, 0.00000000, 0.00000000, 90.00000000);
  3639.     CreateDynamicObject(2343, 1178.28930664, -2036.73767090, 68.58327484, 0.00000000, 0.00000000, 0.00000000);
  3640.     CreateDynamicObject(354, 1175.28771973, -2037.09423828, 117.25781250, 0.00000000, 0.00000000, 0.00000000);
  3641.     CreateDynamicObject(3472, 1175.15344238, -2036.96435547, 66.20732117, 0.00000000, 0.00000000, 78.00000000);
  3642.     CreateDynamicObject(3472, 1174.99877930, -2036.94799805, 70.25781250, 0.00000000, 0.00000000, 310.00000000);
  3643.     CreateDynamicObject(3472, 1174.89160156, -2037.11499023, 73.50781250, 0.00000000, 0.00000000, 50.00000000);
  3644.     CreateDynamicObject(3472, 1174.11120605, -2037.07153320, 90.18890381, 0.00000000, 0.00000000, 0.00000000);
  3645.     CreateDynamicObject(3472, 1175.10644531, -2036.69372559, 86.15242004, 0.00000000, 0.00000000, 10.00000000);
  3646.     CreateDynamicObject(3472, 1175.21057129, -2037.12353516, 77.88784790, 0.00000000, 0.00000000, 0.00000000);
  3647.     CreateDynamicObject(3472, 1174.82092285, -2037.07592773, 81.38374329, 0.00000000, 0.00000000, 0.00000000);
  3648.     CreateDynamicObject(3472, 1174.43200684, -2036.53015137, 96.51779175, 0.00000000, 0.00000000, 0.00000000);
  3649.     CreateDynamicObject(3472, 1175.39892578, -2036.81994629, 83.72969055, 0.00000000, 0.00000000, 30.00000000);
  3650.     CreateDynamicObject(3472, 1175.40258789, -2036.46142578, 72.67761230, 0.00000000, 0.00000000, 90.00000000);
  3651.     CreateDynamicObject(3472, 1175.53283691, -2037.02819824, 77.50781250, 0.00000000, 0.00000000, 66.00000000);
  3652.     CreateDynamicObject(2654, 1177.68896484, -2035.33691406, 68.22571564, 0.00000000, 0.00000000, 0.00000000);
  3653.     CreateDynamicObject(2654, 1177.21423340, -2034.55798340, 68.22571564, 0.00000000, 0.00000000, 0.00000000);
  3654.     CreateDynamicObject(2654, 1177.01892090, -2035.46655273, 68.22571564, 0.00000000, 0.00000000, 0.00000000);
  3655.     CreateDynamicObject(2483, 1177.30651855, -2036.43041992, 68.21024323, 0.00000000, 0.00000000, 90.00000000);
  3656.     CreateDynamicObject(2478, 1176.23144531, -2034.45263672, 68.28512573, 0.00000000, 0.00000000, 0.00000000);
  3657.     CreateDynamicObject(2478, 1176.26831055, -2033.99731445, 68.28512573, 0.00000000, 0.00000000, 0.00000000);
  3658.     CreateDynamicObject(2694, 1176.33496094, -2034.19213867, 68.67707062, 0.00000000, 0.00000000, 0.00000000);
  3659.     CreateDynamicObject(3015, 1176.38598633, -2034.83544922, 68.14843750, 0.00000000, 0.00000000, 0.00000000);
  3660.     CreateDynamicObject(3015, 1177.61840820, -2036.18530273, 68.00781250, 0.00000000, 0.00000000, 0.00000000);
  3661.     CreateDynamicObject(2464, 1176.85607910, -2038.91540527, 68.15081787, 0.00000000, 0.00000000, 50.00000000);
  3662.     CreateDynamicObject(2654, 1177.44458008, -2037.69580078, 68.22571564, 0.00000000, 0.00000000, 0.00000000);
  3663.     CreateDynamicObject(2479, 1177.12353516, -2038.51965332, 68.13539124, 0.00000000, 0.00000000, 0.00000000);
  3664.     CreateDynamicObject(2654, 1177.78259277, -2038.44189453, 68.22571564, 0.00000000, 0.00000000, 0.00000000);
  3665.     CreateDynamicObject(2654, 1177.53845215, -2037.92419434, 68.67857361, 0.00000000, 0.00000000, 0.00000000);
  3666.     CreateDynamicObject(2464, 1177.66552734, -2037.55993652, 68.13712311, 0.00000000, 0.00000000, 0.00000000);
  3667.     CreateDynamicObject(2464, 1176.85449219, -2038.99121094, 68.15081787, 0.00000000, 0.00000000, 0.00000000);
  3668.     CreateDynamicObject(2464, 1177.90991211, -2034.81005859, 68.38112640, 0.00000000, 0.00000000, 90.00000000);
  3669.     CreateDynamicObject(3472, 1177.95141602, -2044.13818359, 68.00781250, 0.00000000, 0.00000000, 0.00000000);
  3670.     CreateDynamicObject(3472, 1178.18103027, -2030.44006348, 68.00781250, 0.00000000, 0.00000000, 0.00000000);
  3671.     CreateDynamicObject(3472, 1279.86108398, -2046.21569824, 58.20783234, 0.00000000, 0.00000000, 0.00000000);
  3672.     CreateDynamicObject(3472, 1242.40283203, -2045.60705566, 59.07310867, 0.00000000, 0.00000000, 0.00000000);
  3673.     CreateDynamicObject(3472, 1174.87878418, -2071.28417969, 68.00781250, 0.00000000, 0.00000000, 0.00000000);
  3674.     CreateDynamicObject(3472, 1116.50268555, -2069.85644531, 81.19584656, 0.00000000, 0.00000000, 0.00000000);
  3675.     CreateDynamicObject(3472, 1094.67199707, -2037.26965332, 81.52824402, 0.00000000, 0.00000000, 0.00000000);
  3676.     CreateDynamicObject(3472, 1117.37805176, -2037.26501465, 77.75000000, 0.00000000, 0.00000000, 0.00000000);
  3677.     CreateDynamicObject(3472, 1115.71557617, -2003.87280273, 81.12466431, 0.00000000, 0.00000000, 0.00000000);
  3678.     CreateDynamicObject(3472, 1174.88110352, -1994.93774414, 68.00781250, 0.00000000, 0.00000000, 0.00000000);
  3679.     CreateDynamicObject(3472, 1279.60607910, -2066.62133789, 58.10757065, 0.00000000, 0.00000000, 0.00000000);
  3680.     CreateDynamicObject(3472, 1279.16503906, -2008.12988281, 57.87222290, 0.00000000, 0.00000000, 0.00000000);
  3681.     CreateDynamicObject(3472, 1241.49426270, -2007.94396973, 59.01946259, 0.00000000, 0.00000000, 0.00000000);
  3682.     CreateDynamicObject(970, 1187.60034180, -2040.46447754, 68.55209351, 0.00000000, 0.00000000, 0.00000000);
  3683.     CreateDynamicObject(970, 1187.65356445, -2036.37109375, 68.55929565, 0.00000000, 0.00000000, 0.00000000);
  3684.  
  3685.  
  3686. // oTher Chr
  3687.     CreateDynamicObject(3472, 1472.8723144531, -1751.7941894531, 13.555312156677, 0, 0, 0);
  3688.     CreateDynamicObject(3472, 1489.3020019531, -1751.1687011719, 13.605312347412, 0, 0, 0);
  3689.     CreateDynamicObject(3472, 1479.7850341797, -1716.7000732422, 13.046875, 0, 0, 0);
  3690.     CreateDynamicObject(3472, 1479.7990722656, -1702.5, 13.046875, 0, 0, 0);
  3691.     CreateDynamicObject(3472, 1479.3991699219, -1692.3740234375, 13.046875, 0, 0, 0);
  3692.     CreateDynamicObject(3472, 1479.4544677734, -1682.3031005859, 13.046875, 0, 0, 0);
  3693.     CreateDynamicObject(656, 1478.6138916016, -1755.2243652344, 27.4296875, 0, 0, 0);
  3694.     CreateDynamicObject(902, 1478.5236816406, -1755.68359375, 51.999988555908, 0, 90, 90);
  3695.     CreateDynamicObject(1215, 1478.4794921875, -1755.6164550781, 51.803737640381, 0, 0, 0);
  3696.     CreateDynamicObject(1215, 1478.96875, -1755.7154541016, 51.503734588623, 0, 0, 0);
  3697.     CreateDynamicObject(1215, 1477.9479980469, -1755.7615966797, 51.503734588623, 0, 0, 0);
  3698.     CreateDynamicObject(902, 1478.4968261719, -1755.4339599609, 51.999988555908, 0, 90, 270);
  3699.     CreateDynamicObject(3472, 1478.8552246094, -1755.5804443359, 31.755344390869, 0, 0, 0);
  3700.     CreateDynamicObject(3472, 1478.8544921875, -1755.580078125, 36.755344390869, 0, 0, 90);
  3701.     CreateDynamicObject(1361, 1478.84765625, -1755.5300292969, 33.173030853271, 0, 0, 0);
  3702.     CreateDynamicObject(2124, 1478.7993164063, -1754.2098388672, 33.261154174805, 0, 0, 270);
  3703.     CreateDynamicObject(2465, 1478.0693359375, -1755.48046875, 32.67463684082, 0, 0, 239.99633789063);
  3704.     CreateDynamicObject(1279, 1480.3376464844, -1754.4720458984, 32.491668701172, 0, 0, 0);
  3705.     CreateDynamicObject(1279, 1480.8369140625, -1754.4624023438, 32.861667633057, 0, 50, 0);
  3706.     CreateDynamicObject(1576, 1480.4478759766, -1754.443359375, 32.765014648438, 0, 0, 0);
  3707.     CreateDynamicObject(1577, 1481.1682128906, -1753.9769287109, 32.432109832764, 0, 0, 0);
  3708.     CreateDynamicObject(1579, 1481.3067626953, -1753.9716796875, 32.592109680176, 0, 0, 0);
  3709.     CreateDynamicObject(3785, 1461.8992919922, -1750.2696533203, 28.883012771606, 0, 0, 90);
  3710.     CreateDynamicObject(3785, 1462.0123291016, -1750.2578125, 22.461534500122, 0, 0, 90);
  3711.     CreateDynamicObject(3785, 1462.0207519531, -1750.2578125, 16.264194488525, 0, 0, 90);
  3712.     CreateDynamicObject(3785, 1500.3811035156, -1750.2578125, 28.8014087677, 0, 0, 90);
  3713.     CreateDynamicObject(3785, 1500.3734130859, -1750.2578125, 22.656843185425, 0, 0, 90);
  3714.     CreateDynamicObject(3785, 1500.4252929688, -1750.2578125, 16.375597000122, 0, 0, 90);
  3715.     CreateDynamicObject(3915, 1476.615234375, -1783.0454101563, 32.630886077881, 0, 0, 270);
  3716.     CreateDynamicObject(3915, 1440.6058349609, -1789.4161376953, 32.630886077881, 0, 0, 270);
  3717.     CreateDynamicObject(3915, 1517.3212890625, -1789.5747070313, 32.630886077881, 0, 0, 270);
  3718.     CreateDynamicObject(3915, 1471.4228515625, -1740.56640625, 10.630886077881, 0, 0, 90);
  3719.     CreateDynamicObject(3915, 1513.5446777344, -1744.7254638672, 10.630886077881, 0, 0, 270);
  3720.     CreateDynamicObject(3915, 1473.1279296875, -1744.7869873047, 10.630886077881, 0, 0, 270);
  3721.     CreateDynamicObject(3507, 1526.8693847656, -1748.4786376953, 13.046875, 0, 0, 40);
  3722.     CreateDynamicObject(3507, 1543.4096679688, -1749.0166015625, 13.046875, 0, 0, 80);
  3723.     CreateDynamicObject(3507, 1442.2171630859, -1748.3674316406, 13.046875, 0, 0, 39.995727539063);
  3724.     CreateDynamicObject(3507, 1419.3774414063, -1748.5478515625, 13.046875, 0, 0, 39.995727539063);
  3725.     CreateDynamicObject(3915, 1533.9553222656, -1744.0944824219, 10.130886077881, 0, 0, 270);
  3726.     CreateDynamicObject(3915, 1524.9373779297, -1739.8168945313, 10.130886077881, 0, 0, 90);
  3727.     CreateDynamicObject(3915, 1454.9151611328, -1744.2124023438, 10.130886077881, 0, 0, 270);
  3728.     CreateDynamicObject(3915, 1437.9475097656, -1743.8176269531, 10.130886077881, 0, 0, 270);
  3729.     CreateDynamicObject(3915, 1457.50390625, -1723.9440917969, 10.60088634491, 0, 0, 270);
  3730.     CreateDynamicObject(3915, 1474.5684814453, -1724.0118408203, 10.60088634491, 0, 0, 270);
  3731.     CreateDynamicObject(3915, 1491.6822509766, -1724.01953125, 10.60088634491, 0, 0, 270);
  3732.     CreateDynamicObject(3915, 1509.0452880859, -1723.9929199219, 10.60088634491, 0, 0, 270);
  3733.     CreateDynamicObject(3915, 1525.8865966797, -1723.9869384766, 10.60088634491, 0, 0, 270);
  3734. // Mub House
  3735.     CreateDynamicObject(11490, -1546.089478, 319.234528, 52.456619, 0.0000, 0.0000, 90.0000);
  3736.     CreateDynamicObject(11491, -1535.119873, 319.267853, 53.959930, 0.0000, 0.0000, 90.0000);
  3737.     CreateDynamicObject(1646, -1535.141357, 315.079590, 54.301678, 0.0000, 0.0000, 90.0000);
  3738.     CreateDynamicObject(1646, -1535.166260, 317.081451, 54.301678, 0.0000, 0.0000, 90.0000);
  3739.     CreateDynamicObject(1646, -1535.214111, 319.017303, 54.301678, 0.0000, 0.0000, 90.0000);
  3740.     CreateDynamicObject(1646, -1535.194458, 320.972534, 54.301678, 0.0000, 0.0000, 90.0000);
  3741.     CreateDynamicObject(16151, -1542.926147, 315.557526, 54.356186, 0.0000, 0.0000, 270.0000);
  3742.     CreateDynamicObject(1723, -1545.266724, 318.990265, 53.962479, 0.0000, 0.0000, 180.0000);
  3743.     CreateDynamicObject(1723, -1549.123535, 320.594055, 53.962479, 0.0000, 0.0000, 90.0000);
  3744.     CreateDynamicObject(1827, -1546.333252, 321.387543, 53.963009, 0.0000, 0.0000, 0.0000);
  3745.     CreateDynamicObject(1717, -1547.422974, 322.884155, 53.961632, 0.0000, 0.0000, 315.0000);
  3746.     CreateDynamicObject(1799, -1541.888062, 319.815002, 54.027050, 0.0000, 0.0000, 0.0000);
  3747.     CreateDynamicObject(626, -1531.397461, 324.728088, 54.509533, 0.0000, 0.0000, 0.0000);
  3748.     CreateDynamicObject(626, -1531.365967, 320.639465, 54.509533, 0.0000, 0.0000, 0.0000);
  3749.     CreateDynamicObject(626, -1554.997437, 321.339874, 54.509533, 0.0000, 0.0000, 0.0000);
  3750.     CreateDynamicObject(626, -1551.597900, 321.302887, 54.509533, 0.0000, 0.0000, 0.0000);
  3751.     CreateDynamicObject(626, -1555.041504, 317.213104, 54.509533, 0.0000, 0.0000, 0.0000);
  3752.     CreateDynamicObject(626, -1551.519165, 317.379944, 54.509533, 0.0000, 0.0000, 0.0000);
  3753.     CreateDynamicObject(627, -1540.024658, 312.131317, 54.306244, 0.0000, 0.0000, 0.0000);
  3754.     CreateDynamicObject(617, -1534.825562, 333.415344, 52.454773, 0.0000, 0.0000, 0.0000);
  3755.     CreateDynamicObject(617, -1533.302734, 304.043243, 52.454773, 0.0000, 0.0000, 0.0000);
  3756.     CreateDynamicObject(617, -1557.843872, 338.855499, 52.454773, 0.0000, 0.0000, 0.0000);
  3757.     CreateDynamicObject(617, -1558.532837, 300.852966, 52.454773, 0.0000, 0.0000, 0.0000);
  3758.     CreateDynamicObject(3472, -1560.596313, 320.869049, 52.830097, 0.0000, 0.0000, 0.0000);
  3759.     CreateDynamicObject(3472, -1529.828247, 343.262604, 52.830097, 0.0000, 0.0000, 0.0000);
  3760.     CreateDynamicObject(3472, -1529.462402, 298.313293, 52.830097, 0.0000, 0.0000, 0.0000);
  3761.     CreateDynamicObject(3472, -1524.012207, 319.198669, 52.830097, 0.0000, 0.0000, 0.0000);
  3762.     CreateDynamicObject(11547, -1502.731079, 350.104980, 55.405594, 0.0000, 0.0000, 270.0000);
  3763.     CreateDynamicObject(11547, -1486.221558, 350.065247, 55.405594, 0.0000, 0.0000, 270.0000);
  3764.     CreateDynamicObject(12919, -1490.040649, 295.167725, 52.479820, 0.0000, 0.0000, 180.0000);
  3765.     CreateDynamicObject(638, -1477.936035, 349.915009, 53.360439, 0.0000, 0.0000, 0.0000);
  3766.     CreateDynamicObject(638, -1483.551514, 350.068390, 53.360439, 0.0000, 0.0000, 0.0000);
  3767.     CreateDynamicObject(638, -1488.897217, 350.135559, 53.360439, 0.0000, 0.0000, 0.0000);
  3768.     CreateDynamicObject(638, -1494.545288, 350.158173, 53.360439, 0.0000, 0.0000, 0.0000);
  3769.     CreateDynamicObject(638, -1499.966064, 350.189117, 53.360439, 0.0000, 0.0000, 0.0000);
  3770.     CreateDynamicObject(638, -1505.626709, 350.272369, 53.360439, 0.0000, 0.0000, 0.0000);
  3771.     CreateDynamicObject(638, -1511.076660, 350.121490, 53.360439, 0.0000, 0.0000, 0.0000);
  3772.     CreateDynamicObject(621, -1569.332397, 355.748993, 53.329517, 0.0000, 0.0000, 0.0000);
  3773.     CreateDynamicObject(621, -1473.293457, 353.750305, 53.329517, 0.0000, 0.0000, 0.0000);
  3774.     CreateDynamicObject(652, -1476.392090, 350.078644, 52.549564, 0.0000, 0.0000, 0.0000);
  3775.     CreateDynamicObject(652, -1513.907349, 350.298401, 52.549564, 0.0000, 0.0000, 0.0000);
  3776.     CreateDynamicObject(652, -1505.795044, 287.958252, 52.547283, 0.0000, 0.0000, 0.0000);
  3777.     CreateDynamicObject(652, -1505.638062, 302.600952, 52.549564, 0.0000, 0.0000, 0.0000);
  3778.     CreateDynamicObject(12912, -1480.705322, 324.084351, 63.957352, 0.0000, 0.0000, 0.0000);
  3779.     CreateDynamicObject(3286, -1557.290771, 289.294617, 57.199986, 0.0000, 0.0000, 0.0000);
  3780.     CreateDynamicObject(621, -1474.112061, 285.120453, 53.329517, 0.0000, 0.0000, 0.0000);
  3781.     CreateDynamicObject(621, -1568.908325, 284.586578, 53.329517, 0.0000, 0.0000, 0.0000);
  3782.     CreateDynamicObject(13367, -1563.574707, 291.092255, 64.454826, 0.0000, 0.0000, 0.0000);
  3783.     CreateDynamicObject(3472, -1480.735962, 339.259521, 52.827816, 0.0000, 0.0000, 0.0000);
  3784.     CreateDynamicObject(3472, -1479.877319, 310.064270, 52.830097, 0.0000, 0.0000, 0.0000);
  3785.  
  3786. //===========================================================
  3787. //   Half Pipe
  3788. //
  3789. //==========================================================
  3790.     CreateDynamicObject(13592, 1976.606, -2556.956, 22.367, 0.0, 0.0, 11.250);
  3791.     CreateDynamicObject(18450, 1063.462, -2495.545, 164.506, -32.659, 55.863, 39.534);
  3792.     CreateDynamicObject(18450, 1010.169, -2490.331, 216.120, 0.0, 43.831, 0.0);
  3793.     CreateDynamicObject(18450, 1010.390, -2486.149, 215.859, -27.502, -51.566, -209.221);
  3794.     CreateDynamicObject(18450, 1009.947, -2495.749, 216.475, -32.659, 56.723, 39.534);
  3795.     CreateDynamicObject(2780, 1649.613, -2593.276, 8.547, 0.0, 0.0, 0.0);
  3796.     CreateDynamicObject(2780, 1455.431, -2487.129, 12.276, 0.0, 0.0, 0.0);
  3797.     CreateDynamicObject(2780, 1455.058, -2497.129, 11.016, 0.0, 0.0, 0.0);
  3798.     CreateDynamicObject(2780, 1091.519, -2485.757, 135.696, 0.0, 0.0, 0.0);
  3799.     CreateDynamicObject(2780, 1092.920, -2494.455, 134.563, 0.0, 0.0, 0.0);
  3800.     CreateDynamicObject(1655, 1989.292, -2543.607, 13.793, 0.0, 0.0, -270.000);
  3801.     CreateDynamicObject(8656, 1475.571, -2576.913, 13.626, 0.0, 0.0, -90.000);
  3802.     CreateDynamicObject(8656, 1475.572, -2576.920, 15.894, 0.0, 0.0, -90.000);
  3803.     CreateDynamicObject(8656, 1475.579, -2576.907, 18.163, 0.0, 0.0, -90.000);
  3804.     CreateDynamicObject(8656, 1475.592, -2576.916, 20.432, 0.0, 0.0, -90.000);
  3805.     CreateDynamicObject(8656, 1475.590, -2576.916, 22.475, 0.0, 0.0, -90.000);
  3806.     CreateDynamicObject(8656, 1505.937, -2576.926, 13.601, 0.0, 0.0, -90.000);
  3807.     CreateDynamicObject(8656, 1505.945, -2576.928, 15.844, 0.0, 0.0, -90.000);
  3808.     CreateDynamicObject(8656, 1505.952, -2576.915, 18.088, 0.0, 0.0, -90.000);
  3809.     CreateDynamicObject(8656, 1505.947, -2576.917, 20.282, 0.0, 0.0, -90.000);
  3810.     CreateDynamicObject(8656, 1505.922, -2576.910, 22.475, 0.0, 0.0, -90.000);
  3811.     CreateDynamicObject(8656, 1541.077, -2576.896, 13.626, 0.0, 0.0, -90.000);
  3812.     CreateDynamicObject(8656, 1541.062, -2576.878, 15.869, 0.0, 0.0, -90.000);
  3813.     CreateDynamicObject(8656, 1541.062, -2576.870, 18.046, 0.0, 0.0, -90.000);
  3814.     CreateDynamicObject(8656, 1541.059, -2576.873, 20.314, 0.0, 0.0, -90.000);
  3815.     CreateDynamicObject(8656, 1541.040, -2576.871, 22.483, 0.0, 0.0, -90.000);
  3816.     CreateDynamicObject(8656, 1525.300, -2576.894, 18.176, 0.0, 0.0, -90.000);
  3817.     CreateDynamicObject(8656, 1524.550, -2576.905, 20.369, 0.0, 0.0, -90.000);
  3818.     CreateDynamicObject(8656, 1523.716, -2576.922, 22.478, 0.0, 0.0, -90.000);
  3819.     CreateDynamicObject(3095, 1525.250, -2572.853, 23.084, 0.0, 0.0, 0.0);
  3820.     CreateDynamicObject(3095, 1516.447, -2572.860, 23.086, 0.0, 0.0, 0.0);
  3821.     CreateDynamicObject(3095, 1507.742, -2572.827, 23.088, 0.0, 0.0, 0.0);
  3822.     CreateDynamicObject(3095, 1498.919, -2572.853, 23.090, 0.0, 0.0, 0.0);
  3823.     CreateDynamicObject(3095, 1490.024, -2572.877, 23.092, 0.0, 0.0, 0.0);
  3824.     CreateDynamicObject(8656, 1555.850, -2562.119, 13.626, 0.0, 0.0, -360.000);
  3825.     CreateDynamicObject(8656, 1555.846, -2562.112, 15.869, 0.0, 0.0, -360.000);
  3826.     CreateDynamicObject(8656, 1555.851, -2562.110, 18.063, 0.0, 0.0, -360.000);
  3827.     CreateDynamicObject(8656, 1555.845, -2562.089, 20.307, 0.0, 0.0, -360.000);
  3828.     CreateDynamicObject(8656, 1555.835, -2562.095, 22.475, 0.0, 0.0, -360.000);
  3829.     CreateDynamicObject(16281, 1523.680, -2578.061, 15.220, 0.0, 0.0, 0.0);
  3830.     CreateDynamicObject(1655, 1530.514, -2571.191, 24.687, 0.0, 0.0, -90.000);
  3831.     CreateDynamicObject(1655, 1537.858, -2571.144, 29.310, 18.908, 0.0, -90.000);
  3832.     CreateDynamicObject(1655, 1543.249, -2571.118, 35.926, 36.956, 0.0, -90.000);
  3833.     CreateDynamicObject(1655, 1546.797, -2571.120, 43.657, 48.988, 0.0, -90.000);
  3834.     CreateDynamicObject(8656, 1555.853, -2562.085, 24.689, 0.0, 0.0, -360.000);
  3835.     CreateDynamicObject(8656, 1555.824, -2562.067, 26.908, 0.0, 0.0, -360.000);
  3836.     CreateDynamicObject(8656, 1555.832, -2562.082, 29.177, 0.0, 0.0, -360.000);
  3837.     CreateDynamicObject(8656, 1555.833, -2562.067, 31.395, 0.0, 0.0, -360.000);
  3838.     CreateDynamicObject(8656, 1555.832, -2562.077, 33.664, 0.0, 0.0, -360.000);
  3839.     CreateDynamicObject(3095, 1551.815, -2571.172, 46.943, 0.0, 0.0, 0.0);
  3840.     CreateDynamicObject(8656, 1555.829, -2562.106, 35.932, 0.0, 0.0, -360.000);
  3841.     CreateDynamicObject(8656, 1555.825, -2562.093, 38.076, 0.0, 0.0, -360.000);
  3842.     CreateDynamicObject(8656, 1555.818, -2562.102, 40.270, 0.0, 0.0, -360.000);
  3843.     CreateDynamicObject(8656, 1555.820, -2562.100, 42.488, 0.0, 0.0, -360.000);
  3844.     CreateDynamicObject(8656, 1555.821, -2562.065, 44.657, 0.0, 0.0, -360.000);
  3845.     CreateDynamicObject(8656, 1555.810, -2562.087, 46.350, 0.0, 0.0, -360.000);
  3846.     CreateDynamicObject(8656, 1554.364, -2576.858, 32.221, 89.381, 0.0, -90.000);
  3847.     CreateDynamicObject(8656, 1552.104, -2576.851, 32.237, 89.381, 0.0, -90.000);
  3848.     CreateDynamicObject(8656, 1549.974, -2576.864, 32.249, 89.381, 0.0, -90.000);
  3849.     CreateDynamicObject(8656, 1547.736, -2576.841, 32.262, 89.381, 0.0, -90.000);
  3850.     CreateDynamicObject(8656, 1538.602, -2576.834, 34.697, 53.285, 0.0, -90.000);
  3851.     CreateDynamicObject(8656, 1545.538, -2576.860, 28.939, 89.381, 0.0, -90.000);
  3852.     CreateDynamicObject(8656, 1543.318, -2576.838, 26.084, 89.381, 0.0, -90.000);
  3853.     CreateDynamicObject(8656, 1541.184, -2576.839, 23.477, 89.381, 0.0, -90.000);
  3854.     CreateDynamicObject(8656, 1539.010, -2576.847, 19.691, 89.381, 0.0, -90.000);
  3855.     CreateDynamicObject(8656, 1536.945, -2576.837, 17.448, 89.381, 0.0, -90.000);
  3856.     CreateDynamicObject(8656, 1534.808, -2576.870, 14.130, 89.381, 0.0, -90.000);
  3857.     CreateDynamicObject(8656, 1532.800, -2576.837, 11.563, 89.381, 0.0, -90.000);
  3858.     CreateDynamicObject(8656, 1538.595, -2575.938, 34.697, 53.285, 0.0, -90.000);
  3859.     CreateDynamicObject(3095, 1551.796, -2572.851, 46.945, 0.0, 0.0, 0.0);
  3860.     CreateDynamicObject(3095, 1551.800, -2562.514, 46.947, 0.0, 0.0, 0.0);
  3861.     CreateDynamicObject(3095, 1551.802, -2553.521, 46.949, 0.0, 0.0, 0.0);
  3862.     CreateDynamicObject(3095, 1551.781, -2551.337, 46.951, 0.0, 0.0, 0.0);
  3863.     CreateDynamicObject(8656, 1515.801, -2575.946, 24.770, 0.0, 0.0, -90.000);
  3864.     CreateDynamicObject(8656, 1515.809, -2576.902, 24.770, 0.0, 0.0, -90.000);
  3865.     CreateDynamicObject(3095, 1521.453, -2564.109, 23.088, 0.0, 0.0, 0.0);
  3866.     CreateDynamicObject(3095, 1521.471, -2555.464, 23.090, 0.0, 0.0, 0.0);
  3867.     CreateDynamicObject(1655, 1546.791, -2553.821, 43.656, 48.988, 0.0, -90.000);
  3868.     CreateDynamicObject(1655, 1543.251, -2553.844, 35.881, 36.956, 0.0, -90.000);
  3869.     CreateDynamicObject(1655, 1537.750, -2553.766, 29.201, 18.908, 0.0, -90.000);
  3870.     CreateDynamicObject(1655, 1530.384, -2553.858, 24.625, 0.0, 0.0, -90.000);
  3871.     CreateDynamicObject(1655, 1546.801, -2562.460, 43.660, 48.988, 0.0, -90.000);
  3872.     CreateDynamicObject(1655, 1543.174, -2562.401, 35.756, 36.956, 0.0, -90.000);
  3873.     CreateDynamicObject(1655, 1537.850, -2562.427, 29.293, 18.908, 0.0, -90.000);
  3874.     CreateDynamicObject(1655, 1530.548, -2562.482, 24.699, 0.0, 0.0, -90.000);
  3875.     CreateDynamicObject(973, 1482.007, -2577.422, 18.637, 0.859, -90.241, -182.578);
  3876.     CreateDynamicObject(973, 1486.162, -2577.497, 22.109, 0.859, -374.714, -181.719);
  3877.     CreateDynamicObject(973, 1486.035, -2577.497, 19.705, 0.859, -338.618, -180.000);
  3878.     CreateDynamicObject(973, 1485.455, -2577.436, 17.502, 0.859, -374.714, -181.719);
  3879.     CreateDynamicObject(973, 1485.679, -2577.428, 15.396, 0.859, -338.618, -180.000);
  3880.     CreateDynamicObject(973, 1496.346, -2577.567, 13.387, 0.859, -90.241, -182.578);
  3881.     CreateDynamicObject(973, 1497.586, -2577.492, 18.887, 0.859, -107.430, -182.578);
  3882.     CreateDynamicObject(973, 1495.008, -2577.421, 18.637, 0.859, -73.052, -181.719);
  3883.     CreateDynamicObject(973, 1507.275, -2577.431, 18.602, 0.859, -90.241, -182.578);
  3884.     CreateDynamicObject(973, 1510.817, -2577.432, 22.137, 0.859, -374.714, -181.719);
  3885.     CreateDynamicObject(973, 1511.020, -2577.431, 19.811, 0.859, -338.618, -180.000);
  3886.     CreateDynamicObject(973, 1511.016, -2577.444, 17.751, 0.859, -374.714, -181.719);
  3887.     CreateDynamicObject(973, 1511.153, -2577.441, 15.024, 0.859, -338.618, -180.000);
  3888.     CreateDynamicObject(973, 1518.633, -2577.432, 20.800, 0.859, -90.241, -182.578);
  3889.     CreateDynamicObject(973, 1522.961, -2577.431, 17.780, 0.859, -360.104, -180.000);
  3890.     CreateDynamicObject(973, 1530.553, -2577.409, 18.683, 0.859, -90.241, -182.578);
  3891.     CreateDynamicObject(973, 1535.849, -2577.409, 19.092, 0.859, -107.430, -182.578);
  3892.     CreateDynamicObject(973, 1537.446, -2577.409, 18.790, 0.859, -90.241, -182.578);
  3893.     CreateDynamicObject(973, 1538.967, -2577.409, 18.697, 0.859, -107.430, -182.578);
  3894.     CreateDynamicObject(973, 1542.929, -2577.388, 21.214, 0.859, -90.241, -182.578);
  3895.     CreateDynamicObject(973, 1544.356, -2577.356, 23.685, 0.859, -311.976, -180.000);
  3896.     CreateDynamicObject(973, 1544.303, -2577.363, 19.209, 0.859, -432.296, -180.000);
  3897.     CreateDynamicObject(8656, 1541.075, -2547.280, 13.626, 0.0, 0.0, -270.000);
  3898.     CreateDynamicObject(8656, 1541.077, -2547.297, 15.894, 0.0, 0.0, -270.000);
  3899.     CreateDynamicObject(8656, 1541.084, -2547.331, 18.163, 0.0, 0.0, -270.000);
  3900.     CreateDynamicObject(8656, 1541.074, -2547.311, 20.307, 0.0, 0.0, -270.000);
  3901.     CreateDynamicObject(8656, 1541.070, -2547.329, 22.475, 0.0, 0.0, -270.000);
  3902.     CreateDynamicObject(8656, 1555.041, -2547.312, 32.206, 89.381, 0.0, -270.000);
  3903.     CreateDynamicObject(8656, 1553.030, -2547.329, 32.169, 89.381, 0.0, -270.000);
  3904.     CreateDynamicObject(8656, 1510.617, -2547.280, 13.626, 0.0, 0.0, -270.000);
  3905.     CreateDynamicObject(8656, 1510.743, -2547.305, 15.894, 0.0, 0.0, -270.000);
  3906.     CreateDynamicObject(8656, 1511.080, -2547.321, 18.063, 0.0, 0.0, -270.000);
  3907.     CreateDynamicObject(8656, 1510.707, -2547.296, 20.307, 0.0, 0.0, -270.000);
  3908.     CreateDynamicObject(8656, 1510.730, -2547.340, 22.475, 0.0, 0.0, -270.000);
  3909.     CreateDynamicObject(8656, 1539.083, -2547.358, 34.610, 53.285, 0.0, -90.000);
  3910.     CreateDynamicObject(8656, 1550.906, -2547.314, 32.099, 89.381, 0.0, -270.000);
  3911.     CreateDynamicObject(8656, 1548.715, -2547.320, 32.069, 89.381, 0.0, -270.000);
  3912.     CreateDynamicObject(8656, 1539.070, -2548.173, 34.606, 53.285, 0.0, -90.000);
  3913.     CreateDynamicObject(8656, 1546.623, -2547.387, 29.435, 89.381, 0.0, -270.000);
  3914.     CreateDynamicObject(8656, 1544.496, -2547.387, 26.438, 89.381, 0.0, -270.000);
  3915.     CreateDynamicObject(8656, 1542.400, -2547.387, 23.225, 89.381, 0.0, -270.000);
  3916.     CreateDynamicObject(8656, 1540.290, -2547.387, 20.542, 89.381, 0.0, -270.000);
  3917.     CreateDynamicObject(8656, 1538.220, -2547.389, 17.476, 89.381, 0.0, -270.000);
  3918.     CreateDynamicObject(8656, 1535.990, -2547.371, 15.090, 89.381, 0.0, -270.000);
  3919.     CreateDynamicObject(8656, 1533.913, -2547.371, 11.655, 89.381, 0.0, -270.000);
  3920.     CreateDynamicObject(8656, 1531.818, -2547.378, 9.239, 89.381, 0.0, -270.000);
  3921.     CreateDynamicObject(1655, 1546.817, -2552.871, 43.680, 48.988, 0.0, -90.000);
  3922.     CreateDynamicObject(1655, 1543.227, -2552.928, 35.824, 36.956, 0.0, -90.000);
  3923.     CreateDynamicObject(1655, 1537.636, -2553.029, 29.108, 18.908, 0.0, -90.000);
  3924.     CreateDynamicObject(1655, 1530.400, -2552.905, 24.629, 0.0, 0.0, -90.000);
  3925.     CreateDynamicObject(3095, 1521.507, -2551.619, 23.117, 0.0, 0.0, 0.0);
  3926.     CreateDynamicObject(3095, 1512.638, -2551.592, 23.094, 0.0, 0.0, 0.0);
  3927.     CreateDynamicObject(8656, 1515.811, -2547.305, 24.770, 0.0, 0.0, -270.000);
  3928.     CreateDynamicObject(8656, 1515.790, -2548.239, 24.776, 0.0, 0.0, -270.000);
  3929.     CreateDynamicObject(3095, 1512.737, -2563.985, 23.090, 0.0, 0.0, 0.0);
  3930.     CreateDynamicObject(3095, 1512.640, -2558.686, 23.092, 0.0, 0.0, 0.0);
  3931.     CreateDynamicObject(3095, 1503.816, -2552.249, 23.094, 0.0, 0.0, 0.0);
  3932.     CreateDynamicObject(3095, 1503.815, -2561.217, 23.096, 0.0, 0.0, 0.0);
  3933.     CreateDynamicObject(3095, 1503.827, -2565.868, 23.098, 0.0, 0.0, 0.0);
  3934.     CreateDynamicObject(8656, 1460.776, -2562.136, 13.576, 0.0, 0.0, -180.000);
  3935.     CreateDynamicObject(8656, 1460.812, -2562.166, 15.763, 0.0, 0.0, -180.000);
  3936.     CreateDynamicObject(8656, 1460.796, -2562.144, 18.014, 0.0, 0.0, -180.000);
  3937.     CreateDynamicObject(8656, 1460.807, -2562.123, 20.258, 0.0, 0.0, -180.000);
  3938.     CreateDynamicObject(8656, 1460.815, -2562.153, 22.476, 0.0, 0.0, -180.000);
  3939.     CreateDynamicObject(8656, 1475.573, -2547.367, 13.601, 0.0, 0.0, -270.000);
  3940.     CreateDynamicObject(8656, 1475.599, -2547.380, 15.744, 0.0, 0.0, -270.000);
  3941.     CreateDynamicObject(8656, 1475.600, -2547.350, 17.988, 0.0, 0.0, -270.000);
  3942.     CreateDynamicObject(8656, 1475.580, -2547.349, 20.232, 0.0, 0.0, -270.000);
  3943.     CreateDynamicObject(8656, 1475.591, -2547.315, 22.475, 0.0, 0.0, -270.000);
  3944.     CreateDynamicObject(8656, 1491.140, -2547.290, 13.626, 0.0, 0.0, -270.000);
  3945.     CreateDynamicObject(8656, 1492.277, -2547.302, 15.844, 0.0, 0.0, -270.000);
  3946.     CreateDynamicObject(8656, 1492.326, -2547.330, 18.063, 0.0, 0.0, -270.000);
  3947.     CreateDynamicObject(8656, 1492.450, -2547.302, 20.307, 0.0, 0.0, -270.000);
  3948.     CreateDynamicObject(8656, 1492.488, -2547.313, 22.475, 0.0, 0.0, -270.000);
  3949.     CreateDynamicObject(8656, 1460.833, -2562.054, 24.695, 0.0, 0.0, -180.000);
  3950.     CreateDynamicObject(8656, 1460.854, -2562.087, 26.963, 0.0, 0.0, -180.000);
  3951.     CreateDynamicObject(8656, 1460.853, -2562.077, 29.182, 0.0, 0.0, -180.000);
  3952.     CreateDynamicObject(8656, 1460.847, -2562.039, 31.476, 0.0, 0.0, -180.000);
  3953.     CreateDynamicObject(8656, 1460.845, -2562.006, 33.719, 0.0, 0.0, -180.000);
  3954.     CreateDynamicObject(8656, 1460.854, -2562.028, 35.863, 0.0, 0.0, -180.000);
  3955.     CreateDynamicObject(8656, 1460.834, -2562.017, 38.081, 0.0, 0.0, -180.000);
  3956.     CreateDynamicObject(8656, 1460.819, -2562.030, 40.290, 0.0, 0.0, -180.000);
  3957.     CreateDynamicObject(8656, 1460.831, -2562.043, 42.534, 0.0, 0.0, -180.000);
  3958.     CreateDynamicObject(8656, 1460.821, -2562.050, 44.728, 0.0, 0.0, -180.000);
  3959.     CreateDynamicObject(8656, 1460.749, -2562.033, 46.971, 0.0, 0.0, -180.000);
  3960.     CreateDynamicObject(3095, 1464.635, -2572.816, 47.575, 0.0, 0.0, 0.0);
  3961.     CreateDynamicObject(3095, 1464.631, -2563.963, 47.602, 0.0, 0.0, 0.0);
  3962.     CreateDynamicObject(3095, 1464.641, -2555.395, 47.579, 0.0, 0.0, 0.0);
  3963.     CreateDynamicObject(3095, 1464.650, -2551.282, 47.556, 0.0, 0.0, 0.0);
  3964.     CreateDynamicObject(1655, 1469.656, -2552.978, 44.182, 48.988, 0.0, -270.000);
  3965.     CreateDynamicObject(1655, 1473.351, -2552.972, 36.117, 36.956, 0.0, -270.000);
  3966.     CreateDynamicObject(1655, 1478.835, -2552.983, 29.393, 18.908, 0.0, -270.000);
  3967.     CreateDynamicObject(1655, 1486.312, -2552.966, 24.688, 0.0, 0.0, -270.000);
  3968.     CreateDynamicObject(8656, 1477.503, -2547.286, 35.244, 53.285, 0.0, -270.000);
  3969.     CreateDynamicObject(8656, 1477.517, -2548.176, 35.249, 53.285, 0.0, -270.000);
  3970.     CreateDynamicObject(8656, 1477.661, -2576.779, 35.253, 53.285, 0.0, -270.000);
  3971.     CreateDynamicObject(8656, 1477.656, -2575.920, 35.254, 53.285, 0.0, -270.000);
  3972.     CreateDynamicObject(8656, 1485.358, -2547.269, 24.766, 0.0, 0.0, -270.000);
  3973.     CreateDynamicObject(8656, 1485.672, -2548.224, 24.769, 0.0, 0.0, -270.000);
  3974.     CreateDynamicObject(3095, 1495.315, -2553.058, 23.096, 0.0, 0.0, 0.0);
  3975.     CreateDynamicObject(8656, 1462.494, -2547.271, 32.780, 89.381, 0.0, -270.000);
  3976.     CreateDynamicObject(8656, 1464.508, -2547.204, 32.810, 89.381, 0.0, -270.000);
  3977.     CreateDynamicObject(8656, 1466.639, -2547.213, 32.834, 89.381, 0.0, -270.000);
  3978.     CreateDynamicObject(8656, 1468.390, -2547.236, 32.833, 89.381, 0.0, -270.000);
  3979.     CreateDynamicObject(8656, 1470.443, -2547.251, 29.461, 89.381, 0.0, -270.000);
  3980.     CreateDynamicObject(8656, 1472.749, -2547.255, 26.501, 89.381, 0.0, -270.000);
  3981.     CreateDynamicObject(8656, 1474.973, -2547.254, 23.616, 89.381, 0.0, -270.000);
  3982.     CreateDynamicObject(8656, 1476.988, -2547.244, 20.868, 89.381, 0.0, -270.000);
  3983.     CreateDynamicObject(8656, 1479.016, -2547.251, 17.647, 89.381, 0.0, -270.000);
  3984.     CreateDynamicObject(8656, 1480.997, -2547.293, 15.297, 89.381, 0.0, -270.000);
  3985.     CreateDynamicObject(8656, 1482.776, -2547.282, 12.708, 89.381, 0.0, -270.000);
  3986.     CreateDynamicObject(3095, 1495.301, -2561.575, 23.098, 0.0, 0.0, 0.0);
  3987.     CreateDynamicObject(3095, 1494.988, -2566.025, 23.100, 0.0, 0.0, 0.0);
  3988.     CreateDynamicObject(3095, 1486.329, -2565.720, 23.119, 0.0, 0.0, 0.0);
  3989.     CreateDynamicObject(3095, 1486.315, -2558.778, 23.121, 0.0, 0.0, 0.0);
  3990.     CreateDynamicObject(8656, 1487.545, -2576.895, 24.760, 0.0, 0.0, -450.000);
  3991.     CreateDynamicObject(8656, 1485.920, -2575.916, 24.776, 0.0, 0.0, -450.000);
  3992.     CreateDynamicObject(1655, 1469.652, -2561.434, 44.219, 48.988, 0.0, -270.000);
  3993.     CreateDynamicObject(1655, 1469.673, -2570.001, 44.209, 48.988, 0.0, -270.000);
  3994.     CreateDynamicObject(1655, 1473.329, -2561.626, 36.140, 36.956, 0.0, -270.000);
  3995.     CreateDynamicObject(1655, 1473.315, -2570.009, 36.185, 36.956, 0.0, -270.000);
  3996.     CreateDynamicObject(1655, 1478.769, -2561.297, 29.450, 18.908, 0.0, -270.000);
  3997.     CreateDynamicObject(1655, 1478.732, -2569.989, 29.473, 18.908, 0.0, -270.000);
  3998.     CreateDynamicObject(1655, 1486.209, -2561.625, 24.727, 0.0, 0.0, -270.000);
  3999.     CreateDynamicObject(1655, 1486.221, -2570.016, 24.725, 0.0, 0.0, -270.000);
  4000.     CreateDynamicObject(1655, 1486.174, -2571.202, 24.727, 0.0, 0.0, -270.000);
  4001.     CreateDynamicObject(1655, 1478.794, -2571.204, 29.435, 18.908, 0.0, -270.000);
  4002.     CreateDynamicObject(1655, 1473.320, -2571.211, 36.204, 36.956, 0.0, -270.000);
  4003.     CreateDynamicObject(1655, 1469.636, -2571.197, 44.234, 48.988, 0.0, -270.000);
  4004.     CreateDynamicObject(8656, 1462.386, -2576.894, 32.782, 89.381, 0.0, -450.000);
  4005.     CreateDynamicObject(8656, 1464.395, -2576.903, 32.782, 89.381, 0.0, -450.000);
  4006.     CreateDynamicObject(8656, 1466.398, -2576.906, 32.757, 89.381, 0.0, -450.000);
  4007.     CreateDynamicObject(8656, 1468.389, -2576.878, 32.780, 89.381, 0.0, -450.000);
  4008.     CreateDynamicObject(8656, 1470.286, -2576.755, 29.454, 89.381, 0.0, -450.000);
  4009.     CreateDynamicObject(8656, 1472.474, -2576.756, 27.029, 89.381, 0.0, -450.000);
  4010.     CreateDynamicObject(8656, 1474.616, -2576.759, 23.204, 89.381, 0.0, -450.000);
  4011.     CreateDynamicObject(8656, 1476.794, -2576.751, 20.279, 89.381, 0.0, -450.000);
  4012.     CreateDynamicObject(8656, 1479.012, -2576.763, 18.053, 89.381, 0.0, -450.000);
  4013.     CreateDynamicObject(8656, 1481.061, -2576.765, 14.185, 89.381, 0.0, -450.000);
  4014.     CreateDynamicObject(8656, 1483.015, -2576.761, 12.164, 89.381, 0.0, -450.000);
  4015.     CreateDynamicObject(996, 1460.235, -2576.592, 48.804, 0.0, 0.0, 90.000);
  4016.     CreateDynamicObject(996, 1460.233, -2568.290, 48.781, 0.0, 0.0, 90.000);
  4017.     CreateDynamicObject(996, 1460.237, -2559.916, 48.783, 0.0, 0.0, 90.000);
  4018.     CreateDynamicObject(996, 1461.601, -2547.000, 48.735, 0.0, 0.0, 0.0);
  4019.     CreateDynamicObject(996, 1460.211, -2547.528, 48.735, 0.0, 0.0, -90.000);
  4020.     CreateDynamicObject(996, 1468.299, -2577.220, 48.754, 0.0, 0.0, -180.000);
  4021.     CreateDynamicObject(996, 1554.842, -2577.150, 48.174, 0.0, 0.0, -180.000);
  4022.     CreateDynamicObject(996, 1556.052, -2576.542, 48.124, 0.0, 0.0, -270.000);
  4023.     CreateDynamicObject(996, 1556.103, -2567.778, 48.097, 0.0, 0.0, -270.000);
  4024.     CreateDynamicObject(996, 1556.120, -2559.017, 48.101, 0.0, 0.0, -270.000);
  4025.     CreateDynamicObject(996, 1556.143, -2547.608, 48.055, 0.0, 0.0, -450.000);
  4026.     CreateDynamicObject(996, 1548.178, -2547.049, 48.130, 0.0, 0.0, -720.000);
  4027.     CreateDynamicObject(3095, 1523.723, -2576.650, 12.794, 88.522, 0.0, 0.0);
  4028.     CreateDynamicObject(3399, 1480.272, -2545.823, 14.491, 0.0, 0.0, 0.0);
  4029.     CreateDynamicObject(3399, 1489.555, -2545.791, 19.039, 0.0, 0.0, 0.0);
  4030.     CreateDynamicObject(3399, 1499.052, -2545.784, 23.679, 0.0, 0.0, 0.0);
  4031.  
  4032.  
  4033. // More Objects For Chrismats Party
  4034.     CreateDynamicObject(974, 1542.94726600, -1602.27722200, 15.27461600, 0.00000000, 0.00000000, -180.00001985);
  4035.     CreateDynamicObject(974, 1539.54528800, -1614.48364300, 15.24961700, 0.00000000, 0.00000000, -89.99998128);
  4036.     CreateDynamicObject(974, 1539.53869600, -1607.78747600, 15.24961700, 0.00000000, 0.00000000, -89.99998128);
  4037.     CreateDynamicObject(974, 1539.54650900, -1605.58544900, 15.27461600, 0.00000000, 0.00000000, -89.99998128);
  4038.     CreateDynamicObject(974, 1549.60314900, -1602.25317400, 15.27461600, 0.00000000, 0.00000000, 0.00000000);
  4039.     CreateDynamicObject(974, 1556.24462900, -1602.25317400, 15.27461600, 0.00000000, 0.00000000, 0.00000000);
  4040.     CreateDynamicObject(974, 1562.92724600, -1602.25317400, 15.27461600, 0.00000000, 0.00000000, 0.00000000);
  4041.     CreateDynamicObject(974, 1569.58105500, -1602.25317400, 15.27461600, 0.00000000, 0.00000000, 0.00000000);
  4042.     CreateDynamicObject(974, 1576.24023400, -1602.25317400, 15.27461600, 0.00000000, 0.00000000, 0.00000000);
  4043.     CreateDynamicObject(974, 1582.91650400, -1602.25317400, 15.27461600, 0.00000000, 0.00000000, 0.00000000);
  4044.     CreateDynamicObject(974, 1589.59729000, -1602.25317400, 15.27461600, 0.00000000, 0.00000000, 0.00000000);
  4045.     CreateDynamicObject(974, 1596.24047900, -1602.25317400, 15.27461600, 0.00000000, 0.00000000, 0.00000000);
  4046.     CreateDynamicObject(974, 1602.79431200, -1602.25317400, 15.27461600, 0.00000000, 0.00000000, 0.00000000);
  4047.     CreateDynamicObject(974, 1604.80346700, -1602.25317400, 15.27461600, 0.00000000, 0.00000000, 0.00000000);
  4048.     CreateDynamicObject(974, 1608.15246600, -1605.59777800, 15.27461600, 0.00000000, 0.00000000, -89.99998128);
  4049.     CreateDynamicObject(974, 1608.15246600, -1612.15527300, 15.20634400, 0.00000000, 0.00000000, -89.99998128);
  4050.     CreateDynamicObject(974, 1608.15246600, -1618.83618200, 15.20634400, 0.00000000, 0.00000000, -89.99998128);
  4051.     CreateDynamicObject(974, 1608.12463400, -1625.51184100, 15.20634400, 0.00000000, 0.00000000, -89.99998128);
  4052.     CreateDynamicObject(974, 1608.15869100, -1632.10571300, 15.20634400, 0.00000000, 0.00000000, -89.99998128);
  4053.     CreateDynamicObject(974, 1604.73803700, -1638.16406300, 15.20634400, 0.00000000, 0.00000000, 0.00000000);
  4054.     CreateDynamicObject(974, 1608.17346200, -1634.93750000, 15.14073800, 0.00000000, 0.00000000, -89.99998128);
  4055.     CreateDynamicObject(955, 1597.44299300, -1603.06311000, 12.83901200, 0.00000000, 0.00000000, 0.00000000);
  4056.     CreateDynamicObject(1209, 1598.75927700, -1602.90820300, 12.44795400, 0.00000000, 0.00000000, 0.00000000);
  4057.     CreateDynamicObject(1231, 1574.36169400, -1602.92016600, 15.11320500, 0.00000000, 0.00000000, 0.00000000);
  4058.     CreateDynamicObject(1281, 1558.04589800, -1611.68090800, 13.18319500, 0.00000000, 0.00000000, 0.00000000);
  4059.     CreateDynamicObject(1281, 1570.53308100, -1612.03503400, 13.18319500, 0.00000000, 0.00000000, 0.00000000);
  4060.     CreateDynamicObject(1281, 1563.92370600, -1615.52990700, 13.18319500, 0.00000000, 0.00000000, 0.00000000);
  4061.     CreateDynamicObject(1281, 1564.37719700, -1607.26879900, 13.18319500, 0.00000000, 0.00000000, 0.00000000);
  4062.     CreateDynamicObject(1281, 1585.78332500, -1611.96484400, 13.18319500, 0.00000000, 0.00000000, 0.00000000);
  4063.     CreateDynamicObject(1281, 1600.52685500, -1611.18298300, 13.26913600, 0.00000000, 0.00000000, 0.00000000);
  4064.     CreateDynamicObject(1281, 1592.29614300, -1607.89514200, 13.18319500, 0.00000000, 0.00000000, 0.00000000);
  4065.     CreateDynamicObject(1281, 1591.95214800, -1614.89489700, 13.18319500, 0.00000000, 0.00000000, 0.00000000);
  4066.     CreateDynamicObject(3265, 1541.34655800, -1620.27734400, 12.55456200, 0.00000000, 0.00000000, -89.99998128);
  4067.     CreateDynamicObject(3265, 1541.34655800, -1634.38073700, 12.55456200, 0.00000000, 0.00000000, -89.99998128);
  4068.  
  4069.  
  4070.  
  4071. //==========================================
  4072. // Mechanic Shop By Singam
  4073.     CreateDynamicObject(11387, 26.560546875, -179.8486328125, 4.1668853759766, 0, 0, 267.37426757813);
  4074.     CreateDynamicObject(5340, 56.352684020996, -159.20812988281, 1.2184318304062, 0, 0, 87.339508056641);
  4075.     CreateDynamicObject(5340, 52.178104400635, -159.02909851074, 1.1600155830383, 0, 0, 87.335815429688);
  4076.     CreateDynamicObject(5340, 45.239608764648, -158.70260620117, -0.35807120800018, 0, 0, 87.335815429688);
  4077.     CreateDynamicObject(5340, 38.226676940918, -158.35534667969, -0.33998391032219, 0, 0, 87.335815429688);
  4078.     CreateDynamicObject(5340, 31.25659942627, -158.03607177734, -0.33998438715935, 0, 0, 87.335815429688);
  4079.     CreateDynamicObject(5340, 24.257274627686, -157.68417358398, -0.31498467922211, 0, 0, 87.335815429688);
  4080.     CreateDynamicObject(5340, 17.27943611145, -157.35394287109, -0.29184755682945, 0, 0, 87.335815429688);
  4081.     CreateDynamicObject(5340, 10.298519134521, -157.05975341797, -0.28998389840126, 0, 0, 87.335815429688);
  4082.     CreateDynamicObject(5340, 6.7505874633789, -156.86190795898, -0.28998389840126, 0, 0, 87.335815429688);
  4083.     CreateDynamicObject(5340, 0.14672088623047, -158.26692199707, -0.27549108862877, 0, 0, 117.11077880859);
  4084.     CreateDynamicObject(5340, -1.1741138696671, -158.8729095459, -0.28384819626808, 0, 0, 117.10876464844);
  4085.     CreateDynamicObject(5340, -4.6153259277344, -163.96423339844, -0.27295613288879, 0, 0, 174.673828125);
  4086.     CreateDynamicObject(5340, -5.1327667236328, -170.94361877441, -0.26755583286285, 0, 0, 176.65661621094);
  4087.     CreateDynamicObject(5340, -5.679370880127, -177.93579101563, -0.25373589992523, 0, 0, 174.67163085938);
  4088.     CreateDynamicObject(5340, -6.0814170837402, -184.84065246582, -0.27327913045883, 0, 0, 178.6416015625);
  4089.     CreateDynamicObject(5340, 59.584777832031, -162.9573059082, 1.233332157135, 0, 0, 357.26989746094);
  4090.     CreateDynamicObject(5340, 59.2216796875, -170.1005859375, 1.2463202476501, 0, 0, 357.25061035156);
  4091.     CreateDynamicObject(5340, 59.3203125, -169.5244140625, 0.77132070064545, 0, 0, 357.49523925781);
  4092.     CreateDynamicObject(5340, 58.8681640625, -177.0908203125, 1.2560517787933, 0, 0, 356.2646484375);
  4093.     CreateDynamicObject(5340, 58.8603515625, -178.1005859375, 1.2266849279404, 0, 0, 357.26196289063);
  4094.     CreateDynamicObject(2790, 58.6220703125, -184.267578125, -0.68280476331711, 0, 0, 267.68188476563);
  4095.     CreateDynamicObject(2790, 58.427734375, -189.41015625, -0.68280470371246, 0, 0, 267.68188476563);
  4096.     CreateDynamicObject(2790, 58.236328125, -194.564453125, -0.68280476331711, 0, 0, 267.68188476563);
  4097.     CreateDynamicObject(2790, 58.17578125, -196.39453125, -0.68280482292175, 0, 0, 267.68188476563);
  4098.     CreateDynamicObject(4100, 58.451854705811, -188.00914001465, 2.1972682476044, 0, 0, 48.139770507813);
  4099.     CreateDynamicObject(4100, 36.439853668213, -158.20877075195, 2.941752910614, 0, 0, 317.58032226563);
  4100.     CreateDynamicObject(4100, 22.7021484375, -157.5478515625, 2.9417519569397, 0, 0, 317.57080078125);
  4101.     CreateDynamicObject(4100, 10.289872169495, -156.99661254883, 2.9667530059814, 0, 0, 317.57629394531);
  4102.     CreateDynamicObject(4100, -4.7647819519043, -167.13227844238, 2.6665723323822, 0, 0, 46.151611328125);
  4103.     CreateDynamicObject(4100, -5.7265625, -180.822265625, 2.6361882686615, 0, 0, 46.148071289063);
  4104.     CreateDynamicObject(4100, 7.1932754516602, -196.63792419434, 2.3254432678223, 0, 0, 317.07629394531);
  4105.     CreateDynamicObject(4100, 20.926099777222, -197.44850158691, 2.2974755764008, 0, 0, 317.0654296875);
  4106.     CreateDynamicObject(4100, 34.635879516602, -198.17727661133, 2.2752301692963, 0, 0, 317.0654296875);
  4107.     CreateDynamicObject(971, -0.4794921875, -158.6748046875, 0.32819893956184, 0, 0, 27.020874023438);
  4108.     CreateDynamicObject(971, -3.6039218902588, -191.51502990723, 0.16938871145248, 0, 0, 306.90539550781);
  4109.     CreateDynamicObject(1358, 0.169921875, -193.8818359375, 1.7042224407196, 0, 0, 124.09606933594);
  4110.     CreateDynamicObject(11102, 46.01953125, -180.630859375, 2.8455200195313, 0, 0, 87.335815429688);
  4111.     CreateDynamicObject(11102, 27.273530960083, -166.00508117676, 2.9351332187653, 0, 0, 356.51184082031);
  4112.     CreateDynamicObject(11389, 43.0595703125, -171.2255859375, 3.9212679862976, 0, 0, 266.9677734375);
  4113.     CreateDynamicObject(11388, 43.091949462891, -171.15899658203, 7.4925870895386, 0, 0, 86.992431640625);
  4114.     CreateDynamicObject(11391, 35.439453125, -162.7216796875, 2.0350184440613, 0, 0, 266.68212890625);
  4115.     CreateDynamicObject(2007, 27.913049697876, -176.51443481445, 0.80751037597656, 0, 0, 87.881958007813);
  4116.     CreateDynamicObject(1757, 34.112133026123, -178.86680603027, 0.80751037597656, 0, 0, 141.29211425781);
  4117.     CreateDynamicObject(2069, 35.948928833008, -178.88513183594, 0.80751037597656, 0, 0, 0);
  4118.     CreateDynamicObject(1491, 36.210517883301, -172.19793701172, 0.86189699172974, 0, 0, 171.73046875);
  4119.     CreateDynamicObject(2008, 30.322746276855, -173.19921875, 0.80751037597656, 0, 0, 240.4052734375);
  4120.     CreateDynamicObject(1714, 28.855928421021, -172.99273681641, 0.80751037597656, 0, 0, 49.624694824219);
  4121.     CreateDynamicObject(2007, 32.962882995605, -162.6215057373, 0.48251065611839, 0, 0, 359.24743652344);
  4122.     CreateDynamicObject(2007, 32.089950561523, -162.58236694336, 0.48251065611839, 0, 0, 359.24743652344);
  4123.     CreateDynamicObject(2007, 31.497318267822, -162.53363037109, 0.60751056671143, 0, 0, 359.24743652344);
  4124.     CreateDynamicObject(2007, 37.187511444092, -162.59223937988, 0.20751059055328, 0, 0, 359.24743652344);
  4125.     CreateDynamicObject(2007, 38.361949920654, -162.72303771973, 0.20751059055328, 0, 0, 356.77746582031);
  4126.     CreateDynamicObject(2007, 42.29296875, -163.14099121094, 0.532510638237, 0, 0, 359.24743652344);
  4127.     CreateDynamicObject(2007, 41.319869995117, -163.07298278809, 0.58251059055328, 0, 0, 359.24743652344);
  4128.     CreateDynamicObject(2007, 40.74393081665, -163.00164794922, 0.532510638237, 0, 0, 359.24743652344);
  4129.     CreateDynamicObject(2000, 44.925407409668, -164.90087890625, 0.25751060247421, 0, 0, 11.909912109375);
  4130.     CreateDynamicObject(2000, 51.874332427979, -168.11657714844, 0.20751059055328, 0, 0, 11.9091796875);
  4131.     CreateDynamicObject(2000, 49.964920043945, -164.92735290527, 0.28251060843468, 0, 0, 39.319152832031);
  4132.     CreateDynamicObject(2000, 51.568332672119, -165.36831665039, 0.60751056671143, 0, 0, 39.314575195313);
  4133.     CreateDynamicObject(2000, 52.688552856445, -165.54925537109, 0.50751066207886, 0, 0, 39.314575195313);
  4134.     CreateDynamicObject(2000, 52.940467834473, -164.41421508789, 0.63950479030609, 0, 0, 39.314575195313);
  4135.     CreateDynamicObject(2000, 51.690887451172, -164.33868408203, 0.65751051902771, 0, 0, 39.314575195313);
  4136.     CreateDynamicObject(2596, 36.809200286865, -172.93487548828, 3.7333688735962, 0, 0, 298.92041015625);
  4137.     CreateDynamicObject(1432, 39.713287353516, -177.3010559082, 0.80751037597656, 0, 0, 0);
  4138.     CreateDynamicObject(2893, 54.272392272949, -169.07543945313, 2.0440409183502, 7.9400024414063, 0, 356.24523925781);
  4139.     CreateDynamicObject(2893, 56.05827331543, -169.21112060547, 2.034042596817, 7.9376220703125, 0, 357.4951171875);
  4140.     CreateDynamicObject(2893, 56.455726623535, -163.46516418457, 1.9714000225067, 343.13269042969, 0, 355.9951171875);
  4141.     CreateDynamicObject(2893, 54.609245300293, -163.39312744141, 1.9590425491333, 343.13049316406, 0, 355.98999023438);
  4142.     CreateDynamicObject(2893, 45.87572479248, -168.58265686035, 2.034042596817, 7.9376220703125, 0, 356.24267578125);
  4143.     CreateDynamicObject(2893, 47.68533706665, -168.6791229248, 2.0590426921844, 7.9376220703125, 0, 356.24267578125);
  4144.     CreateDynamicObject(2893, 46.171485900879, -162.80822753906, 2.0109088420868, 343.13049316406, 0, 357.48999023438);
  4145.     CreateDynamicObject(2893, 47.99295425415, -162.96185302734, 1.9840425252914, 343.125, 0, 357.23962402344);
  4146.     CreateDynamicObject(910, 28.600355148315, -162.30627441406, 2.0766658782959, 0, 0, 0);
  4147.     CreateDynamicObject(3399, 38.01496887207, -160.10847473145, 2.826554775238, 0, 0, 358.51501464844);
  4148.     CreateDynamicObject(11390, 43.037899017334, -171.19500732422, 5.1630363464355, 0, 0, 266.7041015625);
  4149.  
  4150. //=====================================================================
  4151. // NEw Airport Singam
  4152. //=====================
  4153.     CreateDynamicObject(6417, -1117.732910, -1026.921753, 111.179657, 0.0000, 0.0000, 181.1007);
  4154.     CreateDynamicObject(8355, -1065.660400, -967.002869, 128.220673, 0.0000, 0.0000, 51.9528);
  4155.     CreateDynamicObject(17058, -1116.108887, -1018.144104, 128.150375, 0.0000, 0.0000, 90.8594);
  4156.     CreateDynamicObject(2792, -1124.012085, -1009.502441, 131.097626, 0.0000, 0.0000, 270.0000);
  4157.     CreateDynamicObject(2793, -1108.246216, -1028.910767, 130.893265, 0.0000, 0.0000, 270.8595);
  4158.     CreateDynamicObject(2793, -1108.816528, -1025.530640, 129.987701, 0.0000, 0.0000, 270.0000);
  4159.     CreateDynamicObject(2792, -1123.512329, -1006.200562, 130.049011, 0.0000, 0.0000, 90.0000);
  4160.     CreateDynamicObject(989, -1115.839233, -1032.953247, 129.389709, 0.0000, 0.0000, 287.2660);
  4161.     CreateDynamicObject(1681, -1136.640503, -1051.645752, 130.272003, 0.0000, 0.0000, 270.0000);
  4162.     CreateDynamicObject(12950, -1115.613403, -1036.476929, 128.693146, 355.7028, 0.0000, 0.0000);
  4163.     CreateDynamicObject(13011, -1120.597168, -972.880127, 128.427032, 0.0000, 0.0000, 269.6909);
  4164.     CreateDynamicObject(996, -1124.399902, -968.937378, 128.967499, 0.0000, 0.0000, 270.0000);
  4165.     CreateDynamicObject(3850, -1114.397583, -972.017578, 128.764664, 0.0000, 0.0000, 0.0000);
  4166.     CreateDynamicObject(3850, -1115.526611, -969.159485, 128.764664, 0.0000, 0.0000, 45.0000);
  4167.     CreateDynamicObject(2794, -1124.006714, -976.454407, 129.987000, 0.0000, 0.0000, 90.0000);
  4168.     CreateDynamicObject(2794, -1124.447510, -979.925842, 130.799103, 0.0000, 0.0000, 92.5783);
  4169.     CreateDynamicObject(2795, -1109.235718, -995.635864, 130.083008, 0.0000, 0.0000, 90.0000);
  4170.     CreateDynamicObject(2795, -1108.706421, -999.104797, 130.736130, 0.0000, 0.0000, 271.7189);
  4171.     CreateDynamicObject(3850, -1118.413818, -968.037170, 128.813110, 0.0000, 0.0000, 90.5501);
  4172.     CreateDynamicObject(3850, -1121.852539, -968.089355, 128.848511, 0.0000, 0.0000, 90.5501);
  4173.     CreateDynamicObject(1483, -1120.179688, -969.099304, 129.903519, 0.0000, 0.0000, 270.0000);
  4174.     CreateDynamicObject(3637, -1011.985901, -928.411682, 136.304871, 0.0000, 0.0000, 178.2811);
  4175.     CreateDynamicObject(3643, -1003.311401, -942.704224, 133.223755, 0.0000, 0.0000, 45.9368);
  4176.     CreateDynamicObject(3287, -1010.112183, -944.393738, 132.957794, 0.0000, 0.0000, 270.0000);
  4177.     CreateDynamicObject(3440, -1093.520020, -972.403320, 130.595245, 0.0000, 0.0000, 0.0000);
  4178.     CreateDynamicObject(16368, -1094.098999, -972.212280, 132.681030, 0.0000, 0.0000, 112.5000);
  4179.     CreateDynamicObject(10764, -965.108887, -1044.426636, 131.553131, 0.0000, 0.0000, 277.8123);
  4180.     CreateDynamicObject(3877, -1129.666626, -936.541565, 126.809486, 1.7189, 0.0000, 315.0000);
  4181.     CreateDynamicObject(3877, -1124.233765, -929.709167, 126.736404, 0.0000, 0.0000, 320.2340);
  4182.     CreateDynamicObject(3877, -1117.639038, -921.737366, 126.761421, 0.0000, 0.0000, 323.5944);
  4183.     CreateDynamicObject(3877, -1110.303589, -912.653259, 126.736420, 0.0000, 0.0000, 318.4378);
  4184.     CreateDynamicObject(3877, -1089.928467, -967.539001, 126.886414, 0.0000, 0.0000, 322.8123);
  4185.     CreateDynamicObject(3877, -1070.216553, -943.456299, 126.761421, 0.0000, 0.0000, 326.2500);
  4186.     CreateDynamicObject(3877, -1002.298401, -997.031189, 126.736420, 0.0000, 0.0000, 315.0000);
  4187.     CreateDynamicObject(3877, -940.675415, -1054.752075, 126.734497, 0.0000, 0.0000, 326.2500);
  4188.     CreateDynamicObject(3877, -949.010559, -1065.043091, 126.734512, 0.0000, 0.0000, 326.2500);
  4189.     CreateDynamicObject(3877, -1133.185547, -916.319824, 126.709496, 0.0000, 0.0000, 319.2972);
  4190.     CreateDynamicObject(3877, -1170.129272, -887.655762, 125.183777, 0.0000, 0.0000, 326.2500);
  4191.     CreateDynamicObject(3877, -1192.076050, -868.328003, 121.669327, 0.0000, 0.0000, 315.0000);
  4192.     CreateDynamicObject(3877, -1008.135803, -1004.387695, 126.811409, 0.0000, 0.0000, 319.2972);
  4193.     CreateDynamicObject(3877, -1014.155640, -1012.668335, 126.811409, 0.0000, 0.0000, 326.2500);
  4194.     CreateDynamicObject(3877, -1021.229553, -1021.219055, 126.836411, 0.0000, 0.0000, 56.2500);
  4195.     CreateDynamicObject(3877, -1057.888184, -992.687439, 126.761421, 0.0000, 0.0000, 45.0000);
  4196.     CreateDynamicObject(3877, -1038.145264, -968.700012, 126.711403, 0.0000, 0.0000, 56.2500);
  4197.     CreateDynamicObject(7981, -1189.283447, -923.826050, 132.242325, 0.0000, 0.0000, 348.7500);
  4198.     CreateDynamicObject(8251, -1183.453979, -1054.670776, 132.121567, 0.0000, 0.0000, 90.0000);
  4199.     CreateDynamicObject(3663, -1129.547363, -1003.592773, 129.999603, 0.0000, 0.0000, 90.0001);
  4200.     CreateDynamicObject(3663, -1102.076660, -1021.731873, 130.024597, 0.0000, 0.0000, 90.0000);
  4201.     CreateDynamicObject(1682, -1182.505737, -926.505493, 143.346634, 0.0000, 0.0000, 270.0000);
  4202.     CreateDynamicObject(16775, -1115.065063, -1070.474487, 128.168228, 289.5262, 0.0000, 0.0000);
  4203.     CreateDynamicObject(16775, -1115.230103, -1062.666748, 128.167953, 290.3856, 0.0000, 179.6223);
  4204.     CreateDynamicObject(2700, -1109.246338, -1021.902344, 130.029449, 0.0000, 0.0000, 180.0000);
  4205.     CreateDynamicObject(967, -1213.959839, -1070.377441, 127.373100, 0.0000, 0.0000, 272.5008);
  4206.     CreateDynamicObject(966, -1212.122559, -1068.903076, 127.265625, 0.0000, 0.0000, 180.0000);
  4207.     CreateDynamicObject(978, -1199.374023, -1070.917969, 128.809540, 0.0000, 0.0000, 173.9067);
  4208.     CreateDynamicObject(978, -1217.717163, -1074.700195, 128.594574, 0.0000, 0.0000, 237.0322);
  4209.     CreateDynamicObject(968, -1212.160156, -1068.963379, 128.324875, 0.0000, 0.0000, 0.0000);
  4210.     CreateDynamicObject(2790, -1108.975586, -1024.444580, 127.493362, 0.0000, 0.0000, 270.0000);
  4211.     CreateDynamicObject(2789, -1123.603271, -1014.444580, 127.694305, 0.0000, 0.0000, 270.8595);
  4212.     CreateDynamicObject(2789, -1124.226318, -984.292603, 127.592422, 0.0000, 0.0000, 271.7189);
  4213.     CreateDynamicObject(2789, -1123.857422, -984.285461, 127.503479, 0.0000, 0.0000, 91.7189);
  4214.     CreateDynamicObject(2789, -1123.320435, -1013.993225, 127.520737, 0.0000, 0.0000, 90.0000);
  4215.     CreateDynamicObject(2790, -1109.375122, -994.709412, 127.538422, 0.0000, 0.0000, 270.0000);
  4216.     CreateDynamicObject(2790, -1109.004395, -994.612000, 127.495560, 0.0000, 0.0000, 90.0000);
  4217.     CreateDynamicObject(2790, -1108.498413, -1024.459595, 127.651855, 0.0000, 0.0000, 90.8594);
  4218.     CreateDynamicObject(993, -1116.862061, -1007.101807, 129.832535, 0.0000, 0.0000, 270.8595);
  4219.     CreateDynamicObject(993, -1116.927368, -997.230408, 129.832535, 0.0000, 0.0000, 270.0000);
  4220.     CreateDynamicObject(993, -1116.917358, -987.247681, 129.832535, 0.0000, 0.0000, 270.0000);
  4221.     CreateDynamicObject(993, -1116.776855, -1016.770752, 129.832535, 0.0000, 0.0000, 270.0000);
  4222.     CreateDynamicObject(993, -1116.697754, -1026.818970, 129.832535, 0.0000, 0.0000, 270.8595);
  4223.     CreateDynamicObject(997, -1116.360840, -1031.604126, 128.319061, 0.0000, 0.0000, 337.5000);
  4224.     CreateDynamicObject(997, -1119.187256, -1032.711304, 128.319061, 0.0000, 0.0000, 22.5000);
  4225.     CreateDynamicObject(997, -1116.589478, -979.175903, 128.319061, 0.0000, 0.0000, 270.0000);
  4226.     CreateDynamicObject(997, -1116.651733, -976.100708, 128.319061, 0.0000, 0.0000, 270.0000);
  4227.     CreateDynamicObject(997, -1116.658081, -972.938110, 128.319061, 0.0000, 0.0000, 270.0000);
  4228.     CreateDynamicObject(3657, -1119.332764, -984.604004, 128.612000, 0.0000, 0.0000, 270.0000);
  4229.     CreateDynamicObject(3657, -1119.436523, -979.054199, 128.736969, 0.0000, 0.0000, 270.0000);
  4230.     CreateDynamicObject(2198, -1122.331909, -982.293457, 128.210938, 0.0000, 0.0000, 270.0000);
  4231.     CreateDynamicObject(2198, -1121.690186, -1006.267944, 128.210938, 0.0000, 0.0000, 270.0000);
  4232.     CreateDynamicObject(2198, -1115.715332, -998.204651, 131.552475, 0.0000, 0.0000, 90.0000);
  4233.     CreateDynamicObject(2198, -1115.820435, -993.681763, 131.552475, 0.0000, 0.0000, 90.0000);
  4234.     CreateDynamicObject(2198, -1115.996582, -988.338318, 131.552475, 0.0000, 0.0000, 90.0000);
  4235.     CreateDynamicObject(2198, -1116.026123, -983.777222, 131.552475, 0.0000, 0.0000, 90.0000);
  4236.     CreateDynamicObject(2773, -1115.274292, -999.870239, 132.077515, 0.0000, 0.0000, 22.5000);
  4237.     CreateDynamicObject(2773, -1114.551270, -1001.580566, 132.100281, 0.0000, 0.0000, 22.5000);
  4238.     CreateDynamicObject(2773, -1114.917725, -979.674377, 132.077515, 0.0000, 359.1406, 356.4076);
  4239.     CreateDynamicObject(2773, -1114.841919, -977.298462, 132.117416, 0.0000, 0.0000, 0.0000);
  4240.     CreateDynamicObject(2773, -1114.926636, -975.006409, 132.152405, 0.0000, 0.0000, 0.0000);
  4241.     CreateDynamicObject(2781, -1115.637695, -996.204285, 131.567947, 0.0000, 0.0000, 90.0000);
  4242.     CreateDynamicObject(2781, -1115.665405, -991.572937, 131.567947, 0.0000, 0.0000, 90.0000);
  4243.     CreateDynamicObject(2781, -1115.824219, -981.581543, 131.567947, 0.0000, 0.0000, 90.0000);
  4244.     CreateDynamicObject(3402, -1116.578125, -988.547974, 128.210037, 0.0000, 0.0000, 90.8594);
  4245.     CreateDynamicObject(2781, -1115.928833, -986.286560, 131.592697, 0.0000, 0.0000, 90.0000);
  4246.     CreateDynamicObject(3851, -1118.962158, -997.576538, 129.318970, 0.0000, 0.0000, 0.0000);
  4247.     CreateDynamicObject(16501, -1121.256348, -999.599976, 128.144241, 0.0000, 269.7592, 0.8594);
  4248.     CreateDynamicObject(16501, -1121.340332, -992.546936, 128.144791, 0.0000, 269.7592, 0.8594);
  4249.     CreateDynamicObject(16500, -1121.231689, -988.913330, 128.638336, 0.0000, 0.0000, 270.0000);
  4250.     CreateDynamicObject(2430, -1119.458862, -998.879639, 130.018768, 0.0000, 0.0000, 180.0000);
  4251.     CreateDynamicObject(1808, -1123.388428, -974.651001, 128.213593, 0.0000, 0.0000, 90.0000);
  4252.     CreateDynamicObject(1808, -1122.744141, -1011.903259, 128.213593, 0.0000, 0.0000, 91.7962);
  4253.     CreateDynamicObject(3336, -1107.392456, -1090.910156, 128.621918, 0.0000, 0.0000, 270.0000);
  4254.     CreateDynamicObject(2147, -1119.436768, -1002.767822, 128.252182, 0.0000, 0.0000, 180.0000);
  4255.     CreateDynamicObject(2417, -1122.980835, -1002.763977, 128.240097, 0.0000, 0.0000, 180.0000);
  4256.     CreateDynamicObject(2419, -1120.789429, -1002.606750, 128.251862, 0.0000, 0.0000, 180.0000);
  4257.     CreateDynamicObject(2416, -1120.850220, -1000.670166, 128.249847, 0.0000, 0.0000, 180.0000);
  4258.     CreateDynamicObject(1886, -1123.057617, -990.014954, 130.791168, 24.9237, 359.1406, 56.2500);
  4259.     CreateDynamicObject(1886, -1123.131470, -997.515503, 130.776382, 18.0482, 0.0000, 135.0000);
  4260.     CreateDynamicObject(1885, -1119.399902, -993.854370, 128.257217, 0.0000, 0.0000, 180.0000);
  4261.     CreateDynamicObject(1984, -1121.175781, -991.412903, 128.242142, 0.0000, 0.0000, 180.0000);
  4262.     CreateDynamicObject(2362, -1120.896851, -991.139160, 129.187256, 0.0000, 0.0000, 0.0000);
  4263.     CreateDynamicObject(2424, -1119.540039, -999.037292, 128.125687, 0.0000, 0.0000, 180.0000);
  4264.     CreateDynamicObject(2424, -1120.473511, -999.028320, 128.121658, 0.0000, 0.0000, 180.0000);
  4265.     CreateDynamicObject(2424, -1121.397949, -999.041382, 128.117874, 0.0000, 0.0000, 180.0000);
  4266.     CreateDynamicObject(2424, -1122.322998, -999.039429, 128.114105, 0.0000, 0.0000, 180.0000);
  4267.     CreateDynamicObject(2424, -1123.052856, -999.035583, 128.110016, 0.0000, 0.0000, 180.0000);
  4268.     CreateDynamicObject(9245, -1042.526855, -1058.072510, 139.831680, 0.0000, 0.0000, 180.0000);
  4269.     CreateDynamicObject(1775, -1122.791382, -1017.457031, 129.315781, 0.0000, 0.0000, 90.0000);
  4270.     CreateDynamicObject(1776, -1122.545532, -1018.958923, 129.318146, 0.0000, 0.0000, 90.0000);
  4271.     CreateDynamicObject(2212, -1122.173950, -998.846985, 129.247421, 331.6386, 25.7831, 253.5161);
  4272.     CreateDynamicObject(2342, -1121.725098, -1000.342834, 129.307327, 0.0000, 0.0000, 0.0000);
  4273.     CreateDynamicObject(2420, -1123.496460, -996.664063, 128.188522, 0.0000, 0.0000, 90.0000);
  4274.     CreateDynamicObject(2425, -1123.226318, -999.194153, 129.163055, 0.0000, 0.0000, 180.0000);
  4275.     CreateDynamicObject(2663, -1122.485229, -998.923218, 129.399506, 0.0000, 0.0000, 270.0000);
  4276.     CreateDynamicObject(2823, -1123.277344, -996.842590, 129.424744, 0.0000, 0.0000, 78.7500);
  4277.     CreateDynamicObject(16777, -1123.632568, -1216.064941, 128.212860, 0.0000, 0.0000, 0.0000);
  4278.     CreateDynamicObject(16106, -1131.365723, -1200.685059, 132.293991, 0.0000, 0.0000, 90.0000);
  4279.     CreateDynamicObject(683, -1160.092407, -1207.577881, 128.342041, 0.0000, 0.0000, 348.7500);
  4280.     CreateDynamicObject(683, -1166.461548, -1198.850708, 128.342041, 0.0000, 0.0000, 0.0000);
  4281.     CreateDynamicObject(683, -1167.011963, -1186.391235, 128.342041, 0.0000, 0.0000, 0.0000);
  4282.     CreateDynamicObject(683, -1164.721680, -1171.957886, 128.342041, 0.0000, 0.0000, 0.0000);
  4283.     CreateDynamicObject(987, -1107.786377, -1065.967163, 128.250198, 0.0000, 0.0000, 91.7189);
  4284.     CreateDynamicObject(987, -1108.207275, -1054.647705, 128.218750, 0.0000, 0.0000, 90.0000);
  4285.     CreateDynamicObject(987, -1108.264526, -1043.724609, 128.211929, 0.0000, 0.0000, 90.0000);
  4286.     CreateDynamicObject(987, -1123.193481, -1065.938110, 128.218750, 0.0000, 0.0000, 90.8594);
  4287.     CreateDynamicObject(987, -1123.445068, -1054.112183, 128.080460, 0.0000, 0.0000, 90.0000);
  4288.     CreateDynamicObject(987, -1123.108154, -1045.740112, 128.392166, 0.0000, 0.0000, 90.8594);
  4289.     CreateDynamicObject(1514, -1119.504639, -999.071899, 129.396637, 0.0000, 0.0000, 180.0000);
  4290.     CreateDynamicObject(1991, -1119.482422, -994.949829, 128.256378, 0.0000, 0.0000, 270.0000);
  4291.     CreateDynamicObject(1996, -1119.483765, -995.932495, 128.256973, 0.0000, 0.0000, 270.0000);
  4292.     CreateDynamicObject(2621, -1121.468018, -995.518738, 128.994339, 0.0000, 0.0000, 0.0000);
  4293.     CreateDynamicObject(2622, -1121.507690, -993.908081, 129.034439, 0.0000, 0.0000, 0.0000);
  4294.     CreateDynamicObject(2541, -1123.172974, -993.304199, 128.247314, 0.0000, 0.0000, 90.0000);
  4295.     CreateDynamicObject(2490, -1121.745361, -991.565735, 129.295395, 0.0000, 0.0000, 0.0000);
  4296.     CreateDynamicObject(2491, -1119.016357, -996.955505, 128.212357, 0.0000, 0.0000, 315.0000);
  4297.     CreateDynamicObject(2494, -1119.554810, -996.769714, 129.201294, 0.0000, 0.0000, 225.0000);
  4298.     CreateDynamicObject(2654, -1122.843140, -989.248962, 128.462601, 0.0000, 0.0000, 270.0000);
  4299.     CreateDynamicObject(2460, -1123.242798, -995.815735, 128.236893, 0.0000, 0.0000, 90.0000);
  4300.     CreateDynamicObject(2507, -1119.660522, -997.251526, 129.238602, 0.0000, 0.0000, 315.0000);
  4301.     CreateDynamicObject(2386, -1123.156738, -995.924744, 128.574585, 0.0000, 0.0000, 90.0000);
  4302.     CreateDynamicObject(2374, -1119.198486, -993.068787, 129.281418, 0.0000, 0.0000, 270.0000);
  4303.     CreateDynamicObject(2383, -1119.225098, -992.478760, 129.257629, 0.0000, 0.0000, 180.0000);
  4304.     CreateDynamicObject(2466, -1123.356934, -994.897522, 128.626495, 0.0000, 0.0000, 95.9387);
  4305.     CreateDynamicObject(2483, -1123.485107, -995.418823, 129.516220, 0.0000, 0.0000, 78.7500);
  4306.     CreateDynamicObject(3657, -1119.829956, -1012.672363, 128.736969, 0.0000, 0.0000, 270.0000);
  4307.     CreateDynamicObject(3657, -1119.831421, -1020.131714, 128.736969, 0.0000, 0.0000, 270.0000);
  4308.     CreateDynamicObject(2690, -1108.968140, -1031.733521, 129.285019, 0.0000, 0.0000, 0.0000);
  4309.     CreateDynamicObject(2690, -1123.525757, -990.131104, 129.276260, 0.0000, 0.0000, 191.2500);
  4310.     CreateDynamicObject(1318, -1115.596680, -975.149963, 128.242340, 0.0000, 96.2569, 270.0000);
  4311.     CreateDynamicObject(1318, -1117.974365, -975.306763, 128.217224, 0.0000, 85.9437, 90.0000);
  4312.     CreateDynamicObject(3398, -1127.993286, -988.094055, 142.407166, 0.0000, 0.0000, 258.7501);
  4313.     CreateDynamicObject(3398, -1125.934937, -1032.061279, 142.407166, 0.0000, 0.0000, 268.8997);
  4314.     CreateDynamicObject(3398, -1101.308716, -983.146545, 142.407166, 0.0000, 0.0000, 62.4980);
  4315.     CreateDynamicObject(3398, -1106.982300, -1017.197754, 142.407166, 0.0000, 0.0000, 97.7349);
  4316.     CreateDynamicObject(1340, -1111.458008, -1036.552490, 129.339508, 0.0000, 0.0000, 270.0001);
  4317.     CreateDynamicObject(2797, -1112.420532, -1032.975830, 131.603607, 0.0000, 0.0000, 0.0000);
  4318.     CreateDynamicObject(2796, -1113.811646, -1013.460449, 134.703796, 0.0000, 0.0000, 270.0000);
  4319.     CreateDynamicObject(16500, -1113.675171, -1013.379028, 133.277527, 0.0000, 0.0000, 1.7189);
  4320.     CreateDynamicObject(2878, -1113.804565, -1011.477234, 132.705475, 0.0000, 0.0000, 270.0000);
  4321.     CreateDynamicObject(2878, -1113.792725, -1013.504395, 132.705475, 0.0000, 0.0000, 270.0000);
  4322.     CreateDynamicObject(991, -1111.540527, -1011.660034, 128.284027, 268.0403, 0.0000, 91.7189);
  4323.     CreateDynamicObject(4639, -1111.439087, -1015.348083, 126.958282, 358.2811, 38.6747, 269.1406);
  4324.     CreateDynamicObject(4639, -1111.635864, -1007.316406, 126.996681, 0.0000, 330.7792, 273.4377);
  4325.     CreateDynamicObject(1572, -1110.149658, -1019.698303, 128.789383, 0.0000, 0.0000, 90.0000);
  4326.     CreateDynamicObject(1572, -1110.168701, -1018.531494, 128.789383, 0.0000, 0.0000, 90.0000);
  4327.     CreateDynamicObject(1572, -1112.595703, -1031.177979, 128.789383, 0.0000, 0.0000, 0.0000);
  4328.     CreateDynamicObject(1572, -1111.468262, -1031.186279, 128.789383, 0.0000, 0.0000, 0.0000);
  4329.     CreateDynamicObject(1572, -1110.920776, -1001.697449, 128.789383, 0.0000, 0.0000, 0.0000);
  4330.     CreateDynamicObject(1572, -1111.892822, -1001.826294, 128.789383, 0.0000, 0.0000, 0.0000);
  4331.     CreateDynamicObject(1572, -1112.913086, -1001.687378, 128.789383, 0.0000, 0.0000, 0.0000);
  4332.     CreateDynamicObject(1359, -1110.348389, -995.982422, 128.917313, 0.0000, 0.0000, 0.0000);
  4333.     CreateDynamicObject(1465, -1110.679932, -972.551147, 129.383331, 0.0000, 0.0000, 180.0000);
  4334.     CreateDynamicObject(1465, -1110.667725, -972.577637, 131.633331, 0.0000, 0.0000, 180.0000);
  4335.     CreateDynamicObject(1437, -1113.369751, -972.527161, 129.480988, 0.0000, 0.0000, 225.0000);
  4336.     CreateDynamicObject(2350, -1119.821655, -998.036560, 128.628540, 0.0000, 0.0000, 0.0000);
  4337.     CreateDynamicObject(2350, -1120.935913, -998.041443, 128.623856, 0.0000, 0.0000, 0.0000);
  4338.     CreateDynamicObject(2350, -1122.019165, -998.128601, 128.619293, 0.0000, 0.0000, 0.0000);
  4339.     CreateDynamicObject(632, -1121.850586, -987.746460, 128.440842, 0.0000, 0.0000, 0.0000);
  4340.     CreateDynamicObject(638, -1123.511963, -976.880249, 128.915787, 0.0000, 0.0000, 0.0000);
  4341.     CreateDynamicObject(640, -1109.742920, -1011.241943, 128.915787, 0.0000, 0.0000, 0.0000);
  4342.     CreateDynamicObject(2775, -1123.575684, -985.130371, 130.197205, 0.0000, 0.0000, 90.0000);
  4343.     CreateDynamicObject(2775, -1123.141846, -1014.220398, 129.996185, 0.0000, 0.0000, 90.0000);
  4344.     CreateDynamicObject(2775, -1114.376587, -993.499634, 134.812302, 0.0000, 0.0000, 270.0000);
  4345.     CreateDynamicObject(1452, -1110.075684, -1042.241333, 129.270950, 0.0000, 0.0000, 270.0000);
  4346.     CreateDynamicObject(1234, -1109.525879, -1043.359497, 129.771606, 0.0000, 0.0000, 270.0000);
  4347.     CreateDynamicObject(1267, -1043.237915, -1113.928589, 142.033447, 0.0000, 0.0000, 303.7500);
  4348.     CreateDynamicObject(1216, -1109.902344, -1042.254761, 128.903931, 0.0000, 0.0000, 270.0000);
  4349.     CreateDynamicObject(1223, -1119.867432, -1035.170776, 128.099731, 0.0000, 0.0000, 11.2500);
  4350.     CreateDynamicObject(1223, -1109.564209, -1050.438599, 128.206528, 0.0000, 0.0000, 185.2339);
  4351.     CreateDynamicObject(1223, -1122.512207, -1062.611084, 128.262268, 0.0000, 0.0000, 11.2500);
  4352.     CreateDynamicObject(1363, -1119.762573, -1016.196472, 129.030121, 0.0000, 0.0000, 0.0000);
  4353.     CreateDynamicObject(1363, -1112.942993, -993.159790, 129.005127, 0.0000, 0.0000, 0.0000);
  4354.     CreateDynamicObject(16779, -1121.437378, -995.223938, 130.982269, 0.0000, 0.0000, 0.0000);
  4355.     CreateDynamicObject(2690, -1121.790039, -974.097168, 129.342361, 0.0000, 0.0000, 67.5000);
  4356. //======Singam's House
  4357.     AddStaticVehicleEx(487,864.90954590,-3056.35498047,46.22301483,0.00000000,-1,-1,15); //Maverick
  4358.     AddStaticVehicleEx(447,782.93762207,-3055.43481445,46.07363892,0.00000000,-1,-1,15); //Seasparrow
  4359.     AddStaticVehicleEx(563,747.31427002,-3012.25415039,46.79761887,270.00000000,1,6,15); //Raindance
  4360.     AddStaticVehicleEx(559,844.58251953,-3000.30688477,42.36431885,0.00000000,-1,-1,15); //Jester
  4361.     AddStaticVehicleEx(560,849.37426758,-3000.76806641,42.41522980,0.00000000,-1,-1,15); //Sultan
  4362.     AddStaticVehicleEx(562,853.84625244,-3000.71606445,42.36380386,0.00000000,-1,-1,15); //Elegy
  4363.     AddStaticVehicleEx(603,858.40380859,-3000.57421875,42.61293030,0.00000000,-1,-1,15); //Phoenix
  4364.     AddStaticVehicleEx(535,863.24499512,-3000.64794922,42.47369385,0.00000000,-1,-1,15); //Slamvan
  4365.     AddStaticVehicleEx(409,905.11944580,-2756.33471680,12.97968769,90.00000000,3,1,15); //Stretch
  4366.     AddStaticVehicleEx(409,904.78735352,-2765.16699219,12.97968769,90.00000000,6,1,15); //Stretch
  4367.     AddStaticVehicleEx(426,695.22888184,-2796.06274414,12.93718910,270.00000000,-1,-1,15); //Premier
  4368.     AddStaticVehicleEx(489,695.56317139,-2801.81616211,13.47731590,270.00000000,3,1,15); //Rancher
  4369.     AddStaticVehicleEx(500,696.01239014,-2807.55224609,13.33718967,270.00000000,-1,-1,15); //Mesa
  4370.     AddStaticVehicleEx(579,696.22802734,-2813.33154297,13.21582699,268.00000000,-1,-1,15); //Huntley
  4371.     AddStaticVehicleEx(424,695.32867432,-2790.08251953,12.96441555,274.00000000,-1,-1,15); //BF Injection
  4372.     AddStaticVehicleEx(522,721.11700439,-2783.34863281,12.77756500,153.99993896,-1,-1,15); //NRG-500
  4373.     AddStaticVehicleEx(522,719.93432617,-2782.90039062,12.77756691,153.99536133,-1,-1,15); //NRG-500
  4374.     AddStaticVehicleEx(522,718.71350098,-2782.60913086,12.77756691,153.99536133,-1,-1,15); //NRG-500
  4375.     AddStaticVehicleEx(481,717.51379395,-2782.26782227,12.72596550,143.99987793,-1,-1,15); //BMX
  4376.     AddStaticVehicleEx(481,716.65930176,-2782.01611328,12.72596550,143.99780273,-1,-1,15); //BMX
  4377.     AddStaticVehicleEx(481,715.80346680,-2782.01855469,12.72596550,143.99780273,-1,-1,15); //BMX
  4378.     AddStaticVehicleEx(573,723.85858154,-2790.16577148,13.33263588,90.00000000,1,6,15); //Duneride
  4379.     AddStaticVehicleEx(490,723.91485596,-2796.42333984,13.43731403,90.00000000,86,1,15); //FBI Rancher
  4380.     AddStaticVehicleEx(599,724.18719482,-2802.28955078,13.50231361,90.00000000,3,1,15); //Police Ranger
  4381.     AddStaticVehicleEx(411,723.92071533,-2808.19628906,12.91718769,92.00000000,-1,-1,15); //Infernus
  4382.     AddStaticVehicleEx(429,724.20440674,-2814.28442383,12.86718750,88.00000000,-1,-1,15); //Banshee
  4383.     AddStaticVehicleEx(409,905.22418213,-2750.90380859,12.97187519,90.00000000,2,1,15); //Stretch
  4384.     AddStaticVehicleEx(409,905.25726318,-2771.11865234,12.97968769,90.00000000,126,126,15); //Stretch
  4385.     AddStaticVehicleEx(487,961.80914307,-2813.79541016,13.35093784,0.00000000,3,3,15); //Maverick
  4386.     AddStaticVehicleEx(487,946.85534668,-2813.15185547,13.35093784,0.00000000,-1,-1,15); //Maverick
  4387.     AddStaticVehicleEx(447,959.93688965,-2788.67529297,13.18593788,0.00000000,-1,-1,15); //Seasparrow
  4388.     AddStaticVehicleEx(447,945.75366211,-2788.11401367,13.18593788,0.00000000,-1,-1,15); //Seasparrow
  4389. // Singam's House Objects
  4390.     CreateDynamicObject(16610, 837.63385010, -2089.91528320, 15.76543808, 0.00000000, 0.00000000, 270.00000000);
  4391.     CreateDynamicObject(16610, 837.62457275, -2196.98583984, 15.69999981, 0.00000000, 0.00000000, 270.00000000);
  4392.     CreateDynamicObject(16610, 837.49157715, -2312.24755859, 15.69999981, 0.00000000, 0.00000000, 270.00000000);
  4393.     CreateDynamicObject(16610, 837.43249512, -2432.43359375, 15.69999981, 0.00000000, 0.00000000, 270.00000000);
  4394.     CreateDynamicObject(16610, 837.37677002, -2549.60327148, 15.69999981, 0.00000000, 0.00000000, 270.00000000);
  4395.     CreateDynamicObject(16610, 837.51562500, -2670.55664062, 15.69999981, 0.00000000, 0.00000000, 270.00000000);
  4396.     CreateDynamicObject(12814, 838.65521240, -2754.61083984, 12.00000000, 0.00000000, 0.00000000, 0.00000000);
  4397.     CreateDynamicObject(12814, 852.04351807, -2754.54638672, 12.00781250, 0.00000000, 0.00000000, 0.00000000);
  4398.     CreateDynamicObject(12814, 824.48144531, -2754.70507812, 12.00781441, 0.00000000, 0.00000000, 0.00000000);
  4399.     CreateDynamicObject(12814, 816.82415771, -2754.68579102, 12.01562691, 0.00000000, 0.00000000, 0.00000000);
  4400.     CreateDynamicObject(12814, 808.99658203, -2754.69506836, 12.02343941, 0.00000000, 0.00000000, 0.00000000);
  4401.     CreateDynamicObject(12814, 807.34503174, -2754.52880859, 12.03125191, 0.00000000, 0.00000000, 0.00000000);
  4402.     CreateDynamicObject(12814, 793.91937256, -2754.67651367, 12.03906441, 0.00000000, 0.00000000, 0.00000000);
  4403.     CreateDynamicObject(12814, 783.36389160, -2754.69482422, 12.04687691, 0.00000000, 0.00000000, 0.00000000);
  4404.     CreateDynamicObject(12814, 773.99200439, -2754.49755859, 12.05468941, 0.00000000, 0.00000000, 0.00000000);
  4405.     CreateDynamicObject(12814, 763.31298828, -2754.63256836, 12.06250191, 0.00000000, 0.00000000, 0.00000000);
  4406.     CreateDynamicObject(12814, 749.29211426, -2754.50195312, 12.07031441, 0.00000000, 0.00000000, 0.00000000);
  4407.     CreateDynamicObject(12814, 734.41510010, -2754.60473633, 12.07812691, 0.00000000, 0.00000000, 0.00000000);
  4408.     CreateDynamicObject(12814, 720.56243896, -2754.58569336, 12.08593941, 0.00000000, 0.00000000, 0.00000000);
  4409.     CreateDynamicObject(12814, 706.35839844, -2754.55688477, 12.09375191, 0.00000000, 0.00000000, 0.00000000);
  4410.     CreateDynamicObject(12814, 866.75201416, -2754.37841797, 12.01562500, 0.00000000, 0.00000000, 0.00000000);
  4411.     CreateDynamicObject(12814, 881.56634521, -2754.60400391, 12.02343750, 0.00000000, 0.00000000, 0.00000000);
  4412.     CreateDynamicObject(12814, 895.21936035, -2754.59643555, 12.03125000, 0.00000000, 0.00000000, 0.00000000);
  4413.     CreateDynamicObject(12814, 909.90966797, -2754.56079102, 12.03906250, 0.00000000, 0.00000000, 0.00000000);
  4414.     CreateDynamicObject(12814, 924.52282715, -2754.52514648, 12.04687500, 0.00000000, 0.00000000, 0.00000000);
  4415.     CreateDynamicObject(12814, 939.24505615, -2754.55786133, 12.05468750, 0.00000000, 0.00000000, 0.00000000);
  4416.     CreateDynamicObject(12814, 954.08300781, -2754.51367188, 12.06250000, 0.00000000, 0.00000000, 0.00000000);
  4417.     CreateDynamicObject(12814, 954.07910156, -2778.59082031, 12.07031250, 0.00000000, 0.00000000, 0.00000000);
  4418.     CreateDynamicObject(12814, 924.38171387, -2778.56420898, 12.06250000, 0.00000000, 0.00000000, 0.00000000);
  4419.     CreateDynamicObject(12814, 895.31994629, -2778.44702148, 12.04687500, 0.00000000, 0.00000000, 0.00000000);
  4420.     CreateDynamicObject(12814, 867.80371094, -2778.69238281, 12.03125000, 0.00000000, 0.00000000, 0.00000000);
  4421.     CreateDynamicObject(12814, 837.81036377, -2778.78320312, 12.01562691, 0.00000000, 0.00000000, 0.00000000);
  4422.     CreateDynamicObject(12814, 809.16723633, -2778.73999023, 12.03906441, 0.00000000, 0.00000000, 0.00000000);
  4423.     CreateDynamicObject(12814, 783.71569824, -2778.82958984, 12.06250191, 0.00000000, 0.00000000, 0.00000000);
  4424.     CreateDynamicObject(12814, 754.05157471, -2778.96704102, 12.10000038, 0.00000000, 0.00000000, 0.00000000);
  4425.     CreateDynamicObject(12814, 724.56347656, -2778.84179688, 12.09375191, 0.00000000, 0.00000000, 0.00000000);
  4426.     CreateDynamicObject(12814, 705.92480469, -2778.77929688, 12.10156441, 0.00000000, 0.00000000, 0.00000000);
  4427.     CreateDynamicObject(12814, 954.06933594, -2803.01855469, 12.07812500, 0.00000000, 0.00000000, 0.00000000);
  4428.     CreateDynamicObject(12814, 924.03302002, -2802.89501953, 12.07031250, 0.00000000, 0.00000000, 0.00000000);
  4429.     CreateDynamicObject(12814, 894.47503662, -2803.08227539, 12.05468750, 0.00000000, 0.00000000, 0.00000000);
  4430.     CreateDynamicObject(12814, 864.64013672, -2802.48144531, 12.03906250, 0.00000000, 0.00000000, 0.00000000);
  4431.     CreateDynamicObject(12814, 837.29534912, -2803.10668945, 12.02343941, 0.00000000, 0.00000000, 0.00000000);
  4432.     CreateDynamicObject(12814, 809.41864014, -2802.92919922, 12.04687691, 0.00000000, 0.00000000, 0.00000000);
  4433.     CreateDynamicObject(12814, 783.79235840, -2802.77880859, 12.07031441, 0.00000000, 0.00000000, 0.00000000);
  4434.     CreateDynamicObject(12814, 754.09863281, -2803.45898438, 12.10781288, 0.00000000, 0.00000000, 0.00000000);
  4435.     CreateDynamicObject(12814, 724.22558594, -2803.43554688, 12.10156441, 0.00000000, 0.00000000, 0.00000000);
  4436.     CreateDynamicObject(12814, 705.68945312, -2803.71093750, 12.10937691, 0.00000000, 0.00000000, 0.00000000);
  4437.     CreateDynamicObject(2910, 824.17016602, -2827.79296875, 12.13953304, 350.00000000, 0.00000000, 0.00000000);
  4438.     CreateDynamicObject(2910, 824.25494385, -2911.49121094, 26.89538574, 349.99694824, 0.00000000, 0.00000000);
  4439.     CreateDynamicObject(12814, 822.98846436, -3020.73510742, 41.57900620, 0.00000000, 0.00000000, 0.00000000);
  4440.     CreateDynamicObject(12814, 809.44268799, -3020.63964844, 41.58681870, 0.00000000, 0.00000000, 0.00000000);
  4441.     CreateDynamicObject(12814, 795.27502441, -3020.75097656, 41.59463120, 0.00000000, 0.00000000, 0.00000000);
  4442.     CreateDynamicObject(12814, 780.47802734, -3020.62182617, 41.60244370, 0.00000000, 0.00000000, 0.00000000);
  4443.     CreateDynamicObject(12814, 836.89404297, -3020.43603516, 41.58681870, 0.00000000, 0.00000000, 0.00000000);
  4444.     CreateDynamicObject(12814, 851.74542236, -3020.28515625, 41.59463120, 0.00000000, 0.00000000, 0.00000000);
  4445.     CreateDynamicObject(12814, 862.74682617, -3020.14086914, 41.60244370, 0.00000000, 0.00000000, 0.00000000);
  4446.     CreateDynamicObject(12814, 765.95947266, -3020.67602539, 41.61025620, 0.00000000, 0.00000000, 0.00000000);
  4447.     CreateDynamicObject(12814, 751.53125000, -3020.63793945, 41.61806870, 0.00000000, 0.00000000, 0.00000000);
  4448.     CreateDynamicObject(12814, 736.66082764, -3020.72583008, 41.62587738, 0.00000000, 0.00000000, 0.00000000);
  4449.     CreateDynamicObject(12814, 877.33453369, -3020.24951172, 41.62588120, 0.00000000, 0.00000000, 0.00000000);
  4450.     CreateDynamicObject(12814, 877.07788086, -3035.79321289, 41.61806870, 0.00000000, 0.00000000, 0.00000000);
  4451.     CreateDynamicObject(12814, 847.16107178, -3013.27172852, 41.60244370, 0.00000000, 0.00000000, 0.00000000);
  4452.     CreateDynamicObject(12814, 824.21997070, -3019.37963867, 41.59463120, 0.00000000, 0.00000000, 0.00000000);
  4453.     CreateDynamicObject(12814, 795.68792725, -3035.96655273, 41.60244370, 0.00000000, 0.00000000, 0.00000000);
  4454.     CreateDynamicObject(12814, 765.89050293, -3036.00244141, 41.62588120, 0.00000000, 0.00000000, 0.00000000);
  4455.     CreateDynamicObject(12814, 736.03540039, -3036.00048828, 41.63368988, 0.00000000, 0.00000000, 0.00000000);
  4456.     CreateDynamicObject(12814, 735.86718750, -3055.48730469, 41.64150238, 0.00000000, 0.00000000, 0.00000000);
  4457.     CreateDynamicObject(12814, 759.33056641, -3055.05590820, 41.63369370, 0.00000000, 0.00000000, 0.00000000);
  4458.     CreateDynamicObject(12814, 783.60974121, -3055.32226562, 41.61000061, 0.00000000, 0.00000000, 0.00000000);
  4459.     CreateDynamicObject(12814, 813.02709961, -3055.27075195, 41.60244370, 0.00000000, 0.00000000, 0.00000000);
  4460.     CreateDynamicObject(12814, 837.13903809, -3055.31103516, 41.61806870, 0.00000000, 0.00000000, 0.00000000);
  4461.     CreateDynamicObject(12814, 860.73205566, -3055.21801758, 41.61806870, 0.00000000, 0.00000000, 0.00000000);
  4462.     CreateDynamicObject(12814, 877.30651855, -3055.18164062, 41.62588120, 0.00000000, 0.00000000, 0.00000000);
  4463.     CreateDynamicObject(4874, 766.30255127, -3057.99243164, 45.50574493, 0.00000000, 0.00000000, 180.00000000);
  4464.     CreateDynamicObject(4874, 848.45544434, -3058.70996094, 45.49011993, 0.00000000, 0.00000000, 179.99450684);
  4465.     CreateDynamicObject(4726, 745.05108643, -3015.86425781, 43.56325531, 0.00000000, 0.00000000, 0.00000000);
  4466.     CreateDynamicObject(3526, 770.00903320, -3043.46166992, 45.04205704, 0.00000000, 0.00000000, 90.00000000);
  4467.     CreateDynamicObject(3526, 796.27880859, -3043.17456055, 45.04205704, 0.00000000, 0.00000000, 90.00000000);
  4468.     CreateDynamicObject(3526, 782.32849121, -3043.33666992, 45.04205704, 0.00000000, 0.00000000, 90.00000000);
  4469.     CreateDynamicObject(3526, 768.78375244, -3051.60742188, 45.04205704, 0.00000000, 0.00000000, 90.00000000);
  4470.     CreateDynamicObject(3526, 768.75823975, -3061.56616211, 45.04205704, 0.00000000, 0.00000000, 90.00000000);
  4471.     CreateDynamicObject(3526, 797.21667480, -3050.71606445, 45.04205704, 0.00000000, 0.00000000, 90.00000000);
  4472.     CreateDynamicObject(3526, 797.30389404, -3060.87084961, 45.04205704, 0.00000000, 0.00000000, 90.00000000);
  4473.     CreateDynamicObject(3526, 797.36535645, -3068.07006836, 45.04205704, 0.00000000, 0.00000000, 90.00000000);
  4474.     CreateDynamicObject(3526, 768.84197998, -3068.56225586, 45.04205704, 0.00000000, 0.00000000, 90.00000000);
  4475.     CreateDynamicObject(3526, 783.29913330, -3068.36059570, 45.04205704, 0.00000000, 0.00000000, 90.00000000);
  4476.     CreateDynamicObject(3526, 850.92059326, -3044.25097656, 45.02643204, 0.00000000, 0.00000000, 90.00000000);
  4477.     CreateDynamicObject(3526, 863.86505127, -3044.43603516, 45.02643204, 0.00000000, 0.00000000, 90.00000000);
  4478.     CreateDynamicObject(3526, 850.88714600, -3056.55224609, 45.02643204, 0.00000000, 0.00000000, 90.00000000);
  4479.     CreateDynamicObject(3526, 850.85260010, -3068.95971680, 45.02643204, 0.00000000, 0.00000000, 90.00000000);
  4480.     CreateDynamicObject(3526, 866.02380371, -3069.35693359, 45.02643204, 0.00000000, 0.00000000, 90.00000000);
  4481.     CreateDynamicObject(3526, 879.65490723, -3069.41772461, 45.02643204, 0.00000000, 0.00000000, 90.00000000);
  4482.     CreateDynamicObject(3526, 879.51635742, -3059.06860352, 45.02643204, 0.00000000, 0.00000000, 90.00000000);
  4483.     CreateDynamicObject(3526, 879.29681396, -3044.64135742, 45.02643204, 0.00000000, 0.00000000, 90.00000000);
  4484.     CreateDynamicObject(987, 892.10845947, -2995.39672852, 41.63369370, 8.99780273, 0.00000000, 180.00000000);
  4485.     CreateDynamicObject(987, 880.17620850, -2995.41137695, 41.63369370, 8.99230957, 0.00000000, 179.99450684);
  4486.     CreateDynamicObject(987, 868.28424072, -2995.37353516, 41.63369370, 8.99230957, 0.00000000, 179.99450684);
  4487.     CreateDynamicObject(987, 856.28643799, -2995.39111328, 41.61025620, 8.99230957, 0.00000000, 179.99450684);
  4488.     CreateDynamicObject(987, 844.37640381, -2995.31958008, 41.60244370, 8.99230957, 0.00000000, 179.99450684);
  4489.     CreateDynamicObject(987, 818.41479492, -2995.71850586, 41.59463120, 8.99230957, 0.00000000, 179.99450684);
  4490.     CreateDynamicObject(987, 806.40240479, -2995.99707031, 41.60244370, 8.99230957, 0.00000000, 179.99450684);
  4491.     CreateDynamicObject(987, 794.41528320, -2995.81542969, 41.61025620, 8.99230957, 0.00000000, 179.99450684);
  4492.     CreateDynamicObject(987, 782.26452637, -2996.10717773, 41.61025620, 8.99230957, 0.00000000, 179.99450684);
  4493.     CreateDynamicObject(987, 770.37561035, -2995.95532227, 41.61806870, 8.99230957, 0.00000000, 179.99450684);
  4494.     CreateDynamicObject(987, 758.36602783, -2995.73095703, 41.62588120, 8.99230957, 0.00000000, 179.99450684);
  4495.     CreateDynamicObject(987, 746.62188721, -2995.68432617, 41.62588120, 8.99230957, 0.00000000, 179.99450684);
  4496.     CreateDynamicObject(987, 734.65527344, -2995.77246094, 41.63368988, 8.99230957, 0.00000000, 179.99450684);
  4497.     CreateDynamicObject(987, 733.04711914, -2995.77587891, 41.63368988, 8.99230957, 0.00000000, 179.99450684);
  4498.     CreateDynamicObject(987, 722.17535400, -2995.79077148, 41.63368988, 8.99230957, 0.00000000, 267.99450684);
  4499.     CreateDynamicObject(987, 721.75054932, -3007.77026367, 41.63368988, 8.98681641, 0.00000000, 267.98950195);
  4500.     CreateDynamicObject(987, 721.20080566, -3019.66992188, 41.64150238, 8.98681641, 0.00000000, 267.98950195);
  4501.     CreateDynamicObject(987, 720.92053223, -3031.71826172, 41.64931488, 8.98681641, 0.00000000, 267.98950195);
  4502.     CreateDynamicObject(987, 721.04357910, -3043.67846680, 41.64931488, 8.98681641, 0.00000000, 269.98950195);
  4503.     CreateDynamicObject(987, 720.95849609, -3055.53417969, 41.64931488, 8.98132324, 0.00000000, 269.98901367);
  4504.     CreateDynamicObject(987, 721.00543213, -3067.48974609, 41.64931488, 8.98132324, 0.00000000, 269.98901367);
  4505.     CreateDynamicObject(987, 720.99737549, -3068.25000000, 41.64931488, 8.98132324, 0.00000000, 269.98901367);
  4506.     CreateDynamicObject(987, 720.87707520, -3080.24877930, 41.64931488, 8.98132324, 0.00000000, 358.73901367);
  4507.     CreateDynamicObject(987, 732.82733154, -3080.47460938, 41.64931488, 8.97583008, 0.00000000, 358.73657227);
  4508.     CreateDynamicObject(987, 744.76007080, -3080.47900391, 41.64931488, 8.97583008, 0.00000000, 358.98657227);
  4509.     CreateDynamicObject(987, 756.66076660, -3080.03564453, 41.64150620, 8.97033691, 0.00000000, 358.98376465);
  4510.     CreateDynamicObject(987, 768.63378906, -3080.22363281, 41.61781311, 8.97033691, 0.00000000, 358.98376465);
  4511.     CreateDynamicObject(987, 780.84350586, -3080.29736328, 41.61781311, 8.97033691, 0.00000000, 358.98376465);
  4512.     CreateDynamicObject(987, 792.85571289, -3080.28515625, 41.61781311, 8.97033691, 0.00000000, 358.98376465);
  4513.     CreateDynamicObject(987, 804.79656982, -3080.14477539, 41.61025620, 8.97033691, 0.00000000, 358.98376465);
  4514.     CreateDynamicObject(987, 816.66253662, -3080.17944336, 41.61025620, 8.97033691, 0.00000000, 358.98376465);
  4515.     CreateDynamicObject(987, 828.68920898, -3080.14013672, 41.62588120, 8.97033691, 0.00000000, 358.98376465);
  4516.     CreateDynamicObject(987, 840.62530518, -3080.22167969, 41.62588120, 8.97033691, 0.00000000, 358.98376465);
  4517.     CreateDynamicObject(987, 852.69543457, -3080.20019531, 41.62588120, 8.97033691, 0.00000000, 358.98376465);
  4518.     CreateDynamicObject(987, 865.17932129, -3080.12719727, 41.63369370, 8.97033691, 0.00000000, 358.98376465);
  4519.     CreateDynamicObject(987, 877.14086914, -3080.14575195, 41.63369370, 8.97033691, 0.00000000, 358.98376465);
  4520.     CreateDynamicObject(987, 880.06530762, -3079.66333008, 41.98885345, 8.97033691, 0.00000000, 359.23376465);
  4521.     CreateDynamicObject(987, 891.99127197, -3079.84741211, 41.63369370, 0.00000000, 0.00000000, 90.00000000);
  4522.     CreateDynamicObject(987, 892.04992676, -3067.88793945, 41.63369370, 0.00000000, 0.00000000, 90.00000000);
  4523.     CreateDynamicObject(987, 892.07086182, -3055.94531250, 41.63369370, 0.00000000, 0.00000000, 90.00000000);
  4524.     CreateDynamicObject(987, 892.04443359, -3043.98999023, 41.63369370, 0.00000000, 0.00000000, 90.00000000);
  4525.     CreateDynamicObject(987, 892.10803223, -3032.05493164, 41.63369370, 0.00000000, 0.00000000, 90.00000000);
  4526.     CreateDynamicObject(987, 892.17120361, -3020.07324219, 41.63369370, 0.00000000, 0.00000000, 90.00000000);
  4527.     CreateDynamicObject(987, 892.14208984, -3008.16040039, 41.63369370, 0.00000000, 0.00000000, 90.00000000);
  4528.     CreateDynamicObject(622, 814.85754395, -2991.63671875, 41.12679291, 0.00000000, 0.00000000, 284.00000000);
  4529.     CreateDynamicObject(622, 814.77600098, -2979.64013672, 39.00963211, 0.00000000, 0.00000000, 283.99658203);
  4530.     CreateDynamicObject(622, 815.05999756, -2965.70581055, 36.55047989, 0.00000000, 0.00000000, 283.99658203);
  4531.     CreateDynamicObject(622, 815.09259033, -2942.96923828, 32.53789520, 0.00000000, 0.00000000, 283.99658203);
  4532.     CreateDynamicObject(622, 814.90277100, -2919.95703125, 28.47671127, 0.00000000, 0.00000000, 283.99658203);
  4533.     CreateDynamicObject(622, 814.89080811, -2894.43872070, 23.98190689, 0.00000000, 0.00000000, 283.99658203);
  4534.     CreateDynamicObject(622, 814.84405518, -2876.70361328, 20.85374451, 0.00000000, 0.00000000, 283.99658203);
  4535.     CreateDynamicObject(622, 814.92535400, -2851.42309570, 16.39473343, 0.00000000, 0.00000000, 283.99658203);
  4536.     CreateDynamicObject(622, 814.78802490, -2827.14868164, 12.11316299, 0.00000000, 0.00000000, 283.99658203);
  4537.     CreateDynamicObject(622, 834.55767822, -2827.05053711, 12.03125191, 0.00000000, 0.00000000, 107.99658203);
  4538.     CreateDynamicObject(622, 834.00817871, -2853.75317383, 16.80572510, 0.00000000, 0.00000000, 107.99560547);
  4539.     CreateDynamicObject(622, 833.52716064, -2877.17114258, 20.93619919, 0.00000000, 0.00000000, 79.99560547);
  4540.     CreateDynamicObject(622, 833.65771484, -2893.75146484, 23.86069870, 0.00000000, 0.00000000, 79.99145508);
  4541.     CreateDynamicObject(622, 833.67529297, -2920.55322266, 28.58193970, 0.00000000, 0.00000000, 79.99145508);
  4542.     CreateDynamicObject(622, 833.17285156, -2946.08251953, 33.08736420, 0.00000000, 0.00000000, 79.99145508);
  4543.     CreateDynamicObject(622, 833.82128906, -2966.32519531, 36.65977478, 0.00000000, 0.00000000, 79.99145508);
  4544.     CreateDynamicObject(622, 834.18640137, -2980.18164062, 39.10519409, 0.00000000, 0.00000000, 79.99145508);
  4545.     CreateDynamicObject(622, 833.66442871, -2991.67724609, 41.13393402, 0.00000000, 0.00000000, 79.99145508);
  4546.     CreateDynamicObject(996, 865.30859375, -3003.51269531, 42.38245010, 0.00000000, 0.00000000, 90.00000000);
  4547.     CreateDynamicObject(996, 860.75177002, -3003.11010742, 42.35901260, 0.00000000, 0.00000000, 90.00000000);
  4548.     CreateDynamicObject(996, 856.31939697, -3003.47802734, 42.35901260, 0.00000000, 0.00000000, 90.00000000);
  4549.     CreateDynamicObject(996, 851.62487793, -3003.04541016, 42.35901260, 0.00000000, 0.00000000, 90.00000000);
  4550.     CreateDynamicObject(996, 847.21325684, -3003.56372070, 42.35120010, 0.00000000, 0.00000000, 90.00000000);
  4551.     CreateDynamicObject(996, 842.51641846, -3003.04760742, 42.35120010, 0.00000000, 0.00000000, 90.00000000);
  4552.     CreateDynamicObject(1215, 842.50274658, -3003.91650391, 42.16676712, 0.00000000, 0.00000000, 0.00000000);
  4553.     CreateDynamicObject(1215, 847.20404053, -3004.46582031, 42.16676712, 0.00000000, 0.00000000, 0.00000000);
  4554.     CreateDynamicObject(1215, 851.49725342, -3003.91406250, 42.17457962, 0.00000000, 0.00000000, 0.00000000);
  4555.     CreateDynamicObject(1215, 856.36132812, -3004.32177734, 42.17457962, 0.00000000, 0.00000000, 0.00000000);
  4556.     CreateDynamicObject(1215, 860.66644287, -3003.96484375, 42.17457962, 0.00000000, 0.00000000, 0.00000000);
  4557.     CreateDynamicObject(1215, 865.37774658, -3004.30517578, 42.19801712, 0.00000000, 0.00000000, 0.00000000);
  4558.     CreateDynamicObject(987, 690.77404785, -2828.69213867, 12.11718941, 0.00000000, 0.00000000, 0.00000000);
  4559.     CreateDynamicObject(987, 702.75372314, -2828.53295898, 12.11718941, 0.00000000, 0.00000000, 0.00000000);
  4560.     CreateDynamicObject(987, 714.68688965, -2828.49023438, 12.11718941, 0.00000000, 0.00000000, 0.00000000);
  4561.     CreateDynamicObject(987, 690.83374023, -2816.82714844, 12.11718941, 0.00000000, 0.00000000, 270.00000000);
  4562.     CreateDynamicObject(987, 690.87670898, -2804.87670898, 12.11718941, 0.00000000, 0.00000000, 270.00000000);
  4563.     CreateDynamicObject(987, 690.90917969, -2792.96386719, 12.11718941, 0.00000000, 0.00000000, 270.00000000);
  4564.     CreateDynamicObject(987, 691.00231934, -2781.04418945, 12.11718941, 0.00000000, 0.00000000, 270.00000000);
  4565.     CreateDynamicObject(987, 690.99145508, -2769.13818359, 12.10937691, 0.00000000, 0.00000000, 270.00000000);
  4566.     CreateDynamicObject(987, 727.76562500, -2793.34130859, 12.10937691, 0.00000000, 0.00000000, 89.99499512);
  4567.     CreateDynamicObject(987, 727.79760742, -2805.39135742, 12.10937691, 0.00000000, 0.00000000, 89.99450684);
  4568.     CreateDynamicObject(987, 727.73028564, -2817.35400391, 12.10937691, 0.00000000, 0.00000000, 89.99450684);
  4569.     CreateDynamicObject(12814, 723.99670410, -2803.06494141, 12.10937500, 0.00000000, 0.00000000, 0.00000000);
  4570.     CreateDynamicObject(987, 726.48962402, -2828.32958984, 12.10937691, 0.00000000, 0.00000000, 0.00000000);
  4571.     CreateDynamicObject(987, 738.43524170, -2828.35327148, 12.10937691, 0.00000000, 0.00000000, 0.00000000);
  4572.     CreateDynamicObject(996, 719.61505127, -2817.34985352, 12.86594486, 0.00000000, 0.00000000, 0.00000000);
  4573.     CreateDynamicObject(996, 719.56616211, -2811.23193359, 12.86594486, 0.00000000, 0.00000000, 0.00000000);
  4574.     CreateDynamicObject(996, 719.58874512, -2805.39379883, 12.86594486, 0.00000000, 0.00000000, 0.00000000);
  4575.     CreateDynamicObject(996, 719.69134521, -2799.39306641, 12.86594486, 0.00000000, 0.00000000, 0.00000000);
  4576.     CreateDynamicObject(996, 719.59790039, -2793.33911133, 12.86594486, 0.00000000, 0.00000000, 0.00000000);
  4577.     CreateDynamicObject(996, 719.70861816, -2787.33984375, 12.86594486, 0.00000000, 0.00000000, 0.00000000);
  4578.     CreateDynamicObject(987, 727.74053955, -2781.45068359, 12.11718750, 0.00000000, 0.00000000, 178.00000000);
  4579.     CreateDynamicObject(987, 715.87139893, -2781.03759766, 12.11718941, 0.00000000, 0.00000000, 177.99499512);
  4580.     CreateDynamicObject(987, 704.01190186, -2780.60205078, 12.11718941, 0.00000000, 0.00000000, 177.99499512);
  4581.     CreateDynamicObject(996, 692.09240723, -2816.77709961, 12.86594486, 0.00000000, 0.00000000, 0.00000000);
  4582.     CreateDynamicObject(996, 692.29852295, -2810.93627930, 12.86594486, 0.00000000, 0.00000000, 0.00000000);
  4583.     CreateDynamicObject(996, 692.21185303, -2804.97119141, 12.86594486, 0.00000000, 0.00000000, 0.00000000);
  4584.     CreateDynamicObject(996, 692.13275146, -2799.00048828, 12.86594486, 0.00000000, 0.00000000, 0.00000000);
  4585.     CreateDynamicObject(996, 692.12670898, -2793.04028320, 12.86594486, 0.00000000, 0.00000000, 0.00000000);
  4586.     CreateDynamicObject(996, 692.16076660, -2787.03857422, 12.86594486, 0.00000000, 0.00000000, 0.00000000);
  4587.     CreateDynamicObject(3607, 923.76062012, -2800.30395508, 18.18373680, 0.00000000, 0.00000000, 270.00000000);
  4588.     CreateDynamicObject(3604, 914.15240479, -2767.85742188, 14.62880802, 0.00000000, 0.00000000, 270.00000000);
  4589.     CreateDynamicObject(1597, 711.93652344, -2811.90332031, 14.77457142, 0.00000000, 0.00000000, 0.00000000);
  4590.     CreateDynamicObject(1597, 706.13287354, -2811.88281250, 14.77457142, 0.00000000, 0.00000000, 0.00000000);
  4591.     CreateDynamicObject(1597, 706.20159912, -2802.07934570, 14.77457142, 0.00000000, 0.00000000, 0.00000000);
  4592.     CreateDynamicObject(1597, 711.91943359, -2802.21508789, 14.77457142, 0.00000000, 0.00000000, 0.00000000);
  4593.     CreateDynamicObject(1597, 711.99182129, -2792.47851562, 14.77457142, 0.00000000, 0.00000000, 0.00000000);
  4594.     CreateDynamicObject(1597, 706.23455811, -2792.41381836, 14.77457142, 0.00000000, 0.00000000, 0.00000000);
  4595.     CreateDynamicObject(1597, 709.62658691, -2816.42456055, 14.77457142, 0.00000000, 0.00000000, 268.00000000);
  4596.     CreateDynamicObject(1597, 709.20373535, -2787.60278320, 14.77457142, 0.00000000, 0.00000000, 267.99499512);
  4597.     CreateDynamicObject(987, 750.33514404, -2828.24462891, 12.11562538, 0.00000000, 0.00000000, 0.00000000);
  4598.     CreateDynamicObject(987, 762.26049805, -2828.26147461, 12.11562538, 0.00000000, 0.00000000, 0.00000000);
  4599.     CreateDynamicObject(987, 774.06896973, -2827.72021484, 12.07812691, 0.00000000, 0.00000000, 0.00000000);
  4600.     CreateDynamicObject(987, 786.06359863, -2827.68481445, 12.07812691, 0.00000000, 0.00000000, 0.00000000);
  4601.     CreateDynamicObject(987, 797.99426270, -2827.68408203, 12.07812691, 0.00000000, 0.00000000, 0.00000000);
  4602.     CreateDynamicObject(987, 802.28546143, -2827.40405273, 12.05468941, 0.00000000, 0.00000000, 0.00000000);
  4603.     CreateDynamicObject(987, 834.80187988, -2827.76147461, 12.03125191, 0.00000000, 0.00000000, 0.00000000);
  4604.     CreateDynamicObject(987, 846.80322266, -2827.77124023, 12.03125191, 0.00000000, 0.00000000, 0.00000000);
  4605.     CreateDynamicObject(987, 858.91809082, -2827.41992188, 12.04687500, 0.00000000, 0.00000000, 0.00000000);
  4606.     CreateDynamicObject(987, 882.73242188, -2827.29003906, 12.06250000, 0.00000000, 0.00000000, 0.00000000);
  4607.     CreateDynamicObject(987, 894.72564697, -2827.24194336, 12.06250000, 0.00000000, 0.00000000, 0.00000000);
  4608.     CreateDynamicObject(987, 906.60998535, -2827.19873047, 12.06250000, 0.00000000, 0.00000000, 0.00000000);
  4609.     CreateDynamicObject(987, 918.58337402, -2827.11499023, 12.07812500, 0.00000000, 0.00000000, 0.00000000);
  4610.     CreateDynamicObject(987, 930.52441406, -2827.17163086, 12.07812500, 0.00000000, 0.00000000, 0.00000000);
  4611.     CreateDynamicObject(987, 942.52648926, -2827.16186523, 12.08593750, 0.00000000, 0.00000000, 0.00000000);
  4612.     CreateDynamicObject(987, 954.47558594, -2827.13964844, 12.08593750, 0.00000000, 0.00000000, 0.00000000);
  4613.     CreateDynamicObject(987, 956.35900879, -2827.19482422, 12.08593750, 0.00000000, 0.00000000, 0.00000000);
  4614.     CreateDynamicObject(987, 968.97406006, -2827.89111328, 12.08593750, 0.00000000, 0.00000000, 90.00000000);
  4615.     CreateDynamicObject(987, 968.91796875, -2815.89941406, 12.08593750, 0.00000000, 0.00000000, 90.00000000);
  4616.     CreateDynamicObject(987, 968.90771484, -2803.95922852, 12.08593750, 0.00000000, 0.00000000, 90.00000000);
  4617.     CreateDynamicObject(3604, 914.11523438, -2753.38427734, 14.61318302, 0.00000000, 0.00000000, 270.00000000);
  4618.     CreateDynamicObject(3934, 947.19238281, -2813.30419922, 12.08593750, 0.00000000, 0.00000000, 0.00000000);
  4619.     CreateDynamicObject(3934, 946.01776123, -2788.12207031, 12.08593750, 0.00000000, 0.00000000, 0.00000000);
  4620.     CreateDynamicObject(3934, 961.77947998, -2812.93750000, 12.08593750, 0.00000000, 0.00000000, 0.00000000);
  4621.     CreateDynamicObject(3934, 959.70019531, -2788.13769531, 12.08593750, 0.00000000, 0.00000000, 0.00000000);
  4622.     CreateDynamicObject(987, 968.89660645, -2791.95166016, 12.08593750, 0.00000000, 0.00000000, 90.00000000);
  4623.     CreateDynamicObject(987, 968.91442871, -2779.98901367, 12.08593750, 0.00000000, 0.00000000, 90.00000000);
  4624.     CreateDynamicObject(987, 969.02001953, -2768.10571289, 12.07812500, 0.00000000, 0.00000000, 90.00000000);
  4625.     CreateDynamicObject(987, 968.97503662, -2756.17382812, 12.07812500, 0.00000000, 0.00000000, 90.00000000);
  4626.     CreateDynamicObject(987, 968.99047852, -2744.22509766, 12.07031250, 0.00000000, 0.00000000, 90.00000000);
  4627.     CreateDynamicObject(987, 969.00531006, -2741.44360352, 12.07031250, 0.00000000, 0.00000000, 90.00000000);
  4628.     CreateDynamicObject(987, 968.97406006, -2729.62377930, 12.07031250, 0.00000000, 0.00000000, 180.00000000);
  4629.     CreateDynamicObject(987, 957.04394531, -2729.60107422, 12.07031250, 0.00000000, 0.00000000, 179.99450684);
  4630.     CreateDynamicObject(987, 945.07409668, -2729.51684570, 12.07031250, 0.00000000, 0.00000000, 179.99450684);
  4631.     CreateDynamicObject(987, 933.12731934, -2729.62475586, 12.06250000, 0.00000000, 0.00000000, 179.99450684);
  4632.     CreateDynamicObject(987, 921.18792725, -2729.53759766, 12.05468750, 0.00000000, 0.00000000, 179.99450684);
  4633.     CreateDynamicObject(987, 909.12921143, -2729.70605469, 12.04687500, 0.00000000, 0.00000000, 179.99450684);
  4634.     CreateDynamicObject(987, 897.18048096, -2729.62133789, 12.04687500, 0.00000000, 0.00000000, 179.99450684);
  4635.     CreateDynamicObject(987, 885.17163086, -2729.68627930, 12.03906250, 0.00000000, 0.00000000, 179.99450684);
  4636.     CreateDynamicObject(987, 873.24487305, -2729.67089844, 12.03125000, 0.00000000, 0.00000000, 179.99450684);
  4637.     CreateDynamicObject(987, 873.24414062, -2729.67089844, 12.03125000, 0.00000000, 0.00000000, 179.99450684);
  4638.     CreateDynamicObject(987, 873.24414062, -2729.67089844, 12.03125000, 0.00000000, 0.00000000, 179.99450684);
  4639.     CreateDynamicObject(987, 861.33282471, -2729.56811523, 12.02343750, 0.00000000, 0.00000000, 179.99450684);
  4640.     CreateDynamicObject(987, 858.66027832, -2729.47119141, 12.02343750, 0.00000000, 0.00000000, 179.99450684);
  4641.     CreateDynamicObject(987, 828.42840576, -2729.74560547, 12.02343941, 0.00000000, 0.00000000, 179.99450684);
  4642.     CreateDynamicObject(987, 816.50177002, -2729.72338867, 12.03906441, 0.00000000, 0.00000000, 179.99450684);
  4643.     CreateDynamicObject(987, 804.51464844, -2729.76074219, 12.04687691, 0.00000000, 0.00000000, 179.99450684);
  4644.     CreateDynamicObject(987, 792.52636719, -2729.64404297, 12.03906441, 0.00000000, 0.00000000, 179.99450684);
  4645.     CreateDynamicObject(987, 780.46655273, -2729.69921875, 12.06250191, 0.00000000, 0.00000000, 179.99450684);
  4646.     CreateDynamicObject(987, 768.57373047, -2729.70727539, 12.07031441, 0.00000000, 0.00000000, 179.99450684);
  4647.     CreateDynamicObject(987, 756.68487549, -2729.77441406, 12.07812691, 0.00000000, 0.00000000, 179.99450684);
  4648.     CreateDynamicObject(987, 744.72106934, -2729.80346680, 12.08593941, 0.00000000, 0.00000000, 179.99450684);
  4649.     CreateDynamicObject(987, 732.87652588, -2729.82226562, 12.09375191, 0.00000000, 0.00000000, 179.99450684);
  4650.     CreateDynamicObject(987, 720.94207764, -2729.88964844, 12.10156441, 0.00000000, 0.00000000, 179.99450684);
  4651.     CreateDynamicObject(987, 709.10253906, -2729.87133789, 12.10156441, 0.00000000, 0.00000000, 179.99450684);
  4652.     CreateDynamicObject(987, 703.65826416, -2729.79760742, 12.10156441, 0.00000000, 0.00000000, 179.99450684);
  4653.     CreateDynamicObject(987, 691.79974365, -2729.77099609, 12.10156441, 0.00000000, 0.00000000, 267.99450684);
  4654.     CreateDynamicObject(987, 691.58416748, -2741.69067383, 12.10156441, 0.00000000, 0.00000000, 267.98950195);
  4655.     CreateDynamicObject(987, 691.45806885, -2753.69921875, 12.10156441, 0.00000000, 0.00000000, 267.98950195);
  4656.     CreateDynamicObject(987, 691.27368164, -2757.27612305, 12.10937691, 0.00000000, 0.00000000, 267.98950195);
  4657.     CreateDynamicObject(3749, 837.74871826, -2733.16381836, 17.87404251, 0.00000000, 0.00000000, 0.00000000);
  4658.     CreateDynamicObject(1251, 834.68218994, -2731.59375000, 12.12031174, 0.00000000, 0.00000000, 270.00000000);
  4659.     CreateDynamicObject(1251, 841.50195312, -2731.58520508, 12.12030983, 0.00000000, 0.00000000, 270.00000000);
  4660.     CreateDynamicObject(1215, 843.83160400, -2730.33886719, 12.57994843, 0.00000000, 0.00000000, 0.00000000);
  4661.     CreateDynamicObject(1215, 831.85321045, -2730.54003906, 12.57995033, 0.00000000, 0.00000000, 0.00000000);
  4662.     CreateDynamicObject(1215, 942.07501221, -2784.78686523, 12.65026093, 0.00000000, 0.00000000, 0.00000000);
  4663.     CreateDynamicObject(1215, 949.79492188, -2784.84472656, 12.65026093, 0.00000000, 0.00000000, 0.00000000);
  4664.     CreateDynamicObject(1215, 949.78942871, -2791.71044922, 12.65026093, 0.00000000, 0.00000000, 0.00000000);
  4665.     CreateDynamicObject(1215, 942.04394531, -2791.66040039, 12.65026093, 0.00000000, 0.00000000, 0.00000000);
  4666.     CreateDynamicObject(1215, 955.74890137, -2791.67578125, 12.65026093, 0.00000000, 0.00000000, 0.00000000);
  4667.     CreateDynamicObject(1215, 963.38665771, -2791.69726562, 12.65026093, 0.00000000, 0.00000000, 0.00000000);
  4668.     CreateDynamicObject(1215, 955.74981689, -2784.83544922, 12.65026093, 0.00000000, 0.00000000, 0.00000000);
  4669.     CreateDynamicObject(1215, 963.42285156, -2784.76660156, 12.65026093, 0.00000000, 0.00000000, 0.00000000);
  4670.     CreateDynamicObject(1215, 943.25128174, -2809.94238281, 12.65026093, 0.00000000, 0.00000000, 0.00000000);
  4671.     CreateDynamicObject(1215, 950.89807129, -2809.93994141, 12.65026093, 0.00000000, 0.00000000, 0.00000000);
  4672.     CreateDynamicObject(1215, 950.90667725, -2816.84375000, 12.65026093, 0.00000000, 0.00000000, 0.00000000);
  4673.     CreateDynamicObject(1215, 943.23541260, -2816.78466797, 12.65026093, 0.00000000, 0.00000000, 0.00000000);
  4674.     CreateDynamicObject(1215, 957.84576416, -2816.43872070, 12.65026093, 0.00000000, 0.00000000, 0.00000000);
  4675.     CreateDynamicObject(1215, 957.84118652, -2809.64550781, 12.65026093, 0.00000000, 0.00000000, 0.00000000);
  4676.     CreateDynamicObject(1215, 965.44940186, -2816.43725586, 12.64244843, 0.00000000, 0.00000000, 0.00000000);
  4677.     CreateDynamicObject(1215, 965.45294189, -2809.64257812, 12.65026093, 0.00000000, 0.00000000, 0.00000000);
  4678.     CreateDynamicObject(984, 919.14575195, -2758.00610352, 12.70699215, 0.00000000, 0.00000000, 179.99902344);
  4679.     CreateDynamicObject(984, 919.17010498, -2745.21240234, 12.69136715, 0.00000000, 0.00000000, 179.99450684);
  4680.     CreateDynamicObject(984, 919.20843506, -2736.14233398, 12.69136715, 0.00000000, 0.00000000, 179.99450684);
  4681.     CreateDynamicObject(984, 929.43463135, -2764.31762695, 12.70699215, 0.00000000, 0.00000000, 270.00000000);
  4682.     CreateDynamicObject(984, 942.29437256, -2764.30664062, 12.71480465, 0.00000000, 0.00000000, 270.00000000);
  4683.     CreateDynamicObject(984, 955.06140137, -2764.21850586, 12.71480465, 0.00000000, 0.00000000, 270.00000000);
  4684.     CreateDynamicObject(984, 963.09545898, -2764.15161133, 12.71480465, 0.00000000, 0.00000000, 270.00000000);
  4685.     CreateDynamicObject(9831, 965.55267334, -2758.64990234, 15.51478386, 0.00000000, 0.00000000, 84.00000000);
  4686.     CreateDynamicObject(9831, 965.29821777, -2752.37622070, 15.50697136, 0.00000000, 0.00000000, 83.99597168);
  4687.     CreateDynamicObject(9831, 965.92645264, -2744.08105469, 15.50697136, 0.00000000, 0.00000000, 83.99597168);
  4688.     CreateDynamicObject(9831, 965.33166504, -2737.05517578, 15.50697136, 0.00000000, 0.00000000, 83.99597168);
  4689.     CreateDynamicObject(9833, 709.45611572, -2792.69238281, 15.31973267, 0.00000000, 0.00000000, 0.00000000);
  4690.     CreateDynamicObject(9833, 709.37628174, -2797.38378906, 15.31973267, 0.00000000, 0.00000000, 0.00000000);
  4691.     CreateDynamicObject(9833, 709.63305664, -2802.89868164, 15.31973267, 0.00000000, 0.00000000, 0.00000000);
  4692.     CreateDynamicObject(9833, 709.81542969, -2807.50048828, 15.31973267, 0.00000000, 0.00000000, 0.00000000);
  4693.     CreateDynamicObject(9833, 709.58160400, -2812.25439453, 15.31973267, 0.00000000, 0.00000000, 0.00000000);
  4694.     CreateDynamicObject(3461, 933.44897461, -2730.51293945, 13.63751125, 0.00000000, 0.00000000, 0.00000000);
  4695.     CreateDynamicObject(3461, 933.07635498, -2736.39428711, 13.63751125, 0.00000000, 0.00000000, 0.00000000);
  4696.     CreateDynamicObject(3461, 933.43829346, -2744.20825195, 13.63751125, 0.00000000, 0.00000000, 0.00000000);
  4697.     CreateDynamicObject(3461, 926.52490234, -2743.39599609, 13.63751125, 0.00000000, 0.00000000, 0.00000000);
  4698.     CreateDynamicObject(3461, 919.34222412, -2742.64111328, 13.62969875, 0.00000000, 0.00000000, 0.00000000);
  4699.     CreateDynamicObject(1461, 845.00109863, -2731.06372070, 14.73435116, 0.00000000, 0.00000000, 0.00000000);
  4700.     CreateDynamicObject(6964, 958.73602295, -2754.52148438, 12.07812500, 0.00000000, 0.00000000, 0.00000000);
  4701.     CreateDynamicObject(6964, 958.49066162, -2746.41430664, 12.07031250, 0.00000000, 0.00000000, 0.00000000);
  4702.     CreateDynamicObject(6964, 958.89306641, -2740.16015625, 12.07031250, 0.00000000, 0.00000000, 0.00000000);
  4703.     CreateDynamicObject(6964, 958.60430908, -2738.96850586, 12.07031250, 0.00000000, 0.00000000, 0.00000000);
  4704.     CreateDynamicObject(6964, 945.65344238, -2738.69213867, 12.07031250, 0.00000000, 0.00000000, 0.00000000);
  4705.     CreateDynamicObject(6964, 945.37200928, -2747.40771484, 12.07031250, 0.00000000, 0.00000000, 0.00000000);
  4706.     CreateDynamicObject(6964, 946.16723633, -2754.70532227, 12.07812500, 0.00000000, 0.00000000, 0.00000000);
  4707.     CreateDynamicObject(6964, 952.87701416, -2755.53588867, 12.07812500, 0.00000000, 0.00000000, 0.00000000);
  4708.     CreateDynamicObject(6964, 963.62274170, -2756.00341797, 12.07812500, 0.00000000, 0.00000000, 0.00000000);
  4709.     CreateDynamicObject(2343, 921.25811768, -2730.85522461, 12.63014889, 0.00000000, 0.00000000, 340.00000000);
  4710.     CreateDynamicObject(2343, 920.96112061, -2732.44384766, 12.63014889, 0.00000000, 0.00000000, 9.99938965);
  4711.     CreateDynamicObject(2343, 920.89727783, -2734.41503906, 12.63014889, 0.00000000, 0.00000000, 351.99755859);
  4712.     CreateDynamicObject(2343, 920.75061035, -2736.13085938, 12.63014889, 0.00000000, 0.00000000, 11.99645996);
  4713.     CreateDynamicObject(2762, 922.11523438, -2731.75341797, 12.45987511, 0.00000000, 0.00000000, 262.00000000);
  4714.     CreateDynamicObject(2762, 922.05139160, -2735.18920898, 12.45987511, 0.00000000, 0.00000000, 269.99645996);
  4715.     CreateDynamicObject(2837, 922.08380127, -2735.91845703, 12.87780952, 0.00000000, 0.00000000, 0.00000000);
  4716.     CreateDynamicObject(2837, 922.02178955, -2734.51855469, 12.87780952, 0.00000000, 0.00000000, 0.00000000);
  4717.     CreateDynamicObject(2837, 922.02124023, -2732.45678711, 12.87780952, 0.00000000, 0.00000000, 0.00000000);
  4718.     CreateDynamicObject(2837, 922.21405029, -2731.17724609, 12.87780952, 0.00000000, 0.00000000, 0.00000000);
  4719.     CreateDynamicObject(2958, 922.30389404, -2736.11572266, 12.97802162, 0.00000000, 0.00000000, 0.00000000);
  4720.     CreateDynamicObject(2958, 921.97015381, -2736.16186523, 12.97802162, 0.00000000, 0.00000000, 0.00000000);
  4721.     CreateDynamicObject(2958, 922.22778320, -2735.31567383, 12.97802162, 0.00000000, 0.00000000, 0.00000000);
  4722.     CreateDynamicObject(2958, 921.78930664, -2734.87768555, 12.97802162, 0.00000000, 0.00000000, 0.00000000);
  4723.     CreateDynamicObject(2958, 922.41711426, -2732.19897461, 12.97802162, 0.00000000, 0.00000000, 0.00000000);
  4724.     CreateDynamicObject(2958, 921.92681885, -2731.61108398, 12.97802162, 0.00000000, 0.00000000, 0.00000000);
  4725.     CreateDynamicObject(2958, 922.26214600, -2731.51538086, 12.97802162, 0.00000000, 0.00000000, 0.00000000);
  4726.     CreateDynamicObject(2958, 922.36743164, -2731.96826172, 12.97802162, 0.00000000, 0.00000000, 0.00000000);
  4727.     CreateDynamicObject(2958, 921.84045410, -2732.06201172, 12.97802162, 0.00000000, 0.00000000, 0.00000000);
  4728.     CreateDynamicObject(1951, 922.11254883, -2734.81835938, 13.06597710, 0.00000000, 0.00000000, 0.00000000);
  4729.     CreateDynamicObject(1951, 921.87786865, -2735.58105469, 13.06597710, 0.00000000, 0.00000000, 0.00000000);
  4730.     CreateDynamicObject(1951, 922.09991455, -2732.74047852, 13.06597710, 0.00000000, 0.00000000, 0.00000000);
  4731.     CreateDynamicObject(1951, 922.13012695, -2731.68359375, 13.06597710, 0.00000000, 0.00000000, 0.00000000);
  4732.     CreateDynamicObject(1281, 930.87420654, -2740.35253906, 12.86288261, 0.00000000, 0.00000000, 0.00000000);
  4733.     CreateDynamicObject(1281, 931.14794922, -2731.70507812, 12.86288261, 0.00000000, 0.00000000, 0.00000000);
  4734.     CreateDynamicObject(1432, 921.90753174, -2740.81958008, 12.05468750, 0.00000000, 0.00000000, 0.00000000);
  4735.     CreateDynamicObject(1594, 925.76013184, -2731.47290039, 12.53949165, 0.00000000, 0.00000000, 0.00000000);
  4736.     CreateDynamicObject(1594, 925.83331299, -2737.72949219, 12.53949165, 0.00000000, 0.00000000, 0.00000000);
  4737.     CreateDynamicObject(1670, 926.04260254, -2737.56176758, 13.01710796, 0.00000000, 0.00000000, 0.00000000);
  4738.     CreateDynamicObject(1670, 925.78485107, -2738.00708008, 13.01710796, 0.00000000, 0.00000000, 0.00000000);
  4739.     CreateDynamicObject(1670, 925.74871826, -2731.56152344, 13.01710796, 0.00000000, 0.00000000, 0.00000000);
  4740.     CreateDynamicObject(1670, 930.44165039, -2731.60986328, 12.87052155, 0.00000000, 0.00000000, 0.00000000);
  4741.     CreateDynamicObject(1670, 921.82690430, -2740.77856445, 12.67002583, 0.00000000, 0.00000000, 0.00000000);
  4742.     CreateDynamicObject(987, 870.73010254, -2827.27539062, 12.04687500, 0.00000000, 0.00000000, 0.00000000);
  4743.  
  4744. // Building Jump
  4745.     AddStaticVehicle(522,3337.4318,802.7615,8.0119,91.5842,79,6);
  4746.   AddStaticVehicle(522,3337.5517,798.2864,8.0119,91.5842,79,6);
  4747.   AddStaticVehicle(522,3337.6293,794.5963,8.0119,91.5842,79,6);
  4748.   AddStaticVehicle(522,3337.6884,789.7890,8.0119,91.5842,79,6);
  4749.   AddStaticVehicle(522,3337.7067,785.8456,8.0119,91.5842,79,6);
  4750.   AddStaticVehicle(411,3317.6274,795.2666,8.0119,91.5842,79,6);
  4751.   AddStaticVehicle(411,3316.3916,801.1903,8.0119,91.5842,79,6);
  4752.   AddStaticVehicle(411,3318.3188,808.5711,8.0119,91.5842,79,6);
  4753. // LSA Airport Vehicle
  4754.     AddStaticVehicle(411,1638.5455,-2449.8977,13.2818,183.0932,66,61); // ls airport car
  4755.     AddStaticVehicle(451,1663.9902,-2452.6213,13.2617,174.8688,29,48); // lsairport car
  4756.     AddStaticVehicle(506,1646.4318,-2432.2837,13.2592,185.0854,41,17); // lsairport car super
  4757.     // Objects
  4758.     CreateDynamicObject(5137, 3303.848145, 796.826904, 4.693139, 0.000000, 0.000000, 0.000000);
  4759.     CreateDynamicObject(5175, 3294.813965, 845.017273, 6.326382, 0.000000, 0.000000, 98.8351623643);
  4760.     CreateDynamicObject(5309, 3279.538818, 960.435852, 4.176234, 0.000000, 0.000000, 91.10023213);
  4761.     CreateDynamicObject(5397, 3301.849121, 1015.004517, 7.783152, 0.000000, 0.000000, 0.000000);
  4762.     CreateDynamicObject(7021, 3371.671631, 1021.932983, 3.207845, 0.000000, 0.000000, -122.039953067);
  4763.     CreateDynamicObject(8058, 3426.133301, 976.659119, 5.128363, 0.000000, 0.000000, -30.9397209371);
  4764.     CreateDynamicObject(8059, 3466.613037, 950.590027, 3.102371, 0.000000, 0.000000, -31.7991576298);
  4765.     CreateDynamicObject(10844, 3517.969482, 920.248962, 3.272540, 0.000000, 0.000000, 0.000000);
  4766.     CreateDynamicObject(11093, 3563.237793, 919.880127, 3.240623, 0.000000, 0.000000, 0.000000);
  4767.     CreateDynamicObject(13078, 3573.167480, 873.208679, 3.474827, 0.000000, 0.000000, 0.000000);
  4768.     CreateDynamicObject(18365, 3455.085205, 760.569519, 7.226211, 0.000000, 0.000000, 114.304965537);
  4769.     CreateDynamicObject(8040, 3494.289307, 847.960693, 1.149854, 0.000000, 0.000000, 233.767410667);
  4770.     CreateDynamicObject(3469, 3432.272217, 682.677490, 10.565086, 0.000000, 0.000000, -8.59436692696);
  4771.     CreateDynamicObject(5189, 3424.127930, 622.961548, 5.039643, 0.000000, 0.000000, 0.000000);
  4772.     CreateDynamicObject(5413, 3449.927734, 569.181580, 5.498812, 0.000000, 0.000000, 0.000000);
  4773.     CreateDynamicObject(5430, 3498.361084, 631.984070, 7.705626, 0.000000, 0.000000, 268.144591896);
  4774.     CreateDynamicObject(10425, 3532.135742, 563.549744, -2.343524, 0.000000, 0.000000, 0.000000);
  4775.     CreateDynamicObject(10945, 3641.286377, 478.822052, -55.232155, 0.859436692696, 88.5219220519, 0.000000);
  4776.     CreateDynamicObject(1632, 3303.914063, 783.104675, 7.587057, 0.000000, 0.000000, 90.2407954373);
  4777.     CreateDynamicObject(1633, 3293.136475, 809.952454, 8.972483, 0.000000, 0.000000, -41.2529612494);
  4778.     CreateDynamicObject(1634, 3309.778564, 846.638428, 8.881512, 5.15662015618, 0.000000, 59.3010745003);
  4779.     CreateDynamicObject(1655, 3284.330566, 902.937866, 12.656288, 0.000000, 0.000000, 6.87549354157);
  4780.     CreateDynamicObject(1632, 3278.774170, 991.593750, 9.759163, 0.000000, 0.000000, 0.000000);
  4781.     CreateDynamicObject(1655, 3333.802490, 1018.988464, 12.304018, 0.000000, 0.000000, 250.096593237);
  4782.     CreateDynamicObject(1634, 3477.904541, 935.973389, 7.453256, 0.000000, 0.000000, -114.304965537);
  4783.     CreateDynamicObject(1503, 3526.757324, 922.950012, 6.479844, 0.000000, 0.000000, 264.706902421);
  4784.     CreateDynamicObject(1503, 3526.614014, 920.302429, 6.486970, 0.000000, 0.000000, 264.706902421);
  4785.     CreateDynamicObject(1633, 3573.288574, 902.909912, 7.089702, 0.000000, 0.000000, 185.638726693);
  4786.     CreateDynamicObject(1634, 3554.060303, 870.777771, 6.908055, 0.000000, 0.000000, 98.8351623643);
  4787.     CreateDynamicObject(1655, 3427.420166, 663.427979, 14.863684, 0.000000, 0.000000, 173.606498404);
  4788.     CreateDynamicObject(1633, 3419.717285, 618.080811, 11.605591, 0.000000, 0.000000, 182.200979922);
  4789.     CreateDynamicObject(1633, 3420.038086, 609.942200, 13.910982, 0.000000, 0.000000, 182.200979922);
  4790.     CreateDynamicObject(1634, 3420.393066, 603.764771, 15.591929, 0.000000, 0.000000, 183.919853307);
  4791.     CreateDynamicObject(1631, 3464.011963, 578.966248, 8.197685, 0.000000, 0.000000, 0.000000);
  4792.     CreateDynamicObject(1633, 3466.826172, 608.300415, 6.377155, -12.8915503904, 0.000000, 0.000000);
  4793.     CreateDynamicObject(1633, 3462.639648, 608.217346, 6.371537, -12.8915503904, 0.000000, 0.000000);
  4794.     CreateDynamicObject(1634, 3511.678467, 607.329712, 7.321455, 0.000000, 0.000000, 179.622612548);
  4795.     CreateDynamicObject(1634, 3511.646240, 602.867065, 10.192833, 19.767043932, 0.000000, 179.622612548);
  4796.     CreateDynamicObject(1655, 3555.024658, 542.592896, 12.350355, 0.000000, 0.000000, -104.851161917);
  4797.     CreateDynamicObject(971, 3278.250977, 777.916687, 12.092124, 0.000000, 0.000000, 0.000000);
  4798.     CreateDynamicObject(971, 3272.279053, 782.113220, 12.067124, 0.000000, 0.000000, -69.6143148126);
  4799.     CreateDynamicObject(971, 3270.798096, 790.696045, 12.092124, 0.000000, 0.000000, -90.2407954373);
  4800.     CreateDynamicObject(974, 3439.687256, 714.516846, 11.441451, 42.1123979421, 0.000000, -20.6264806247);
  4801.     CreateDynamicObject(974, 3433.444580, 716.861816, 11.427580, 42.1123979421, 0.000000, -20.6264806247);
  4802.     CreateDynamicObject(974, 3440.532715, 716.633118, 10.259768, 65.3171313491, 0.000000, -20.6264806247);
  4803.     CreateDynamicObject(974, 3434.290771, 718.989258, 10.212438, 65.3171313491, 0.000000, -20.6264806247);
  4804.     CreateDynamicObject(971, 3468.435547, 541.579285, 11.435934, 0.000000, 0.000000, 41.2529612494);
  4805.     CreateDynamicObject(971, 3473.391113, 548.545166, 11.410934, 0.000000, 0.000000, 68.7548781199);
  4806.     CreateDynamicObject(17565, 3649.867432, 526.222290, 4.258183, 0.000000, 0.000000, -91.10023213);
  4807.     CreateDynamicObject(16304, 3715.388428, 535.283142, 8.461514, 0.000000, 0.000000, 0.000000);
  4808.     CreateDynamicObject(16304, 3716.370850, 525.280823, 8.574861, 0.000000, 0.000000, 0.000000);
  4809.     CreateDynamicObject(16304, 3715.869141, 532.398560, 8.892789, 0.000000, 0.000000, 0.000000);
  4810.     CreateDynamicObject(16304, 3715.938232, 542.815125, 8.714441, 0.000000, 0.000000, 0.000000);
  4811.     CreateDynamicObject(16304, 3717.344238, 511.669617, 8.781808, 0.000000, 0.000000, 0.000000);
  4812.     CreateDynamicObject(16304, 3716.885010, 518.580444, 8.685467, 0.000000, 0.000000, 0.000000);
  4813.     CreateDynamicObject(16304, 3716.868164, 549.093872, 9.448850, 0.000000, 0.000000, 0.000000);
  4814.     CreateDynamicObject(11556, 3689.078369, 508.847870, 2.194235, 0.000000, 0.000000, 165.871568169);
  4815.     CreateDynamicObject(11556, 3641.351563, 505.494415, 7.228427, 0.000000, 0.000000, 165.871568169);
  4816.     CreateDynamicObject(11556, 3595.149170, 509.066589, 1.359442, 0.000000, 0.000000, 165.871568169);
  4817.     CreateDynamicObject(11556, 3547.823975, 514.088074, 11.124634, 0.000000, 0.000000, 165.871568169);
  4818.     CreateDynamicObject(11556, 3540.459229, 541.509888, 10.376655, 0.000000, 0.000000, 155.558213265);
  4819.     CreateDynamicObject(11556, 3606.886719, 494.630432, 14.497817, 0.000000, 0.000000, 165.871568169);
  4820.     CreateDynamicObject(11556, 3568.807129, 494.022980, 16.566442, 0.000000, 0.000000, 165.871568169);
  4821.     CreateDynamicObject(11556, 3708.476563, 488.451904, 9.502863, 0.000000, 0.000000, 165.871568169);
  4822.     CreateDynamicObject(11556, 3666.827393, 482.839600, 11.256490, 0.000000, 0.000000, 157.277086651);
  4823.     CreateDynamicObject(11556, 3631.833740, 473.042389, 14.458735, 0.000000, 0.000000, 157.277086651);
  4824.     CreateDynamicObject(11556, 3737.656738, 503.531982, 5.827675, 0.000000, 0.000000, 177.04430247);
  4825.     CreateDynamicObject(11556, 3576.099854, 548.577515, 8.403137, 0.000000, 0.000000, 348.930896164);
  4826.     CreateDynamicObject(11556, 3611.366699, 561.874451, 12.918475, 0.000000, 0.000000, 348.930896164);
  4827.     CreateDynamicObject(11556, 3618.758789, 546.607910, 2.893256, 0.000000, 0.000000, 348.930896164);
  4828.     CreateDynamicObject(11556, 3555.625977, 560.538147, 8.555838, 0.000000, 0.000000, 348.930896164);
  4829.     CreateDynamicObject(11556, 3660.319092, 549.626770, 3.669044, 0.000000, 0.000000, 348.930896164);
  4830.     CreateDynamicObject(11556, 3699.701660, 547.355957, 6.045138, 0.000000, 0.000000, 348.930896164);
  4831.     CreateDynamicObject(11556, 3739.286133, 547.435120, 8.188432, 0.000000, 0.000000, 331.742334198);
  4832.     CreateDynamicObject(11556, 3679.126465, 564.287415, 11.718189, 0.000000, 0.000000, 331.742334198);
  4833.     CreateDynamicObject(11556, 3642.194580, 564.309265, 7.406321, 0.000000, 0.000000, 331.742334198);
  4834.     CreateDynamicObject(11556, 3582.159668, 582.795044, 13.300624, 0.000000, 0.000000, 331.742334198);
  4835.     CreateDynamicObject(11556, 3618.282959, 584.444153, 14.472034, 0.000000, 0.000000, 331.742334198);
  4836.     CreateDynamicObject(11556, 3547.770752, 605.429810, 3.526531, 0.000000, 0.000000, 207.984195295);
  4837.     CreateDynamicObject(11556, 3581.593262, 630.132874, 7.645311, 0.000000, 0.000000, 207.984195295);
  4838.     CreateDynamicObject(11556, 3603.177734, 636.484741, 14.656654, 0.000000, 0.000000, 207.984195295);
  4839.     CreateDynamicObject(11556, 3791.357422, 539.725586, 14.375686, 0.000000, 0.000000, 177.04430247);
  4840.     CreateDynamicObject(11556, 3768.070557, 513.240112, 4.263651, 0.000000, 0.000000, 177.04430247);
  4841.     CreateDynamicObject(11556, 3758.514160, 535.778015, 8.241341, 0.000000, 0.000000, -85.0841752811);
  4842.     CreateDynamicObject(11556, 3773.043213, 555.382629, -6.325043, 0.000000, 0.000000, 155.558213265);
  4843.     CreateDynamicObject(11556, 3766.582031, 504.747650, 15.041359, 0.000000, 0.000000, 177.04430247);
  4844.     CreateDynamicObject(11556, 3774.877686, 521.978638, 4.421781, 0.000000, 0.000000, 177.04430247);
  4845.     CreateDynamicObject(11556, 3802.429443, 507.080139, 25.278152, 0.000000, 0.000000, 177.04430247);
  4846.     CreateDynamicObject(11556, 3769.546387, 517.107971, 14.985254, 0.000000, 0.000000, 219.156986891);
  4847.     CreateDynamicObject(11556, 3788.193359, 518.850830, 27.294672, 0.000000, 0.000000, 219.156986891);
  4848.     CreateDynamicObject(11556, 3770.247803, 538.225647, 14.379642, 0.000000, -8.59436692696, -52.3220474851);
  4849.     CreateDynamicObject(11556, 3766.460449, 553.181946, 15.237835, 0.000000, -8.59436692696, -52.3220474851);
  4850.     CreateDynamicObject(11556, 3787.025879, 535.045105, 22.461191, 0.000000, -8.59436692696, -52.3220474851);
  4851.     CreateDynamicObject(11556, 3712.779785, 570.594177, 14.400475, 0.000000, -8.59436692696, -52.3220474851);
  4852.     CreateDynamicObject(11556, 3701.128662, 568.377991, 10.739628, 0.000000, -8.59436692696, -52.3220474851);
  4853.     CreateDynamicObject(11556, 3622.401123, 602.773010, 11.949760, 0.000000, -8.59436692696, -52.3220474851);
  4854.     CreateDynamicObject(11556, 3656.877197, 593.258545, 9.893532, 0.000000, -8.59436692696, -52.3220474851);
  4855.     CreateDynamicObject(11556, 3632.750000, 606.495422, 10.718094, 0.000000, -8.59436692696, -52.3220474851);
  4856.     CreateDynamicObject(11556, 3725.758789, 576.704224, 12.117581, 0.000000, -8.59436692696, -52.3220474851);
  4857.     CreateDynamicObject(11556, 3748.218750, 573.662537, 19.363327, 0.000000, 0.000000, -85.0841752811);
  4858.     CreateDynamicObject(11556, 3776.019531, 551.946777, 23.241524, 0.000000, 0.000000, -85.0841752811);
  4859.     CreateDynamicObject(11556, 3748.147461, 492.498413, 14.824233, 0.000000, 0.000000, -173.606498404);
  4860.     CreateDynamicObject(11556, 3727.324463, 476.415741, 14.333548, 0.000000, 0.000000, -173.606498404);
  4861.     CreateDynamicObject(11556, 3745.170166, 471.426331, 14.580076, 0.000000, 0.000000, -173.606498404);
  4862.     CreateDynamicObject(11556, 3792.878174, 499.446411, 14.575703, 0.000000, 0.000000, -173.606498404);
  4863.     CreateDynamicObject(11556, 3783.228760, 481.203888, 20.792917, 0.000000, 0.000000, -173.606498404);
  4864.  
  4865. // Ultra Stunt
  4866.     CreateDynamicObject(4867, -3042.576172, 2457.936279, 10.578823, 0.0000, 0.0000, 0.0000);
  4867.     CreateDynamicObject(4867, -3039.420166, 2640.797607, 10.558935, 0.0000, 0.0000, 180.0000);
  4868.     CreateDynamicObject(4867, -3251.466064, 2457.930664, 10.550778, 0.0000, 0.0000, 0.0001);
  4869.     CreateDynamicObject(4867, -3252.158203, 2640.792969, 10.551620, 0.0000, 0.0000, 180.0000);
  4870.     CreateDynamicObject(1655, -3113.154541, 2585.933350, 10.659046, 348.8273, 0.0000, 0.0000);
  4871.     CreateDynamicObject(1655, -3121.867188, 2585.927246, 10.659058, 348.8273, 0.0000, 0.0000);
  4872.     CreateDynamicObject(1655, -3130.528564, 2585.931641, 10.659050, 348.8273, 0.0000, 0.0000);
  4873.     CreateDynamicObject(1655, -3130.565674, 2592.020020, 12.782545, 4.2972, 0.0000, 0.0000);
  4874.     CreateDynamicObject(1655, -3121.853760, 2592.018311, 12.784052, 4.2972, 0.0000, 0.0000);
  4875.     CreateDynamicObject(1655, -3113.171387, 2592.014160, 12.784044, 4.2972, 0.0000, 0.0000);
  4876.     CreateDynamicObject(1655, -3113.183594, 2596.286865, 15.708408, 20.6265, 0.0000, 0.0000);
  4877.     CreateDynamicObject(1655, -3121.900879, 2596.281738, 15.709122, 20.6265, 0.0000, 0.0000);
  4878.     CreateDynamicObject(1655, -3130.611572, 2596.289551, 15.723873, 20.6265, 0.0000, 0.0000);
  4879.     CreateDynamicObject(1655, -3130.370850, 2559.573486, 10.659044, 348.8273, 0.0000, 180.0000);
  4880.     CreateDynamicObject(1655, -3121.673096, 2559.563232, 10.659054, 348.8273, 0.0000, 180.0000);
  4881.     CreateDynamicObject(1655, -3112.944824, 2559.585693, 10.659065, 348.8273, 0.0000, 180.0000);
  4882.     CreateDynamicObject(3491, -3007.315430, 2394.970947, 19.124142, 0.0000, 0.0000, 180.0000);
  4883.     CreateDynamicObject(1655, -2961.388428, 2428.551025, 11.328943, 356.5623, 0.0000, 191.2501);
  4884.     CreateDynamicObject(1655, -2960.038330, 2421.719482, 15.474771, 18.9076, 0.0000, 191.2501);
  4885.     CreateDynamicObject(1655, -2959.278076, 2417.955078, 21.471642, 46.4095, 0.0000, 191.2501);
  4886.     CreateDynamicObject(1655, -2959.135742, 2417.096924, 29.539186, 74.7709, 0.0000, 191.2501);
  4887.     CreateDynamicObject(1655, -2959.709229, 2419.889893, 36.513222, 102.2729, 0.0000, 191.2501);
  4888.     CreateDynamicObject(1655, -3121.874756, 2599.933838, 20.383001, 36.9557, 0.0000, 0.0000);
  4889.     CreateDynamicObject(1655, -3113.148438, 2599.926270, 20.382267, 36.9557, 0.0000, 0.0000);
  4890.     CreateDynamicObject(1655, -3130.629883, 2599.936523, 20.382572, 36.9557, 0.0000, 0.0000);
  4891.     CreateDynamicObject(1655, -3130.378906, 2553.349609, 12.807304, 4.2972, 0.0000, 180.0000);
  4892.     CreateDynamicObject(1655, -3121.676025, 2553.358154, 12.809061, 4.2972, 0.0000, 180.0000);
  4893.     CreateDynamicObject(1655, -3112.951172, 2553.348633, 12.809044, 4.2972, 0.0000, 180.0000);
  4894.     CreateDynamicObject(1655, -3130.365967, 2549.546387, 15.334591, 20.6265, 0.0000, 180.0000);
  4895.     CreateDynamicObject(1655, -3121.656494, 2549.528076, 15.340067, 20.6265, 0.0000, 180.0000);
  4896.     CreateDynamicObject(1655, -3112.978027, 2549.531006, 15.343540, 20.6265, 0.0000, 180.0000);
  4897.     CreateDynamicObject(1655, -3130.355225, 2545.558594, 20.386995, 36.9557, 0.0000, 180.0000);
  4898.     CreateDynamicObject(1655, -3121.649658, 2545.549316, 20.404839, 36.9557, 0.0000, 180.0000);
  4899.     CreateDynamicObject(1655, -3112.976074, 2545.564941, 20.379831, 36.9557, 0.0000, 180.0000);
  4900.     CreateDynamicObject(1655, -3112.944336, 2543.148193, 25.893177, 51.5661, 0.0000, 180.0000);
  4901.     CreateDynamicObject(1655, -3121.642822, 2543.147705, 25.916790, 51.5661, 0.0000, 180.0000);
  4902.     CreateDynamicObject(1655, -3130.360596, 2543.124512, 25.929245, 51.5661, 0.0000, 180.0000);
  4903.     CreateDynamicObject(1655, -3113.294189, 2602.326172, 25.818464, 51.5661, 0.0000, 0.0000);
  4904.     CreateDynamicObject(1655, -3121.956055, 2602.315186, 25.832558, 51.5661, 0.0000, 0.0000);
  4905.     CreateDynamicObject(1655, -3130.644287, 2602.319824, 25.832561, 51.5661, 0.0000, 0.0000);
  4906.     CreateDynamicObject(4585, -3120.413086, 2626.131592, -70.161148, 0.0000, 0.0000, 0.0000);
  4907.     CreateDynamicObject(4585, -3123.061035, 2519.349609, -70.046997, 0.0000, 0.0000, 0.0000);
  4908.     CreateDynamicObject(18450, -3142.944824, 2662.628906, 18.302122, 90.2409, 0.0000, 0.0000);
  4909.     CreateDynamicObject(18450, -3142.953613, 2654.859863, 10.252131, 0.0000, 0.0000, 0.0000);
  4910.     CreateDynamicObject(18450, -3143.079346, 2647.165039, 18.262526, 90.2409, 0.0000, 180.0000);
  4911.     CreateDynamicObject(18450, -3143.033203, 2654.835205, 25.044804, 180.4818, 0.0000, 180.0000);
  4912.     CreateDynamicObject(18450, -3180.384521, 2654.864746, 11.264074, 0.0000, 3.4377, 0.0000);
  4913.     CreateDynamicObject(18450, -3168.932861, 2654.863770, 10.668615, 0.0000, 6.8755, 0.0000);
  4914.     CreateDynamicObject(18450, -3169.847168, 2654.896729, 10.818276, 0.0000, 9.4538, 0.0000);
  4915.     CreateDynamicObject(18450, -3209.125488, 2654.866943, 17.583761, 0.0000, 12.8916, 0.0000);
  4916.     CreateDynamicObject(18450, -3209.775391, 2654.856934, 17.728315, 0.0000, 16.3293, 0.0000);
  4917.     CreateDynamicObject(18450, -3303.822266, 2654.839355, 28.619726, 0.0000, 0.0000, 0.0000);
  4918.     CreateDynamicObject(9950, -3354.653809, 2611.120117, 22.572756, 0.0000, 0.0000, 180.0000);
  4919.     CreateDynamicObject(1655, -3352.763428, 2569.929199, 28.757261, 348.8273, 0.0000, 202.5000);
  4920.     CreateDynamicObject(1655, -3350.015869, 2563.315918, 30.928627, 0.0000, 0.0000, 202.5000);
  4921.     CreateDynamicObject(645, -2954.575195, 2433.035400, 10.670368, 0.0000, 0.0000, 180.0000);
  4922.     CreateDynamicObject(5005, -3193.666504, 2366.925537, 14.130343, 0.0000, 0.0000, 0.0000);
  4923.     CreateDynamicObject(17310, -3140.359375, 2461.964355, 14.525431, 0.0000, 148.6826, 0.0000);
  4924.     CreateDynamicObject(17310, -3101.372559, 2461.957520, 14.575430, 0.0000, 148.6826, 180.0000);
  4925.     CreateDynamicObject(17310, -3128.013428, 2462.035645, 30.600945, 0.0000, 102.2728, 0.0000);
  4926.     CreateDynamicObject(17310, -3113.891846, 2461.893311, 30.617039, 0.0000, 102.2728, 180.0000);
  4927.     CreateDynamicObject(6869, -3161.123779, 2436.181152, -30.757322, 0.0000, 0.0000, 180.0001);
  4928.     CreateDynamicObject(3095, -3105.636475, 2467.377930, 10.575459, 269.7591, 0.0000, 0.0000);
  4929.     CreateDynamicObject(3095, -3114.637939, 2467.383789, 10.575459, 269.7591, 0.0000, 0.0000);
  4930.     CreateDynamicObject(3095, -3123.629883, 2467.398193, 10.575459, 269.7591, 0.0000, 0.0000);
  4931.     CreateDynamicObject(3095, -3132.601563, 2467.383789, 10.575459, 269.7591, 0.0000, 0.0000);
  4932.     CreateDynamicObject(3095, -3136.099365, 2467.377930, 10.575459, 269.7591, 0.0000, 0.0000);
  4933.     CreateDynamicObject(8947, -3120.907471, 2460.571289, 18.102913, 0.0000, 0.0000, 270.0000);
  4934.     CreateDynamicObject(973, -3120.879150, 2467.944580, 21.616827, 0.0000, 0.0000, 0.0000);
  4935.     CreateDynamicObject(973, -3120.867188, 2467.954590, 22.521667, 0.0000, 0.0000, 0.0000);
  4936.     CreateDynamicObject(973, -3120.848389, 2467.961426, 23.400644, 0.0000, 0.0000, 0.0000);
  4937.     CreateDynamicObject(18450, -3121.050537, 2456.171875, 25.246494, 0.0000, 6.0161, 270.0000);
  4938.     CreateDynamicObject(18450, -3121.052734, 2496.091553, 26.156828, 0.0000, 0.0000, 90.0000);
  4939.     CreateDynamicObject(18450, -3121.041748, 2496.959229, 27.248568, 0.0000, 358.2811, 90.0000);
  4940.     CreateDynamicObject(1634, -3069.081299, 2437.157471, 11.001146, 353.1245, 0.0000, 101.2500);
  4941.     CreateDynamicObject(1634, -3069.883545, 2441.191162, 11.001146, 353.1245, 0.0000, 101.2500);
  4942.     CreateDynamicObject(1634, -3076.486328, 2439.870850, 14.428775, 9.4538, 0.0000, 101.2500);
  4943.     CreateDynamicObject(1634, -3075.683594, 2435.847168, 14.431530, 9.4538, 0.0000, 101.2500);
  4944.     CreateDynamicObject(1655, -3228.000488, 2442.756104, 26.403395, 347.1084, 0.0000, 90.0001);
  4945.     CreateDynamicObject(1634, -3234.828857, 2440.810303, 28.225580, 358.2811, 0.0000, 90.0000);
  4946.     CreateDynamicObject(1634, -3234.820313, 2444.967773, 28.225592, 358.2811, 0.0000, 90.0000);
  4947.     CreateDynamicObject(1655, -3324.618408, 2627.499268, 10.551620, 347.9679, 0.0000, 123.7501);
  4948.     CreateDynamicObject(1655, -3324.310547, 2600.222656, 10.551741, 347.9679, 0.0000, 56.2501);
  4949.     CreateDynamicObject(1655, -3330.428223, 2623.598145, 13.777523, 13.7510, 0.0000, 123.7501);
  4950.     CreateDynamicObject(1655, -3330.264893, 2604.204834, 13.858122, 13.7510, 0.0000, 56.2501);
  4951.     CreateDynamicObject(1655, -3334.625732, 2620.793213, 19.427408, 36.9558, 0.0000, 123.7501);
  4952.     CreateDynamicObject(1655, -3334.429932, 2606.929932, 19.428263, 36.9558, 0.0000, 56.2501);
  4953.     CreateDynamicObject(1655, -3336.320068, 2619.647217, 25.529318, 61.0199, 0.0000, 123.7501);
  4954.     CreateDynamicObject(1655, -3336.166504, 2608.094482, 25.635630, 61.0199, 0.0000, 56.2501);
  4955.     CreateDynamicObject(1655, -3335.894531, 2619.925293, 32.151344, 82.5059, 0.0000, 123.7501);
  4956.     CreateDynamicObject(1655, -3335.771973, 2607.825928, 32.170540, 82.5059, 0.0000, 56.2500);
  4957.     CreateDynamicObject(1655, -3151.892090, 2425.365723, 10.578823, 347.9679, 0.0000, 270.0001);
  4958.     CreateDynamicObject(1655, -3144.426514, 2425.359863, 13.778940, 11.1727, 0.0000, 270.0001);
  4959.     CreateDynamicObject(1655, -3139.579346, 2425.319092, 19.063955, 36.0963, 0.0000, 270.0001);
  4960.     CreateDynamicObject(1655, -3137.821777, 2425.303223, 24.917704, 60.1605, 0.0000, 270.0001);
  4961.     CreateDynamicObject(3491, -3076.375977, 2394.956543, 19.124149, 0.0000, 0.0000, 180.0000);
  4962.     CreateDynamicObject(978, -3068.139160, 2433.528320, 11.494040, 0.0000, 0.0000, 185.1567);
  4963.     CreateDynamicObject(978, -3077.024414, 2431.345215, 11.487869, 0.0000, 0.0000, 202.5000);
  4964.     CreateDynamicObject(978, -3084.925293, 2426.609131, 11.469043, 0.0000, 0.0000, 219.8434);
  4965.     CreateDynamicObject(16776, -3321.156982, 2613.845215, 10.727456, 0.0000, 0.0000, 90.0006);
  4966.     CreateDynamicObject(1633, -3102.768311, 2417.333252, 26.193346, 343.6707, 0.0000, 90.0000);
  4967.     CreateDynamicObject(1633, -3094.336670, 2417.316162, 26.263187, 343.6707, 0.0000, 90.0000);
  4968.     CreateDynamicObject(1633, -3089.722168, 2417.333984, 26.498013, 340.2330, 0.0000, 90.0000);
  4969.     CreateDynamicObject(18450, -3041.908936, 2462.607910, 21.411894, 0.0000, 0.0000, 90.0000);
  4970.     CreateDynamicObject(1655, -3041.174316, 2526.365723, 10.628954, 348.8273, 0.0000, 180.0000);
  4971.     CreateDynamicObject(1655, -3041.159668, 2519.126221, 13.178923, 4.2972, 0.0000, 180.0000);
  4972.     CreateDynamicObject(3331, -3050.089844, 2462.763428, 31.465832, 0.0000, 0.0000, 0.0000);
  4973.     CreateDynamicObject(13592, -3041.680908, 2370.806641, 32.889286, 0.0000, 182.2008, 348.7500);
  4974.     CreateDynamicObject(13592, -3042.050781, 2363.474854, 32.889259, 0.0000, 182.2008, 348.7500);
  4975.     CreateDynamicObject(13592, -3042.401855, 2356.032471, 32.844448, 0.0000, 182.2008, 348.7500);
  4976.     CreateDynamicObject(13592, -3042.595703, 2354.473633, 33.425377, 340.2330, 182.2008, 0.0000);
  4977.     CreateDynamicObject(13592, -3041.910156, 2350.030273, 34.940643, 340.2330, 182.2008, 11.2500);
  4978.     CreateDynamicObject(13592, -3040.096436, 2345.359619, 36.640362, 340.2330, 182.2008, 22.5000);
  4979.     CreateDynamicObject(13592, -3038.631348, 2343.187012, 37.800747, 340.2330, 182.2008, 33.7500);
  4980.     CreateDynamicObject(13592, -3035.245605, 2339.680664, 39.760410, 340.2330, 182.2008, 45.0000);
  4981.     CreateDynamicObject(13592, -3031.790771, 2337.197754, 41.383579, 340.2330, 182.2008, 56.2500);
  4982.     CreateDynamicObject(13592, -3027.866699, 2335.422607, 42.883251, 340.2330, 182.2008, 67.5000);
  4983.     CreateDynamicObject(13592, -3023.913574, 2334.583252, 44.494503, 340.2330, 182.2008, 78.7500);
  4984.     CreateDynamicObject(13592, -3018.938721, 2334.382324, 46.308006, 340.2330, 182.2008, 90.0000);
  4985.     CreateDynamicObject(13592, -3013.980957, 2335.233154, 48.225147, 340.2330, 182.2008, 101.2500);
  4986.     CreateDynamicObject(13592, -3009.330322, 2337.052002, 50.120770, 340.2330, 182.2008, 112.5000);
  4987.     CreateDynamicObject(13592, -3005.422363, 2339.508545, 51.883698, 340.2330, 182.2008, 123.7499);
  4988.     CreateDynamicObject(13592, -3002.467529, 2342.146729, 53.461643, 340.2330, 182.2008, 135.0000);
  4989.     CreateDynamicObject(13592, -2999.576416, 2346.108154, 55.424065, 340.2330, 182.2008, 146.2500);
  4990.     CreateDynamicObject(13592, -2997.954834, 2349.360352, 56.957558, 340.2330, 182.2008, 157.5000);
  4991.     CreateDynamicObject(13592, -2996.826904, 2353.805908, 58.598576, 340.2330, 182.2008, 168.7500);
  4992.     CreateDynamicObject(13592, -2996.676270, 2358.020996, 60.354401, 340.2330, 182.2008, 180.0000);
  4993.     CreateDynamicObject(13592, -2997.556641, 2363.084961, 62.332008, 340.2330, 182.2008, 191.2500);
  4994.     CreateDynamicObject(13592, -2998.914307, 2366.949707, 63.834251, 340.2330, 182.2008, 202.5000);
  4995.     CreateDynamicObject(13592, -3001.409668, 2370.965576, 65.638359, 340.2330, 182.2008, 213.7500);
  4996.     CreateDynamicObject(13592, -3004.162109, 2373.796387, 67.213196, 340.2330, 182.2008, 225.0000);
  4997.     CreateDynamicObject(13592, -3007.902344, 2376.424072, 68.915016, 340.2330, 182.2008, 236.2500);
  4998.     CreateDynamicObject(13592, -3011.521729, 2378.053955, 70.429855, 340.2330, 182.2008, 247.5000);
  4999.     CreateDynamicObject(13592, -3016.206543, 2379.123535, 72.222641, 340.2330, 182.2008, 258.7500);
  5000.     CreateDynamicObject(13592, -3020.436035, 2379.214111, 73.796722, 340.2330, 182.2008, 270.0000);
  5001.     CreateDynamicObject(13592, -3024.331543, 2378.443359, 75.149872, 340.2330, 182.2008, 281.2500);
  5002.     CreateDynamicObject(13592, -3028.709717, 2376.753418, 76.946808, 340.2330, 182.2008, 292.5001);
  5003.     CreateDynamicObject(13592, -3032.137207, 2374.604492, 78.553680, 340.2330, 182.2008, 303.7500);
  5004.     CreateDynamicObject(13592, -3035.893066, 2371.071533, 80.536316, 340.2330, 182.2008, 315.0000);
  5005.     CreateDynamicObject(13592, -3038.277832, 2368.019043, 81.878998, 340.2330, 182.2008, 326.2501);
  5006.     CreateDynamicObject(13592, -3040.072510, 2364.250732, 83.539917, 340.2330, 182.2008, 337.5000);
  5007.     CreateDynamicObject(13592, -3040.776123, 2361.083496, 84.862495, 340.2330, 182.2008, 348.7501);
  5008.     CreateDynamicObject(13592, -3040.844238, 2357.904541, 86.186653, 340.2330, 182.2008, 0.0001);
  5009.     CreateDynamicObject(13592, -3040.538330, 2355.561768, 87.150154, 340.2330, 182.2008, 11.2501);
  5010.     CreateDynamicObject(13592, -3038.882813, 2351.257813, 88.924141, 340.2330, 182.2008, 22.5001);
  5011.     CreateDynamicObject(13592, -3036.477295, 2347.469238, 90.630928, 340.2330, 182.2008, 33.7501);
  5012.     CreateDynamicObject(13592, -3034.032471, 2344.685791, 91.932503, 340.2330, 182.2008, 45.0001);
  5013.     CreateDynamicObject(13592, -3030.714600, 2342.319580, 93.425980, 340.2330, 182.2008, 56.2501);
  5014.     CreateDynamicObject(13592, -3027.276611, 2340.703613, 94.786537, 340.2330, 182.2008, 67.5001);
  5015.     CreateDynamicObject(13592, -3022.592773, 2339.679443, 96.660233, 340.2330, 182.2008, 78.7501);
  5016.     CreateDynamicObject(13592, -3018.386963, 2339.540527, 98.184067, 340.2330, 182.2008, 90.0001);
  5017.     CreateDynamicObject(13592, -3014.629639, 2340.099854, 99.764130, 340.2330, 182.2008, 101.2501);
  5018.     CreateDynamicObject(13592, -3010.566650, 2341.713867, 101.529869, 340.2330, 182.2008, 112.5001);
  5019.     CreateDynamicObject(13592, -3006.900879, 2343.968018, 103.195839, 340.2330, 182.2008, 123.7501);
  5020.     CreateDynamicObject(13592, -3003.717773, 2346.914551, 104.796440, 340.2330, 182.2008, 135.0001);
  5021.     CreateDynamicObject(13592, -3001.029785, 2350.611328, 106.681679, 340.2330, 182.2008, 146.2501);
  5022.     CreateDynamicObject(13592, -2999.103760, 2355.071777, 108.521317, 340.2330, 182.2008, 157.5001);
  5023.     CreateDynamicObject(13592, -2998.145264, 2359.493896, 110.152870, 340.2330, 182.2008, 168.7501);
  5024.     CreateDynamicObject(13592, -2998.059570, 2364.448975, 112.043381, 340.2330, 182.2008, 180.0001);
  5025.     CreateDynamicObject(13592, -2998.584717, 2368.357910, 113.534828, 340.2330, 182.2008, 191.2502);
  5026.     CreateDynamicObject(13592, -3003.615479, 2377.995605, 117.356606, 340.2330, 182.2008, 202.5001);
  5027.     CreateDynamicObject(13592, -3005.929688, 2381.712402, 118.958359, 340.2330, 182.2008, 213.7502);
  5028.     CreateDynamicObject(13592, -3008.417969, 2384.455078, 120.318474, 340.2330, 182.2008, 225.0001);
  5029.     CreateDynamicObject(13592, -3010.750244, 2386.118652, 121.381950, 340.2330, 182.2008, 236.2502);
  5030.     CreateDynamicObject(13592, -3014.680420, 2387.858887, 123.058884, 340.2330, 182.2008, 247.5002);
  5031.     CreateDynamicObject(13592, -3018.272705, 2388.760010, 124.335426, 340.2330, 182.2008, 258.7501);
  5032.     CreateDynamicObject(13592, -3023.139893, 2388.874512, 126.253014, 340.2330, 182.2008, 270.0002);
  5033.     CreateDynamicObject(13592, -3026.925537, 2388.426514, 127.843117, 340.2330, 182.2008, 281.2501);
  5034.     CreateDynamicObject(13592, -3031.183350, 2386.814209, 129.485947, 340.2330, 182.2008, 292.5002);
  5035.     CreateDynamicObject(13592, -3033.624268, 2385.385010, 130.634567, 340.2330, 182.2008, 303.7502);
  5036.     CreateDynamicObject(13592, -3036.450928, 2382.762695, 132.101913, 340.2330, 182.2008, 315.0002);
  5037.     CreateDynamicObject(13592, -3038.456787, 2380.051758, 133.386948, 340.2330, 182.2008, 326.2502);
  5038.     CreateDynamicObject(13592, -3040.117676, 2376.628662, 134.889725, 340.2330, 182.2008, 337.5002);
  5039.     CreateDynamicObject(13592, -3040.916992, 2373.083252, 136.231598, 340.2330, 182.2008, 348.7503);
  5040.     CreateDynamicObject(13592, -3041.005371, 2369.737549, 137.649872, 340.2330, 182.2008, 0.0003);
  5041.     CreateDynamicObject(8040, -3032.996094, 2323.741699, 129.169083, 0.0000, 0.0000, 101.2500);
  5042.     CreateDynamicObject(5005, -3275.077637, 2366.947754, 14.102287, 0.0000, 0.0000, 180.0000);
  5043.     CreateDynamicObject(5005, -3357.661133, 2450.162354, 14.102295, 0.0000, 0.0000, 270.0000);
  5044.     CreateDynamicObject(4113, -3375.208984, 2544.462402, 26.329384, 0.0000, 0.0000, 11.2500);
  5045.     CreateDynamicObject(17310, -3155.534912, 2527.843994, 15.622383, 0.0000, 144.3854, 326.2500);
  5046.     CreateDynamicObject(17310, -3157.348145, 2507.935791, 15.622387, 0.0000, 144.3854, 22.5000);
  5047.     CreateDynamicObject(1378, -3170.432129, 2625.672852, 33.568516, 0.0000, 0.0000, 123.7500);
  5048.     CreateDynamicObject(1383, -3146.447021, 2517.107666, 52.809032, 0.0000, 0.0000, 0.0000);
  5049.     CreateDynamicObject(5005, -3358.472168, 2649.104004, 14.103136, 0.0000, 0.0000, 90.0001);
  5050.     CreateDynamicObject(5005, -3275.742188, 2731.845703, 14.103136, 0.0000, 0.0000, 180.0001);
  5051.     CreateDynamicObject(5005, -3112.945068, 2731.817627, 14.103136, 0.0000, 0.0000, 180.0001);
  5052.     CreateDynamicObject(5005, -2950.106445, 2731.723145, 14.110452, 0.0000, 0.0000, 180.0001);
  5053.     CreateDynamicObject(17310, -3044.365967, 2709.940918, 10.680559, 0.0000, 161.5743, 90.0000);
  5054.     CreateDynamicObject(17310, -3253.723633, 2710.080566, 10.673231, 0.0000, 161.5743, 90.0000);
  5055.     CreateDynamicObject(4867, -3040.448486, 2848.736572, 10.555890, 0.0000, 0.0000, 180.0000);
  5056.     CreateDynamicObject(5005, -3019.946289, 2757.801514, 14.107407, 0.0000, 0.0000, 180.0001);
  5057.     CreateDynamicObject(4867, -3252.309082, 2848.608643, 10.552845, 0.0000, 0.0000, 180.0000);
  5058.     CreateDynamicObject(5005, -3182.895020, 2757.522705, 14.104362, 0.0000, 0.0000, 180.0001);
  5059.     CreateDynamicObject(5005, -3275.191895, 2757.607910, 14.104362, 0.0000, 0.0000, 180.0001);
  5060.     CreateDynamicObject(17310, -3045.577148, 2779.400879, 10.652502, 0.0000, 161.5743, 269.9999);
  5061.     CreateDynamicObject(17310, -3253.789551, 2779.211426, 10.648228, 0.0000, 161.5743, 270.0000);
  5062.     CreateDynamicObject(4867, -3253.222168, 3031.777832, 10.549792, 0.0000, 0.0000, 180.0000);
  5063.     CreateDynamicObject(4867, -3040.436035, 3031.875732, 10.552845, 0.0000, 0.0000, 180.0000);
  5064.     CreateDynamicObject(17310, -3341.477051, 2490.224365, 15.622387, 0.0000, 144.3854, 202.5000);
  5065.     CreateDynamicObject(1634, -3331.404785, 2395.433594, 10.498105, 347.1084, 0.0000, 146.2500);
  5066.     CreateDynamicObject(1634, -3335.135986, 2389.854492, 13.692667, 12.0321, 0.0000, 146.2500);
  5067.     CreateDynamicObject(1634, -3338.035400, 2385.482910, 20.006296, 36.9558, 0.0000, 146.2500);
  5068.     CreateDynamicObject(1634, -3339.166504, 2383.777344, 27.250076, 60.1605, 0.0000, 146.2500);
  5069.     CreateDynamicObject(1634, -3338.677002, 2384.521973, 34.842663, 82.5059, 0.0000, 146.2500);
  5070.     CreateDynamicObject(3819, -3026.878662, 2362.617920, 129.401215, 0.0000, 0.0000, 101.2500);
  5071.     CreateDynamicObject(3819, -3053.525391, 2357.369141, 129.401215, 0.0000, 0.0000, 101.2500);
  5072.     CreateDynamicObject(13666, -3247.164795, 2479.065674, 15.506104, 0.0000, 0.0000, 315.0000);
  5073.     CreateDynamicObject(13666, -3247.174072, 2473.953613, 15.406097, 0.0000, 0.0000, 315.0000);
  5074.     CreateDynamicObject(7617, -2981.484131, 2427.560303, 21.591473, 0.0000, 0.0000, 191.2500);
  5075.     CreateDynamicObject(9907, -2940.625732, 2929.381592, 27.176672, 0.0000, 324.7631, 180.0000);
  5076.     CreateDynamicObject(1655, -2992.599121, 2920.740479, 10.630889, 348.8273, 0.0000, 270.0000);
  5077.     CreateDynamicObject(1655, -2992.592285, 2929.406494, 10.631010, 348.8273, 0.0000, 270.0000);
  5078.     CreateDynamicObject(1655, -2992.591309, 2938.125488, 10.631006, 348.8273, 0.0000, 270.0000);
  5079.     CreateDynamicObject(1655, -2984.619629, 2920.745117, 13.549704, 6.0161, 0.0000, 270.0000);
  5080.     CreateDynamicObject(1655, -2984.629639, 2929.464111, 13.547218, 6.0161, 0.0000, 270.0000);
  5081.     CreateDynamicObject(1655, -2984.634766, 2938.135254, 13.556004, 6.0161, 0.0000, 270.0000);
  5082.     CreateDynamicObject(1655, -2977.691650, 2920.736572, 18.488459, 19.7670, 0.0000, 270.0000);
  5083.     CreateDynamicObject(1655, -2977.675781, 2929.451904, 18.502350, 19.7670, 0.0000, 270.0000);
  5084.     CreateDynamicObject(1655, -2977.697266, 2938.161133, 18.494007, 19.7670, 0.0000, 270.0000);
  5085.     CreateDynamicObject(712, -2996.668701, 2914.430908, 20.155247, 0.0000, 0.0000, 0.0000);
  5086.     CreateDynamicObject(712, -2996.391357, 2944.351563, 20.152203, 0.0000, 0.0000, 0.0000);
  5087.     CreateDynamicObject(712, -2974.943115, 2915.846680, 30.180433, 0.0000, 0.0000, 0.0000);
  5088.     CreateDynamicObject(712, -2975.017334, 2943.042236, 30.135756, 0.0000, 0.0000, 0.0000);
  5089.     CreateDynamicObject(712, -2953.858887, 2915.855225, 60.089493, 0.0000, 0.0000, 0.0000);
  5090.     CreateDynamicObject(712, -2953.815186, 2942.874268, 60.240326, 0.0000, 0.0000, 0.0000);
  5091.     CreateDynamicObject(712, -2929.548340, 2942.521973, 94.324158, 0.0000, 0.0000, 0.0000);
  5092.     CreateDynamicObject(712, -2929.499756, 2915.889404, 94.498833, 0.0000, 0.0000, 0.0000);
  5093.     CreateDynamicObject(9907, -2906.174072, 2929.370117, 31.637400, 0.0000, 359.1406, 180.0000);
  5094.     CreateDynamicObject(5005, -2934.239746, 2877.270996, 14.107407, 0.0000, 0.0000, 89.9999);
  5095.     CreateDynamicObject(5005, -2934.195313, 3040.184326, 14.104362, 0.0000, 0.0000, 89.9999);
  5096.     CreateDynamicObject(1655, -2953.485352, 3024.125244, 10.652975, 348.8273, 0.0000, 270.0000);
  5097.     CreateDynamicObject(1655, -2947.047607, 3024.118652, 13.215729, 9.4538, 0.0000, 270.0000);
  5098.     CreateDynamicObject(1655, -2941.512939, 3024.136230, 18.471672, 31.7992, 0.0000, 270.0000);
  5099.     CreateDynamicObject(1655, -2938.589844, 3024.145752, 25.291140, 55.8633, 0.0000, 270.0000);
  5100.     CreateDynamicObject(1655, -2938.698975, 3024.172852, 33.042782, 79.0681, 0.0000, 270.0000);
  5101.     CreateDynamicObject(8391, -3322.602539, 3095.660645, 32.455173, 0.0000, 0.0000, 270.0000);
  5102.     CreateDynamicObject(17310, -3321.763184, 3105.685791, 9.924798, 0.0000, 164.1526, 180.0000);
  5103.     CreateDynamicObject(17310, -3338.035400, 3105.619873, 21.261639, 0.0000, 124.6183, 180.0000);
  5104.     CreateDynamicObject(17310, -3343.317871, 3105.515625, 36.794941, 359.1406, 91.9596, 180.0000);
  5105.     CreateDynamicObject(1655, -3322.548584, 3105.752197, 10.624790, 348.8273, 0.0000, 90.0001);
  5106.     CreateDynamicObject(17310, -3106.525635, 2837.757568, 10.677505, 0.0000, 161.5743, 180.0000);
  5107.     CreateDynamicObject(17310, -3194.259766, 2837.656250, 10.749468, 0.0000, 161.5743, 0.0000);
  5108.     CreateDynamicObject(16118, -3146.590820, 2823.103516, 8.707335, 0.0000, 0.0000, 81.3283);
  5109.     CreateDynamicObject(16118, -3157.488525, 2852.293701, 7.957341, 0.0000, 0.0000, 265.7028);
  5110.     CreateDynamicObject(647, -3137.833252, 2835.529541, 12.387806, 0.0000, 0.0000, 0.0000);
  5111.     CreateDynamicObject(650, -3148.890137, 2840.454590, 10.776737, 0.0000, 0.0000, 0.0000);
  5112.     CreateDynamicObject(651, -3155.275879, 2837.217285, 10.752514, 0.0000, 0.0000, 0.0000);
  5113.     CreateDynamicObject(653, -3164.891846, 2838.114746, 11.081518, 0.0000, 0.0000, 0.0000);
  5114.     CreateDynamicObject(675, -3147.081787, 2838.515869, 11.050555, 0.0000, 0.0000, 0.0000);
  5115.     CreateDynamicObject(677, -3140.243896, 2834.257568, 10.560513, 0.0000, 0.0000, 0.0000);
  5116.     CreateDynamicObject(678, -3145.956543, 2840.956543, 10.666986, 0.0000, 0.0000, 0.0000);
  5117.     CreateDynamicObject(679, -3153.741699, 2836.082275, 10.592300, 0.0000, 0.0000, 0.0000);
  5118.     CreateDynamicObject(728, -3149.833496, 2835.800049, 11.551490, 0.0000, 0.0000, 0.0000);
  5119.     CreateDynamicObject(800, -3144.815918, 2834.579346, 14.199767, 0.0000, 0.0000, 0.0000);
  5120.     CreateDynamicObject(801, -3154.159180, 2841.236816, 10.550099, 0.0000, 0.0000, 0.0000);
  5121.     CreateDynamicObject(802, -3157.736572, 2834.432373, 10.945739, 0.0000, 0.0000, 0.0000);
  5122.     CreateDynamicObject(803, -3159.666748, 2836.598389, 11.972151, 0.0000, 0.0000, 0.0000);
  5123.     CreateDynamicObject(804, -3163.772949, 2838.858154, 11.732321, 0.0000, 0.0000, 0.0000);
  5124.     CreateDynamicObject(805, -3160.544678, 2840.875000, 11.702179, 0.0000, 0.0000, 0.0000);
  5125.     CreateDynamicObject(806, -3151.307861, 2840.550293, 14.343499, 0.0000, 0.0000, 0.0000);
  5126.     CreateDynamicObject(808, -3140.051025, 2830.757813, 12.357832, 0.0000, 0.0000, 0.0000);
  5127.     CreateDynamicObject(817, -3146.958252, 2841.930908, 10.995399, 0.0000, 0.0000, 0.0000);
  5128.     CreateDynamicObject(818, -3137.225830, 2840.812012, 14.346546, 0.0000, 0.0000, 0.0000);
  5129.     CreateDynamicObject(818, -3171.036133, 2840.353271, 14.343499, 0.0000, 0.0000, 0.0000);
  5130.     CreateDynamicObject(819, -3153.711426, 2837.175537, 12.437609, 0.0000, 0.0000, 0.0000);
  5131.     CreateDynamicObject(820, -3133.616211, 2834.819092, 10.871976, 0.0000, 0.0000, 0.0000);
  5132.     CreateDynamicObject(821, -3133.446289, 2838.374023, 12.598070, 0.0000, 0.0000, 0.0000);
  5133.     CreateDynamicObject(1225, -3142.467285, 2839.747314, 10.961645, 0.0000, 0.0000, 0.0000);
  5134.     CreateDynamicObject(1225, -3140.203613, 2837.930420, 10.961645, 0.0000, 0.0000, 0.0000);
  5135.     CreateDynamicObject(1225, -3132.368896, 2842.231201, 10.961645, 0.0000, 0.0000, 0.0000);
  5136.     CreateDynamicObject(1225, -3135.896729, 2831.035156, 10.961645, 0.0000, 0.0000, 0.0000);
  5137.     CreateDynamicObject(1225, -3132.646973, 2833.262207, 10.961645, 0.0000, 0.0000, 0.0000);
  5138.     CreateDynamicObject(1225, -3146.713135, 2835.073486, 10.958600, 0.0000, 0.0000, 0.0000);
  5139.     CreateDynamicObject(1225, -3147.542236, 2838.041992, 10.958600, 0.0000, 0.0000, 0.0000);
  5140.     CreateDynamicObject(1225, -3153.217285, 2837.379395, 10.958600, 0.0000, 0.0000, 0.0000);
  5141.     CreateDynamicObject(1225, -3156.346191, 2836.178467, 10.958600, 0.0000, 0.0000, 0.0000);
  5142.     CreateDynamicObject(1225, -3150.011475, 2834.160889, 10.958600, 0.0000, 0.0000, 0.0000);
  5143.     CreateDynamicObject(1225, -3145.527588, 2840.061523, 10.961645, 0.0000, 0.0000, 0.0000);
  5144.     CreateDynamicObject(1225, -3152.359375, 2839.633545, 10.958600, 0.0000, 0.0000, 0.0000);
  5145.     CreateDynamicObject(1225, -3154.941162, 2840.518799, 10.958600, 0.0000, 0.0000, 0.0000);
  5146.     CreateDynamicObject(1225, -3156.349609, 2840.796143, 10.958600, 0.0000, 0.0000, 0.0000);
  5147.     CreateDynamicObject(1225, -3159.563721, 2839.382568, 10.958600, 0.0000, 0.0000, 0.0000);
  5148.     CreateDynamicObject(1225, -3161.679688, 2842.069580, 10.958600, 0.0000, 0.0000, 0.0000);
  5149.     CreateDynamicObject(1225, -3163.445801, 2837.438232, 10.958600, 0.0000, 0.0000, 0.0000);
  5150.     CreateDynamicObject(1225, -3167.794678, 2835.232178, 10.958600, 0.0000, 0.0000, 0.0000);
  5151.     CreateDynamicObject(1225, -3169.849365, 2841.814941, 10.958600, 0.0000, 0.0000, 0.0000);
  5152.     CreateDynamicObject(1225, -3165.418213, 2841.807617, 10.958600, 0.0000, 0.0000, 0.0000);
  5153.     CreateDynamicObject(1225, -3177.110840, 2842.028320, 10.958600, 0.0000, 0.0000, 0.0000);
  5154.     CreateDynamicObject(1225, -3177.734863, 2834.850342, 10.958600, 0.0000, 0.0000, 0.0000);
  5155.     CreateDynamicObject(16776, -3154.789551, 2851.170654, 26.276161, 0.0000, 0.0000, 0.0000);
  5156.     CreateDynamicObject(16776, -3154.866699, 2825.510742, 26.242226, 0.0000, 0.0000, 180.0000);
  5157.     CreateDynamicObject(16118, -3154.248291, 2823.905273, 8.901876, 0.0000, 0.0000, 81.3283);
  5158.     CreateDynamicObject(16118, -3157.370361, 2857.827881, 6.957336, 0.0000, 0.0000, 265.7028);
  5159.     CreateDynamicObject(1633, -3150.382080, 2873.361816, 11.578133, 0.0000, 0.0000, 90.0000);
  5160.     CreateDynamicObject(1633, -3177.944580, 2873.124268, 11.553141, 0.0000, 0.0000, 270.0000);
  5161.     CreateDynamicObject(5005, -3016.932861, 3122.971191, 14.104363, 0.0000, 0.0000, 359.9997);
  5162.     CreateDynamicObject(5005, -3176.117676, 3123.061035, 14.101309, 0.0000, 0.0000, 179.9998);
  5163.     CreateDynamicObject(1655, -3266.246826, 3116.283691, 10.624791, 348.8273, 0.0000, 45.0000);
  5164.     CreateDynamicObject(1655, -3271.615479, 3121.661621, 13.724905, 9.4538, 0.0000, 45.0000);
  5165.     CreateDynamicObject(1655, -3275.655029, 3125.708252, 19.270586, 31.7992, 0.0000, 45.0000);
  5166.     CreateDynamicObject(1655, -3277.768555, 3127.807373, 26.143686, 55.8633, 0.0000, 45.0000);
  5167.     CreateDynamicObject(1655, -3277.870605, 3127.877197, 33.161018, 75.6304, 0.0000, 45.0000);
  5168.     CreateDynamicObject(13666, -3135.746582, 2892.158936, 16.336203, 0.0000, 0.0000, 247.5000);
  5169.     CreateDynamicObject(5005, -3357.680664, 2840.301758, 14.104362, 0.0000, 0.0000, 269.9998);
  5170.     CreateDynamicObject(5005, -3357.557373, 2999.584717, 14.101309, 0.0000, 0.0000, 90.0000);
  5171.     CreateDynamicObject(4601, -3291.648193, 3010.833984, 40.360600, 0.0000, 0.0000, 0.0000);
  5172.     CreateDynamicObject(1634, -3270.027100, 2959.123047, 11.597101, 0.0000, 0.0000, 90.0000);
  5173.     CreateDynamicObject(1634, -3270.033691, 2963.135742, 11.597114, 0.0000, 0.0000, 90.0000);
  5174.     CreateDynamicObject(1634, -3289.334473, 2963.486572, 14.959484, 0.0000, 0.0000, 90.0000);
  5175.     CreateDynamicObject(1634, -3289.316162, 2959.354004, 14.959484, 0.0000, 0.0000, 90.0000);
  5176.     CreateDynamicObject(1634, -3310.464600, 2963.764160, 18.933681, 0.0000, 0.0000, 90.0000);
  5177.     CreateDynamicObject(1634, -3310.449219, 2959.651367, 18.933685, 0.0000, 0.0000, 90.0000);
  5178.     CreateDynamicObject(1634, -3329.735107, 2964.163330, 22.803234, 0.0000, 0.0000, 90.0000);
  5179.     CreateDynamicObject(1634, -3329.747559, 2960.045166, 22.803234, 0.0000, 0.0000, 90.0000);
  5180.     CreateDynamicObject(13638, -3348.830811, 2964.109619, 28.115387, 0.0000, 0.0000, 0.0000);
  5181.     CreateDynamicObject(13645, -3351.522461, 2970.525391, 33.272278, 0.0000, 0.0000, 0.0000);
  5182.     CreateDynamicObject(18450, -3294.422852, 2981.473877, 33.758495, 0.0000, 0.0000, 0.0000);
  5183.     CreateDynamicObject(18450, -3214.492676, 2981.525146, 33.745380, 0.0000, 0.0000, 0.0000);
  5184.     CreateDynamicObject(1655, -3177.001465, 2981.541016, 34.189247, 348.8273, 0.0000, 270.0000);
  5185.     CreateDynamicObject(1655, -3171.141602, 2981.546631, 36.110806, 2.5783, 0.0000, 270.0000);
  5186.     CreateDynamicObject(1633, -3201.206787, 3021.469238, 11.625091, 0.0000, 0.0000, 270.0001);
  5187.     CreateDynamicObject(1633, -3201.203125, 3025.583008, 11.625087, 0.0000, 0.0000, 270.0001);
  5188.     CreateDynamicObject(1633, -3194.782471, 3021.516602, 11.625087, 0.0000, 0.0000, 90.0002);
  5189.     CreateDynamicObject(1633, -3194.785156, 3025.646240, 11.625087, 0.0000, 0.0000, 90.0002);
  5190.     CreateDynamicObject(13666, -3197.405273, 3023.383789, 13.055103, 0.0000, 0.0000, 191.2501);
  5191.     CreateDynamicObject(3269, -3311.524414, 2782.205566, 11.375990, 0.0000, 0.0000, 0.0000);
  5192.     CreateDynamicObject(12956, -3154.034668, 2977.483887, 13.853039, 0.0000, 0.0000, 0.0000);
  5193.     CreateDynamicObject(13641, -3165.427734, 2771.969238, 12.272089, 0.0000, 0.0000, 0.0000);
  5194.     CreateDynamicObject(13641, -3130.001953, 2772.825928, 12.275134, 0.0000, 0.0000, 180.0000);
  5195.     CreateDynamicObject(3819, -3049.905762, 2528.966064, 11.576581, 0.0000, 0.0000, 270.0000);
  5196.     CreateDynamicObject(3819, -3032.597656, 2528.978760, 11.576581, 0.0000, 0.0000, 270.0000);
  5197.     CreateDynamicObject(17310, -3315.928955, 3020.554443, 15.621401, 0.0000, 144.3854, 180.0000);
  5198.     CreateDynamicObject(17310, -3314.769287, 3027.127441, 15.621397, 0.0000, 144.3854, 157.5000);
  5199.     CreateDynamicObject(17310, -3314.665771, 3013.956055, 15.621401, 0.0000, 144.3854, 202.5001);
  5200.     CreateDynamicObject(17310, -3311.360107, 3032.428711, 15.621401, 0.0000, 144.3854, 135.0000);
  5201.     CreateDynamicObject(17310, -3311.007080, 3008.465332, 15.621401, 0.0000, 144.3854, 225.0001);
  5202.     CreateDynamicObject(17310, -3305.886230, 3036.125732, 15.621401, 0.0000, 144.3854, 112.5001);
  5203.     CreateDynamicObject(17310, -3305.695801, 3004.948242, 15.621401, 0.0000, 144.3854, 247.5001);
  5204.     CreateDynamicObject(17310, -3299.506592, 3037.440918, 15.621401, 0.0000, 144.3854, 90.0000);
  5205.     CreateDynamicObject(17310, -3299.506592, 3003.729980, 15.621401, 0.0000, 144.3854, 270.0001);
  5206.     CreateDynamicObject(13592, -3301.720703, 2855.300293, 22.123451, 0.0000, 0.0000, 45.0000);
  5207.     CreateDynamicObject(13603, -2960.039063, 3097.082764, 9.987560, 0.0000, 0.0000, 0.0000);
  5208.     CreateDynamicObject(13603, -2959.992920, 3133.046875, 20.205635, 0.0000, 328.2008, 90.0000);
  5209.     CreateDynamicObject(13603, -2996.554932, 3097.004639, 20.428823, 0.0000, 328.2008, 180.0000);
  5210.     CreateDynamicObject(13603, -2986.146973, 3121.953125, 20.202507, 0.0000, 328.2008, 135.0000);
  5211.     CreateDynamicObject(13603, -2923.912598, 3097.110840, 20.350138, 0.0000, 328.2008, 0.0000);
  5212.     CreateDynamicObject(13603, -2934.441406, 3123.459961, 20.883221, 0.0000, 328.2008, 45.0000);
  5213.     CreateDynamicObject(1655, -2968.259033, 3051.989014, 10.627962, 348.8273, 0.0000, 348.7500);
  5214.     CreateDynamicObject(1655, -2966.853760, 3058.944824, 13.252958, 6.0161, 0.0000, 348.7500);
  5215.     CreateDynamicObject(7916, -3123.010254, 2654.608154, 12.326002, 0.0000, 0.0000, 180.0000);
  5216.     CreateDynamicObject(17310, -3122.154053, 2382.805176, 15.650433, 0.0000, 144.3854, 0.0000);
  5217.     CreateDynamicObject(1655, -3122.837646, 2408.699707, 26.478390, 347.9679, 0.0000, 180.0002);
  5218.     CreateDynamicObject(1655, -3122.850342, 2401.388184, 29.053377, 5.1566, 0.0000, 180.0002);
  5219.     CreateDynamicObject(13592, -3000.530029, 2372.962402, 115.297256, 340.2330, 182.2008, 202.5002);
  5220.     CreateDynamicObject(6869, -3069.978027, 3103.616455, -23.872152, 0.0000, 0.0000, 179.9995);
  5221.     CreateDynamicObject(13638, -3341.901611, 2981.497559, 35.737705, 0.0000, 0.0000, 0.0000);
  5222.     CreateDynamicObject(1697, -3349.771484, 2987.403564, 41.228630, 31.7992, 0.0000, 270.0000);
  5223.     CreateDynamicObject(1697, -3354.695801, 2987.406494, 42.585159, 0.0000, 0.0000, 270.0000);
  5224.     CreateDynamicObject(1697, -3359.182617, 2987.766113, 44.018993, 31.7992, 0.0000, 180.0000);
  5225.     CreateDynamicObject(1697, -3359.187012, 2992.740723, 45.400463, 0.0000, 0.0000, 180.0000);
  5226.     CreateDynamicObject(1697, -3359.192627, 2997.597656, 46.839149, 31.7992, 0.0000, 180.0000);
  5227.     CreateDynamicObject(1697, -3359.190674, 3002.479492, 48.160179, 0.0000, 0.0000, 180.0000);
  5228.     CreateDynamicObject(1697, -3359.192627, 3007.320801, 49.563473, 31.7992, 0.0000, 180.0000);
  5229.     CreateDynamicObject(18450, -3288.616211, 2361.512695, 25.318966, 0.0000, 22.3454, 90.0000);
  5230.     CreateDynamicObject(18450, -3288.611328, 2402.069824, 9.443968, 0.0000, 19.7670, 90.0000);
  5231.     CreateDynamicObject(18450, -3288.614258, 2406.123047, 8.593977, 0.0000, 18.0482, 90.0000);
  5232.     CreateDynamicObject(18450, -3288.610840, 2405.442383, 9.343977, 0.0000, 16.3293, 90.0000);
  5233.     CreateDynamicObject(18450, -3288.622070, 2406.816406, 9.718979, 0.0000, 13.7510, 90.0000);
  5234.     CreateDynamicObject(18450, -3288.656250, 2402.930664, 10.840132, 0.0000, 12.8916, 90.0000);
  5235.     CreateDynamicObject(18450, -3288.641602, 2406.313965, 10.460612, 0.0000, 11.1727, 90.0000);
  5236.     CreateDynamicObject(18450, -3288.628418, 2411.170410, 9.993971, 0.0000, 9.4538, 90.0000);
  5237.     CreateDynamicObject(18450, -3288.631592, 2411.273193, 10.634884, 0.0000, 6.8755, 90.0000);
  5238.     CreateDynamicObject(18450, -3288.624268, 2417.611816, 10.518959, 0.0000, 5.1566, 90.0000);
  5239.     CreateDynamicObject(18450, -3288.584229, 2393.099121, 12.570820, 0.0000, 3.4377, 90.0000);
  5240.     CreateDynamicObject(1634, -3284.655273, 2371.466797, 21.128786, 320.4659, 0.0000, 0.0001);
  5241.     CreateDynamicObject(1634, -3284.646973, 2378.154541, 20.388836, 335.9358, 0.0000, 0.0001);
  5242.     CreateDynamicObject(1634, -3284.649902, 2385.681152, 21.850714, 354.8434, 0.0000, 0.0001);
  5243.     CreateDynamicObject(18450, -3288.589355, 2328.713623, 38.932575, 0.0000, 24.9237, 90.0000);
  5244.     CreateDynamicObject(18450, -3288.564941, 2321.208984, 42.639103, 0.0000, 27.5020, 90.0000);
  5245.     CreateDynamicObject(18450, -3288.557617, 2250.519287, 79.455185, 0.0000, 27.5020, 90.0000);
  5246.     CreateDynamicObject(1634, -3292.406006, 2430.692871, 10.219288, 339.3735, 0.0000, 0.0001);
  5247.     CreateDynamicObject(1634, -3292.406982, 2437.976563, 12.123088, 359.1406, 0.0000, 0.0001);
  5248.     CreateDynamicObject(18450, -3288.593018, 2185.641846, 113.191948, 0.0000, 27.5020, 90.0000);
  5249.     CreateDynamicObject(8040, -3289.746826, 2110.368408, 132.735886, 0.0000, 0.0000, 90.0000);
  5250.     CreateDynamicObject(3095, -3116.584229, 2396.992432, 26.001511, 0.0000, 0.0000, 0.0000);
  5251.     CreateDynamicObject(3095, -3116.588623, 2396.996582, 11.150450, 0.0000, 179.6224, 0.0000);
  5252.     CreateDynamicObject(7504, -3112.584717, 2393.009277, -20.168404, 0.0000, 270.6186, 0.0000);
  5253.     CreateDynamicObject(7505, -3111.010986, 2401.101563, -53.443382, 0.0000, 91.1003, 180.0000);
  5254.     CreateDynamicObject(7505, -3122.168945, 2393.041748, -53.443401, 0.0000, 91.1003, 0.0001);
  5255.     CreateDynamicObject(7504, -3120.610596, 2400.976318, -19.818384, 0.0000, 270.6186, 180.0000);
  5256.     CreateDynamicObject(7505, -3110.701172, 2400.714600, -53.543400, 0.8594, 89.3814, 270.0000);
  5257.     CreateDynamicObject(7504, -3111.587891, 2392.921631, -19.793386, 0.0000, 270.6186, 270.0000);
  5258.     CreateDynamicObject(3095, -3125.468506, 2397.047607, 10.525459, 0.0000, 352.2651, 0.0000);
  5259.     CreateDynamicObject(3095, -3107.607422, 2397.004639, 21.240335, 0.0000, 0.0000, 0.0000);
  5260.     CreateDynamicObject(3511, -3062.998779, 2434.114746, 10.572599, 0.0000, 0.0000, 67.5000);
  5261.     CreateDynamicObject(3511, -3336.462646, 2417.699707, 10.544555, 0.0000, 0.0000, 67.5000);
  5262.     CreateDynamicObject(3511, -3338.123535, 2519.471680, 10.544555, 0.0000, 0.0000, 67.5000);
  5263.     CreateDynamicObject(3511, -3363.438477, 2654.218994, 28.675907, 0.0000, 0.0000, 56.2500);
  5264.     CreateDynamicObject(1655, -2953.033447, 2710.552490, 11.134058, 354.8434, 0.0000, 315.0000);
  5265.     CreateDynamicObject(1655, -2948.474365, 2715.105713, 15.084044, 20.6265, 0.0000, 315.0000);
  5266.     CreateDynamicObject(1655, -2945.761719, 2717.825684, 21.355368, 48.9878, 0.0000, 315.0000);
  5267.     CreateDynamicObject(1655, -2945.158691, 2718.417236, 28.584692, 72.1926, 0.0000, 315.0000);
  5268.     CreateDynamicObject(1655, -2947.021484, 2716.525879, 34.914307, 103.1323, 0.0000, 315.0000);
  5269.     CreateDynamicObject(17310, -2937.568848, 2686.714844, 13.530542, 0.0000, 137.5100, 3.4377);
  5270.     CreateDynamicObject(17310, -2942.555908, 2686.393066, 12.019249, 0.0000, 157.2771, 3.4377);
  5271.     CreateDynamicObject(1655, -2951.865723, 2660.908203, 11.134058, 354.8434, 0.0000, 236.2501);
  5272.     CreateDynamicObject(1655, -2946.403076, 2657.262695, 15.009048, 20.6265, 0.0000, 236.2501);
  5273.     CreateDynamicObject(1655, -2943.005615, 2654.985596, 21.659050, 48.9878, 0.0000, 236.2501);
  5274.     CreateDynamicObject(1655, -2942.493896, 2654.640137, 28.359045, 72.1926, 0.0000, 236.2501);
  5275.     CreateDynamicObject(1655, -2944.571045, 2656.062744, 35.035831, 103.1323, 0.0000, 236.2501);
  5276.     CreateDynamicObject(13666, -2973.344727, 2637.568604, 16.514246, 0.0000, 0.0000, 11.2500);
  5277.     CreateDynamicObject(13666, -2970.256836, 2637.706787, 16.514246, 0.0000, 0.0000, 11.2500);
  5278.     CreateDynamicObject(13666, -2966.776611, 2637.857910, 16.514246, 0.0000, 0.0000, 11.2500);
  5279.     CreateDynamicObject(13666, -2964.840332, 2637.993896, 16.414248, 0.0000, 0.0000, 0.0000);
  5280.     CreateDynamicObject(13666, -2962.281982, 2637.576904, 16.364248, 0.0000, 0.0000, 348.7500);
  5281.     CreateDynamicObject(13666, -2959.847412, 2636.646484, 16.289249, 0.0000, 0.0000, 337.5000);
  5282.     CreateDynamicObject(13666, -2957.722168, 2635.312988, 16.189251, 0.0000, 0.0000, 326.2500);
  5283.     CreateDynamicObject(13666, -2956.196777, 2633.873779, 16.139252, 0.0000, 0.0000, 315.0000);
  5284.     CreateDynamicObject(13666, -2954.824219, 2631.932617, 16.039253, 0.0000, 0.0000, 303.7500);
  5285.     CreateDynamicObject(7092, -3093.090332, 2422.730957, 22.738468, 0.0000, 0.0000, 270.0000);
  5286.     CreateDynamicObject(13666, -2953.745361, 2629.489990, 15.964243, 0.0000, 0.0000, 292.5000);
  5287.     CreateDynamicObject(13666, -2953.195557, 2627.149414, 15.889248, 0.0000, 0.0000, 281.2500);
  5288.     CreateDynamicObject(13666, -2953.023193, 2623.565186, 15.889244, 0.0000, 0.0000, 281.2500);
  5289.     CreateDynamicObject(13666, -2952.841309, 2619.885498, 15.889256, 0.0000, 0.0000, 281.2500);
  5290.     CreateDynamicObject(13666, -2952.671387, 2616.198730, 15.889256, 0.0000, 0.0000, 281.2500);
  5291.     CreateDynamicObject(13666, -2952.498779, 2612.575439, 15.889256, 0.0000, 0.0000, 281.2500);
  5292.     CreateDynamicObject(13666, -2976.978516, 2637.405029, 16.514242, 0.0000, 0.0000, 11.2500);
  5293.     CreateDynamicObject(13831, -2936.993896, 2473.727783, 45.926090, 356.5623, 0.0000, 265.7028);
  5294.     CreateDynamicObject(9191, -2943.771240, 2461.882813, 21.073215, 0.8594, 0.0000, 265.6255);
  5295.     CreateDynamicObject(7307, -2926.875244, 2635.032715, 37.978268, 0.0000, 0.0000, 226.7961);
  5296.     CreateDynamicObject(7305, -2932.472168, 2577.431885, 36.784492, 3.4377, 358.2811, 307.1877);
  5297.     CreateDynamicObject(1655, -3065.333008, 3092.787598, 10.652977, 348.8273, 0.0000, 270.0000);
  5298.     CreateDynamicObject(1655, -3058.479248, 3092.798340, 13.852959, 13.7510, 0.0000, 270.0000);
  5299.     CreateDynamicObject(1655, -3054.451172, 3092.786865, 18.154371, 33.5180, 0.0000, 270.0000);
  5300.     CreateDynamicObject(1655, -3051.878906, 3092.805664, 23.799110, 51.5662, 0.0000, 270.0000);
  5301.     CreateDynamicObject(1655, -3051.439209, 3092.851318, 29.536249, 71.3332, 0.0000, 270.0000);
  5302.     CreateDynamicObject(1655, -3033.296631, 3119.098145, 33.838535, 353.9839, 0.0000, 270.0000);
  5303.     CreateDynamicObject(1655, -3027.240234, 3119.060547, 36.663586, 11.1727, 0.0000, 270.0000);
  5304.     CreateDynamicObject(1655, -3138.488281, 3114.702881, 33.613522, 353.9839, 0.0000, 90.0000);
  5305.     CreateDynamicObject(1655, -3138.496582, 3106.007813, 33.613537, 353.9839, 0.0000, 90.0000);
  5306.     CreateDynamicObject(1655, -3144.582764, 3114.704834, 36.836182, 16.3293, 0.0000, 90.0000);
  5307.     CreateDynamicObject(1655, -3144.598145, 3106.019775, 36.838966, 16.3293, 0.0000, 90.0000);
  5308.     CreateDynamicObject(17310, -2943.986328, 2818.826660, 13.927505, 0.0000, 150.4015, 338.2820);
  5309.     CreateDynamicObject(17310, -2932.173828, 2814.404053, 30.900436, 0.0000, 103.1325, 338.2820);
  5310. // Rolleer Coaster
  5311.     CreateDynamicObject(17310, 34.57476044, -887.66448975, 1760.09765625, 180.00000000, 0.00000000, 0.00000000);
  5312.     CreateDynamicObject(17310, 34.64450073, -899.41406250, 1760.09765625, 179.99450684, 0.00000000, 0.00000000);
  5313.     CreateDynamicObject(17310, 34.72475052, -910.80218506, 1760.09765625, 179.99450684, 0.00000000, 0.00000000);
  5314.     CreateDynamicObject(17310, 35.20911407, -932.66516113, 1759.77233887, 181.00000000, 1.00000000, 2.00000000);
  5315.     CreateDynamicObject(17310, 34.80761719, -921.12695312, 1760.09765625, 179.99450684, 0.00000000, 0.00000000);
  5316.     CreateDynamicObject(17310, 35.90522003, -943.88513184, 1758.92150879, 353.50109863, 181.00604248, 182.09591675);
  5317.     CreateDynamicObject(17310, 36.31106567, -954.25592041, 1756.94531250, 345.74728394, 181.03047180, 182.23275757);
  5318.     CreateDynamicObject(17310, 36.33239365, -964.69030762, 1753.76989746, 345.74804688, 178.44775391, 183.84510803);
  5319.     CreateDynamicObject(17310, 37.08867645, -974.85614014, 1749.89379883, 333.74996948, 178.32000732, 183.47941589);
  5320.     CreateDynamicObject(17310, 37.67556000, -983.57098389, 1744.02038574, 319.75524902, 178.02484131, 182.94451904);
  5321.     CreateDynamicObject(17310, 38.02721405, -990.62249756, 1737.96984863, 319.75158691, 178.02246094, 182.94433594);
  5322.     CreateDynamicObject(17310, 38.45936203, -998.79010010, 1730.71838379, 319.75158691, 178.02246094, 182.94433594);
  5323.     CreateDynamicObject(17310, 38.88676453, -1006.15966797, 1723.39282227, 319.75158691, 178.02246094, 188.94433594);
  5324.     CreateDynamicObject(17310, 40.32274246, -1014.79809570, 1715.79296875, 319.75158691, 178.01696777, 188.94287109);
  5325.     CreateDynamicObject(17310, 41.69134140, -1023.11987305, 1708.34375000, 319.75158691, 178.01696777, 188.94287109);
  5326.     CreateDynamicObject(17310, 43.28479004, -1032.70043945, 1702.34277344, 339.74203491, 178.38677979, 189.66571045);
  5327.     CreateDynamicObject(17310, 44.94924927, -1042.30346680, 1699.19140625, 345.48898315, 178.43499756, 189.82958984);
  5328.     CreateDynamicObject(17310, 46.91207123, -1052.95776367, 1696.84130859, 351.23495483, 178.46649170, 189.98594666);
  5329.     CreateDynamicObject(17310, 48.99878693, -1063.01660156, 1695.13964844, 351.23291016, 178.46191406, 193.98107910);
  5330.     CreateDynamicObject(17310, 51.60067749, -1073.19067383, 1693.13842773, 351.23291016, 178.46191406, 201.98010254);
  5331.     CreateDynamicObject(17310, 55.39310455, -1082.01416016, 1691.53808594, 351.23291016, 178.46191406, 207.97814941);
  5332.     CreateDynamicObject(17310, 60.32950211, -1091.64624023, 1689.80615234, 351.23291016, 178.46191406, 213.97668457);
  5333.     CreateDynamicObject(17310, 66.12738800, -1100.20983887, 1688.20581055, 351.23291016, 178.46191406, 217.97521973);
  5334.     CreateDynamicObject(17310, 72.74922943, -1108.52990723, 1686.45507812, 351.23291016, 178.46191406, 221.97424316);
  5335.     CreateDynamicObject(17310, 79.55522919, -1115.64990234, 1684.77990723, 351.23291016, 178.46191406, 227.97326660);
  5336.     CreateDynamicObject(17310, 86.65985107, -1121.62268066, 1683.02819824, 351.23291016, 178.46191406, 233.97180176);
  5337.     CreateDynamicObject(17310, 94.18294525, -1127.05822754, 1681.57824707, 351.23291016, 178.46191406, 239.97033691);
  5338.     CreateDynamicObject(17310, 102.66355133, -1131.62744141, 1680.07775879, 351.23291016, 178.46191406, 245.96887207);
  5339.     CreateDynamicObject(17310, 112.22058868, -1135.77282715, 1678.42761230, 351.23291016, 178.46191406, 249.96740723);
  5340.     CreateDynamicObject(17310, 122.04869080, -1139.27001953, 1676.70190430, 351.23291016, 178.46191406, 253.96643066);
  5341.     CreateDynamicObject(17310, 132.33396912, -1142.08837891, 1675.02648926, 351.23291016, 178.46191406, 257.96545410);
  5342.     CreateDynamicObject(17310, 141.88467407, -1143.92822266, 1673.45141602, 351.23291016, 178.46191406, 261.96447754);
  5343.     CreateDynamicObject(17310, 153.02806091, -1145.44885254, 1671.65039062, 351.23291016, 178.46191406, 265.96350098);
  5344.     CreateDynamicObject(17310, 163.11920166, -1146.19897461, 1670.05053711, 351.23291016, 178.46191406, 269.96252441);
  5345.     CreateDynamicObject(17310, 172.27658081, -1145.99267578, 1668.65014648, 351.23291016, 178.46191406, 275.96154785);
  5346.     CreateDynamicObject(17310, 182.33079529, -1144.88354492, 1667.07507324, 351.23291016, 178.46191406, 279.96008301);
  5347.     CreateDynamicObject(17310, 191.32708740, -1143.15661621, 1665.62487793, 351.23291016, 178.46191406, 279.95910645);
  5348.     CreateDynamicObject(17310, 201.52459717, -1141.38879395, 1663.27282715, 343.73568726, 178.41650391, 279.75000000);
  5349.     CreateDynamicObject(17310, 212.09747314, -1139.37500000, 1659.44726562, 337.73712158, 178.35327148, 279.56558228);
  5350.     CreateDynamicObject(17310, 221.79006958, -1137.80322266, 1654.37219238, 327.74072266, 178.19647217, 279.22528076);
  5351.     CreateDynamicObject(17310, 230.21493530, -1136.32250977, 1648.16882324, 320.74246216, 178.02624512, 278.93862915);
  5352.     CreateDynamicObject(17310, 247.08882141, -1133.45043945, 1633.81823730, 320.74035645, 178.02246094, 278.93737793);
  5353.     CreateDynamicObject(17310, 238.79687500, -1134.82421875, 1640.74316406, 320.74035645, 178.02246094, 278.93737793);
  5354.     CreateDynamicObject(17310, 254.73979187, -1132.21228027, 1627.46765137, 320.74035645, 178.02246094, 278.93737793);
  5355.     CreateDynamicObject(17310, 262.25289917, -1131.07775879, 1621.16662598, 320.74035645, 178.02246094, 278.93737793);
  5356.     CreateDynamicObject(17310, 269.99023438, -1129.83300781, 1614.71691895, 320.74035645, 178.02246094, 278.93737793);
  5357.     CreateDynamicObject(17310, 294.79949951, -1125.80139160, 1592.71691895, 327.48669434, 178.18432617, 279.21301270);
  5358.     CreateDynamicObject(17310, 303.53350830, -1124.39575195, 1586.99291992, 327.48596191, 178.18176270, 279.21203613);
  5359.     CreateDynamicObject(17310, 311.91680908, -1122.82666016, 1581.44384766, 327.48596191, 178.18176270, 279.21203613);
  5360.     CreateDynamicObject(17310, 321.44232178, -1121.30285645, 1574.94311523, 327.48596191, 178.18176270, 279.21203613);
  5361.     CreateDynamicObject(17310, 285.75213623, -1127.43530273, 1598.56823730, 327.48596191, 178.18176270, 279.21203613);
  5362.     CreateDynamicObject(17310, 331.49887085, -1119.58105469, 1569.19238281, 334.23278809, 178.29754639, 279.44934082);
  5363.     CreateDynamicObject(17310, 341.61996460, -1117.62194824, 1564.46618652, 337.97994995, 178.34582520, 279.56835938);
  5364.     CreateDynamicObject(17310, 352.39144897, -1115.64294434, 1560.56677246, 343.22576904, 178.39379883, 279.72207642);
  5365.     CreateDynamicObject(17310, 363.43136597, -1113.78942871, 1557.76721191, 349.47146606, 178.43267822, 279.89566040);
  5366.     CreateDynamicObject(17310, 374.44873047, -1111.91186523, 1556.44287109, 357.46667480, 178.45391846, 280.11206055);
  5367.     CreateDynamicObject(17310, 385.48162842, -1110.23254395, 1556.36779785, 3.21005249, 178.45001221, 280.26281738);
  5368.     CreateDynamicObject(17310, 396.71121216, -1108.21948242, 1557.59521484, 11.20501709, 178.41772461, 280.48175049);
  5369.     CreateDynamicObject(17310, 406.20416260, -1106.41674805, 1560.14648438, 18.44769287, 178.35839844, 280.69210815);
  5370.     CreateDynamicObject(17310, 415.76614380, -1104.68054199, 1564.49707031, 32.43963623, 178.15380859, 281.16043091);
  5371.     CreateDynamicObject(17310, 422.91329956, -1103.23547363, 1570.17248535, 44.42980957, 177.81201172, 281.69555664);
  5372.     CreateDynamicObject(17310, 430.67510986, -1101.58129883, 1577.92492676, 44.42871094, 177.80822754, 281.69494629);
  5373.     CreateDynamicObject(17310, 439.22024536, -1099.74365234, 1584.82604980, 34.43502808, 178.10241699, 281.23358154);
  5374.     CreateDynamicObject(17310, 448.26699829, -1097.94177246, 1590.07678223, 26.43518066, 178.24938965, 280.93820190);
  5375.     CreateDynamicObject(17310, 458.27343750, -1095.94909668, 1594.20214844, 18.43661499, 178.34600830, 280.67984009);
  5376.     CreateDynamicObject(17310, 468.91036987, -1093.91210938, 1596.95214844, 10.43829346, 178.39971924, 280.44396973);
  5377.     CreateDynamicObject(17310, 479.70822144, -1091.89099121, 1597.95312500, 0.44082642, 178.42248535, 280.16400146);
  5378.     CreateDynamicObject(17310, 490.66165161, -1089.94274902, 1597.22741699, 352.44253540, 178.40417480, 279.94027710);
  5379.     CreateDynamicObject(17310, 500.33871460, -1088.19177246, 1594.87707520, 342.44543457, 178.33801270, 279.64599609);
  5380.     CreateDynamicObject(17310, 511.42892456, -1086.19482422, 1591.30175781, 342.44384766, 178.33557129, 279.64050293);
  5381.     CreateDynamicObject(17310, 522.51293945, -1084.09606934, 1587.70141602, 342.44384766, 178.33557129, 279.64050293);
  5382.     CreateDynamicObject(17310, 533.36206055, -1082.04846191, 1584.00024414, 342.44384766, 178.33557129, 279.64050293);
  5383.     CreateDynamicObject(17310, 542.84533691, -1080.46044922, 1580.49975586, 342.44384766, 178.33557129, 272.14050293);
  5384.     CreateDynamicObject(17310, 552.71746826, -1079.93920898, 1577.22448730, 342.43835449, 178.33007812, 268.13684082);
  5385.     CreateDynamicObject(17310, 561.65863037, -1080.20532227, 1574.02453613, 342.43286133, 178.33007812, 264.13232422);
  5386.     CreateDynamicObject(17310, 571.58758545, -1081.11193848, 1570.37438965, 342.42736816, 178.33007812, 260.12780762);
  5387.     CreateDynamicObject(17310, 581.14306641, -1082.32055664, 1567.14941406, 342.42187500, 178.33007812, 256.12329102);
  5388.     CreateDynamicObject(17310, 589.69506836, -1083.92822266, 1564.14892578, 342.42187500, 178.33007812, 248.11877441);
  5389.     CreateDynamicObject(17310, 597.64672852, -1087.12731934, 1561.02404785, 342.42187500, 178.33007812, 242.11523438);
  5390.     CreateDynamicObject(17310, 605.93731689, -1091.83325195, 1557.74853516, 342.42187500, 178.33007812, 238.11120605);
  5391.     CreateDynamicObject(17310, 614.85797119, -1097.62023926, 1554.05004883, 342.42187500, 178.33007812, 234.10668945);
  5392.     CreateDynamicObject(17310, 622.25543213, -1103.19348145, 1550.59985352, 342.42187500, 178.33007812, 228.10217285);
  5393.     CreateDynamicObject(17310, 629.45440674, -1109.84655762, 1546.99951172, 342.42187500, 178.33007812, 222.09814453);
  5394.     CreateDynamicObject(17310, 635.98785400, -1117.14892578, 1543.47473145, 342.42187500, 178.33007812, 218.09411621);
  5395.     CreateDynamicObject(17310, 641.84887695, -1124.68066406, 1540.07287598, 342.42187500, 178.33007812, 212.08959961);
  5396.     CreateDynamicObject(17310, 646.78698730, -1132.62280273, 1536.74682617, 342.42187500, 178.33007812, 208.08557129);
  5397.     CreateDynamicObject(17310, 651.25805664, -1141.16076660, 1533.29443359, 342.42187500, 178.33007812, 204.08105469);
  5398.     CreateDynamicObject(17310, 654.86157227, -1149.70666504, 1529.81823730, 342.42187500, 178.33007812, 198.07653809);
  5399.     CreateDynamicObject(17310, 657.54144287, -1158.16564941, 1526.56652832, 342.42187500, 178.33007812, 194.07250977);
  5400.     CreateDynamicObject(17310, 659.72509766, -1167.51257324, 1523.08984375, 342.42187500, 178.33007812, 190.06799316);
  5401.     CreateDynamicObject(17310, 661.32727051, -1177.10546875, 1519.41516113, 342.42187500, 178.33007812, 186.06347656);
  5402.     CreateDynamicObject(17310, 662.25701904, -1186.78527832, 1516.04003906, 342.42187500, 178.33007812, 182.05895996);
  5403.     CreateDynamicObject(17310, 662.37127686, -1194.98022461, 1512.66418457, 342.42187500, 178.33007812, 176.05444336);
  5404.     CreateDynamicObject(17310, 661.64031982, -1203.82666016, 1509.38891602, 342.42187500, 178.33007812, 172.05041504);
  5405.     CreateDynamicObject(17310, 660.23919678, -1215.05285645, 1505.76403809, 342.42187500, 178.33007812, 172.04589844);
  5406.     CreateDynamicObject(17310, 658.97003174, -1224.88562012, 1502.56481934, 342.42187500, 178.33007812, 172.04589844);
  5407.     CreateDynamicObject(17310, 657.46533203, -1235.58154297, 1498.66491699, 338.42361450, 178.28808594, 171.92065430);
  5408.     CreateDynamicObject(17310, 656.11968994, -1245.99316406, 1494.01184082, 334.92443848, 178.24035645, 171.80401611);
  5409.     CreateDynamicObject(17310, 654.74176025, -1256.50378418, 1488.83618164, 334.92370605, 178.23669434, 171.79870605);
  5410.     CreateDynamicObject(17310, 653.37109375, -1266.47387695, 1484.06164551, 334.92370605, 178.23669434, 171.79870605);
  5411.     CreateDynamicObject(17310, 651.89819336, -1276.54785156, 1479.18627930, 334.92370605, 178.23669434, 169.79870605);
  5412.     CreateDynamicObject(17310, 650.03497314, -1286.47473145, 1474.21057129, 334.91821289, 178.23669434, 167.79370117);
  5413.     CreateDynamicObject(17310, 647.87347412, -1296.49633789, 1469.01013184, 334.91821289, 178.23669434, 167.78869629);
  5414.     CreateDynamicObject(17310, 645.79443359, -1306.22814941, 1464.31066895, 334.91821289, 178.23669434, 167.78869629);
  5415.     CreateDynamicObject(2780, 287.83538818, -1142.99145508, 1603.56262207, 0.00000000, 0.00000000, 0.00000000);
  5416.     CreateDynamicObject(2780, 281.72930908, -1112.66247559, 1603.56262207, 0.00000000, 0.00000000, 0.00000000);
  5417.     CreateDynamicObject(2780, 278.55780029, -1126.52221680, 1606.31262207, 0.00000000, 0.00000000, 0.00000000);
  5418.     CreateDynamicObject(2780, 278.22457886, -1124.80310059, 1606.31262207, 0.00000000, 0.00000000, 0.00000000);
  5419.     CreateDynamicObject(2780, 277.84301758, -1122.83886719, 1606.31262207, 0.00000000, 0.00000000, 0.00000000);
  5420.     CreateDynamicObject(2780, 277.27185059, -1119.89306641, 1606.31262207, 0.00000000, 0.00000000, 0.00000000);
  5421.     CreateDynamicObject(2780, 276.70056152, -1116.94677734, 1606.31262207, 0.00000000, 0.00000000, 0.00000000);
  5422.     CreateDynamicObject(2780, 275.89138794, -1112.77307129, 1606.31262207, 0.00000000, 0.00000000, 0.00000000);
  5423.     CreateDynamicObject(2780, 279.40164185, -1130.88537598, 1606.31262207, 0.00000000, 0.00000000, 0.00000000);
  5424.     CreateDynamicObject(2780, 279.87713623, -1133.33959961, 1606.31262207, 0.00000000, 0.00000000, 0.00000000);
  5425.     CreateDynamicObject(2780, 280.30514526, -1135.54821777, 1606.31262207, 0.00000000, 0.00000000, 0.00000000);
  5426.     CreateDynamicObject(2780, 280.78045654, -1138.00268555, 1606.31262207, 0.00000000, 0.00000000, 0.00000000);
  5427.     CreateDynamicObject(2780, 281.30361938, -1140.70227051, 1606.31262207, 0.00000000, 0.00000000, 0.00000000);
  5428.     CreateDynamicObject(2780, 281.73092651, -1142.91149902, 1606.31262207, 0.00000000, 0.00000000, 0.00000000);
  5429.     CreateDynamicObject(2780, 281.73046875, -1142.91113281, 1606.31262207, 0.00000000, 0.00000000, 0.00000000);
  5430.     CreateDynamicObject(17310, 643.53710938, -1316.45800781, 1459.33666992, 334.91821289, 178.23669434, 167.78869629);
  5431.     CreateDynamicObject(17310, 641.34014893, -1326.11853027, 1454.71057129, 334.91821289, 178.23669434, 167.78869629);
  5432.     CreateDynamicObject(17310, 639.28527832, -1335.41772461, 1450.23608398, 334.91821289, 178.23669434, 167.78869629);
  5433.     CreateDynamicObject(17310, 637.16796875, -1345.76208496, 1445.30822754, 334.91821289, 178.23669434, 167.78869629);
  5434.     CreateDynamicObject(17310, 635.39331055, -1356.21569824, 1440.23657227, 334.91821289, 178.23669434, 167.78869629);
  5435.     CreateDynamicObject(17310, 633.39111328, -1365.78833008, 1435.66223145, 334.91821289, 178.23669434, 167.78869629);
  5436.     CreateDynamicObject(17310, 631.56781006, -1374.22961426, 1431.58593750, 334.91821289, 178.23669434, 167.78869629);
  5437.     CreateDynamicObject(17310, 629.25250244, -1384.36303711, 1426.65930176, 334.91821289, 178.23669434, 167.78869629);
  5438.     CreateDynamicObject(17310, 627.38922119, -1393.21398926, 1422.43481445, 334.91821289, 178.23669434, 167.78869629);
  5439.     CreateDynamicObject(17310, 625.71588135, -1400.83508301, 1418.73413086, 334.91821289, 178.23669434, 167.78869629);
  5440.     CreateDynamicObject(17310, 623.94848633, -1409.03173828, 1414.78369141, 334.91821289, 178.23669434, 167.78869629);
  5441.     CreateDynamicObject(17310, 621.75579834, -1419.00671387, 1409.95690918, 334.91821289, 178.23669434, 167.78869629);
  5442.     CreateDynamicObject(17310, 619.73095703, -1428.81542969, 1405.08007812, 334.91821289, 178.23669434, 167.78869629);
  5443.     CreateDynamicObject(17310, 617.61627197, -1438.66674805, 1400.30407715, 334.91821289, 178.23669434, 167.78869629);
  5444.     CreateDynamicObject(17310, 615.57604980, -1448.37060547, 1395.62988281, 334.91821289, 178.23669434, 167.78869629);
  5445.     CreateDynamicObject(17310, 613.66052246, -1457.53283691, 1391.25427246, 334.91821289, 178.23669434, 167.78869629);
  5446.     CreateDynamicObject(3461, 470.77703857, -1078.26843262, 1599.89501953, 0.00000000, 0.00000000, 0.00000000);
  5447.     CreateDynamicObject(3461, 470.91418457, -1078.74829102, 1599.89501953, 0.00000000, 0.00000000, 0.00000000);
  5448.     CreateDynamicObject(3461, 471.05187988, -1079.22875977, 1599.54467773, 0.00000000, 0.00000000, 0.00000000);
  5449.     CreateDynamicObject(3461, 471.16876221, -1079.63684082, 1599.46960449, 0.00000000, 0.00000000, 0.00000000);
  5450.     CreateDynamicObject(3461, 471.26428223, -1079.97290039, 1599.34448242, 0.00000000, 0.00000000, 0.00000000);
  5451.     CreateDynamicObject(3461, 471.37402344, -1080.35742188, 1599.16931152, 0.00000000, 0.00000000, 0.00000000);
  5452.     CreateDynamicObject(3461, 471.43572998, -1080.57312012, 1599.19433594, 0.00000000, 0.00000000, 0.00000000);
  5453.     CreateDynamicObject(3461, 471.55255127, -1080.98059082, 1599.04418945, 0.00000000, 0.00000000, 0.00000000);
  5454.     CreateDynamicObject(3461, 471.94354248, -1081.44091797, 1598.84399414, 0.00000000, 0.00000000, 0.00000000);
  5455.     CreateDynamicObject(3461, 471.88769531, -1081.92944336, 1598.59375000, 0.00000000, 0.00000000, 0.00000000);
  5456.     CreateDynamicObject(3461, 472.00494385, -1082.46923828, 1598.39331055, 0.00000000, 0.00000000, 0.00000000);
  5457.     CreateDynamicObject(3461, 472.09967041, -1082.93737793, 1598.29321289, 0.00000000, 0.00000000, 0.00000000);
  5458.     CreateDynamicObject(3461, 472.24957275, -1083.41406250, 1598.16809082, 0.00000000, 0.00000000, 0.00000000);
  5459.     CreateDynamicObject(3461, 472.33486938, -1084.07202148, 1597.86779785, 0.00000000, 0.00000000, 0.00000000);
  5460.     CreateDynamicObject(3461, 472.40466309, -1084.67224121, 1597.69262695, 0.00000000, 0.00000000, 0.00000000);
  5461.     CreateDynamicObject(3461, 472.40798950, -1085.21154785, 1597.56750488, 0.00000000, 0.00000000, 0.00000000);
  5462.     CreateDynamicObject(3461, 472.56884766, -1085.66003418, 1597.49243164, 0.00000000, 0.00000000, 0.00000000);
  5463.     CreateDynamicObject(3461, 472.60278320, -1086.21752930, 1597.26721191, 0.00000000, 0.00000000, 0.00000000);
  5464.     CreateDynamicObject(3461, 472.78198242, -1086.94555664, 1597.14208984, 0.00000000, 0.00000000, 0.00000000);
  5465.     CreateDynamicObject(3461, 473.07009888, -1087.49206543, 1597.14208984, 0.00000000, 0.00000000, 0.00000000);
  5466.     CreateDynamicObject(3461, 472.98864746, -1088.00061035, 1597.06701660, 0.00000000, 0.00000000, 0.00000000);
  5467.     CreateDynamicObject(3461, 473.17407227, -1088.64990234, 1597.06701660, 0.00000000, 0.00000000, 0.00000000);
  5468.     CreateDynamicObject(3461, 473.22021484, -1089.25634766, 1597.06701660, 0.00000000, 0.00000000, 0.00000000);
  5469.     CreateDynamicObject(3461, 473.38720703, -1089.93603516, 1596.91687012, 0.00000000, 0.00000000, 0.00000000);
  5470.     CreateDynamicObject(3461, 473.48168945, -1090.53051758, 1596.91687012, 0.00000000, 0.00000000, 0.00000000);
  5471.     CreateDynamicObject(3461, 473.62426758, -1091.31958008, 1596.91687012, 0.00000000, 0.00000000, 0.00000000);
  5472.     CreateDynamicObject(3461, 473.74926758, -1091.93261719, 1596.91687012, 0.00000000, 0.00000000, 0.00000000);
  5473.     CreateDynamicObject(3461, 473.74047852, -1092.63037109, 1596.84179688, 0.00000000, 0.00000000, 0.00000000);
  5474.     CreateDynamicObject(3461, 473.88977051, -1093.23718262, 1596.86682129, 0.00000000, 0.00000000, 0.00000000);
  5475.     CreateDynamicObject(3461, 473.84899902, -1093.66320801, 1596.86682129, 0.00000000, 0.00000000, 0.00000000);
  5476.     CreateDynamicObject(3461, 473.93872070, -1094.38378906, 1596.94189453, 0.00000000, 0.00000000, 0.00000000);
  5477.     CreateDynamicObject(3461, 474.17300415, -1095.08801270, 1596.94189453, 0.00000000, 0.00000000, 0.00000000);
  5478.     CreateDynamicObject(3461, 474.15011597, -1095.71228027, 1596.94189453, 0.00000000, 0.00000000, 0.00000000);
  5479.     CreateDynamicObject(3461, 474.26358032, -1096.28649902, 1597.06701660, 0.00000000, 0.00000000, 0.00000000);
  5480.     CreateDynamicObject(3461, 474.64788818, -1096.67810059, 1597.09204102, 0.00000000, 0.00000000, 0.00000000);
  5481.     CreateDynamicObject(3461, 474.24862671, -1096.83190918, 1597.21716309, 0.00000000, 0.00000000, 0.00000000);
  5482.     CreateDynamicObject(3461, 474.39892578, -1097.41113281, 1597.21716309, 0.00000000, 0.00000000, 0.00000000);
  5483.     CreateDynamicObject(3461, 474.67660522, -1097.98425293, 1597.26721191, 0.00000000, 0.00000000, 0.00000000);
  5484.     CreateDynamicObject(3461, 474.71652222, -1098.43261719, 1597.29223633, 0.00000000, 0.00000000, 0.00000000);
  5485.     CreateDynamicObject(3461, 474.91946411, -1099.11303711, 1597.54248047, 0.00000000, 0.00000000, 0.00000000);
  5486.     CreateDynamicObject(3461, 474.98422241, -1099.68225098, 1597.79272461, 0.00000000, 0.00000000, 0.00000000);
  5487.     CreateDynamicObject(3461, 475.02880859, -1100.07812500, 1597.94287109, 0.00000000, 0.00000000, 0.00000000);
  5488.     CreateDynamicObject(3461, 475.11062622, -1100.79675293, 1598.09301758, 0.00000000, 0.00000000, 0.00000000);
  5489.     CreateDynamicObject(3461, 475.17846680, -1101.39062500, 1598.24316406, 0.00000000, 0.00000000, 0.00000000);
  5490.     CreateDynamicObject(3461, 475.22869873, -1101.83911133, 1598.39331055, 0.00000000, 0.00000000, 0.00000000);
  5491.     CreateDynamicObject(3461, 475.41302490, -1102.57104492, 1598.69360352, 0.00000000, 0.00000000, 0.00000000);
  5492.     CreateDynamicObject(3461, 475.63211060, -1103.17297363, 1598.94384766, 0.00000000, 0.00000000, 0.00000000);
  5493.     CreateDynamicObject(3461, 475.70278931, -1103.79235840, 1599.19409180, 0.00000000, 0.00000000, 0.00000000);
  5494.     CreateDynamicObject(3461, 475.76742554, -1104.36193848, 1599.36926270, 0.00000000, 0.00000000, 0.00000000);
  5495.     CreateDynamicObject(3461, 475.62686157, -1104.90881348, 1599.56945801, 0.00000000, 0.00000000, 0.00000000);
  5496.     CreateDynamicObject(3461, 475.71252441, -1105.41113281, 1599.71960449, 0.00000000, 0.00000000, 0.00000000);
  5497.     CreateDynamicObject(3461, 475.72616577, -1105.81213379, 1599.84472656, 0.00000000, 0.00000000, 0.00000000);
  5498.     CreateDynamicObject(3461, 475.86004639, -1106.09167480, 1599.91979980, 0.00000000, 0.00000000, 0.00000000);
  5499.     CreateDynamicObject(3461, 476.12683105, -1106.31640625, 1599.99487305, 0.00000000, 0.00000000, 0.00000000);
  5500.     CreateDynamicObject(3461, 476.15423584, -1106.86279297, 1600.42028809, 0.00000000, 0.00000000, 0.00000000);
  5501.     CreateDynamicObject(3461, 476.13314819, -1107.46582031, 1600.72058105, 0.00000000, 0.00000000, 0.00000000);
  5502.     CreateDynamicObject(3461, 476.49768066, -1108.42675781, 1601.69653320, 0.00000000, 0.00000000, 0.00000000);
  5503.     CreateDynamicObject(3461, 476.46289062, -1107.81005859, 1601.29614258, 0.00000000, 0.00000000, 0.00000000);
  5504.     CreateDynamicObject(17310, 606.00622559, -1495.93054199, 1373.97680664, 353.41030884, 178.39239502, 168.35180664);
  5505.     CreateDynamicObject(17310, 601.86791992, -1517.23974609, 1370.57592773, 353.40270996, 178.38500977, 168.34899902);
  5506.     CreateDynamicObject(17310, 599.97912598, -1526.69970703, 1369.44982910, 353.40270996, 178.38500977, 168.34899902);
  5507.     CreateDynamicObject(17310, 597.84020996, -1536.84228516, 1368.54895020, 356.15161133, 178.39208984, 168.42663574);
  5508.     CreateDynamicObject(17310, 597.23120117, -1539.87915039, 1368.79699707, 0.89743042, 178.39392090, 168.55920410);
  5509.     CreateDynamicObject(17310, 596.46539307, -1543.02050781, 1369.37255859, 6.89300537, 178.37902832, 168.72717285);
  5510.     CreateDynamicObject(17310, 595.96881104, -1543.92407227, 1369.84802246, 11.88641357, 178.35040283, 168.86730957);
  5511.     CreateDynamicObject(17310, 595.96166992, -1545.27734375, 1370.72387695, 17.37936401, 178.30456543, 169.53137207);
  5512.     CreateDynamicObject(17310, 595.65081787, -1545.80395508, 1371.29943848, 22.37261963, 178.24822998, 169.68994141);
  5513.     CreateDynamicObject(17310, 595.36401367, -1546.91552734, 1372.55065918, 30.11428833, 178.12664795, 169.96246338);
  5514.     CreateDynamicObject(17310, 595.19519043, -1547.56762695, 1373.20129395, 33.36169434, 178.05426025, 170.08599854);
  5515.     CreateDynamicObject(17310, 595.12585449, -1547.83325195, 1373.95202637, 38.60675049, 177.91564941, 170.31317139);
  5516.     CreateDynamicObject(17310, 594.84484863, -1548.92065430, 1374.97802734, 45.35092163, 177.67877197, 170.65911865);
  5517.     CreateDynamicObject(17310, 594.58325195, -1549.93505859, 1376.32934570, 50.59124756, 177.42742920, 170.99090576);
  5518.     CreateDynamicObject(17310, 594.10974121, -1552.88757324, 1380.35510254, 56.32986450, 177.04931641, 171.45117188);
  5519.     CreateDynamicObject(17310, 593.92346191, -1554.41088867, 1383.60510254, 63.31542969, 176.35034180, 172.24884033);
  5520.     CreateDynamicObject(17310, 593.85437012, -1554.82934570, 1385.05651855, 69.54791260, 175.30291748, 173.38110352);
  5521.     CreateDynamicObject(17310, 593.78906250, -1555.22363281, 1386.85827637, 75.76358032, 173.30981445, 175.46044922);
  5522.     CreateDynamicObject(17310, 593.70849609, -1555.71679688, 1389.08544922, 82.91290283, 166.56988525, 182.30143738);
  5523.     CreateDynamicObject(17310, 593.67578125, -1555.91406250, 1390.76208496, 85.58322144, 21.85968018, 327.16354370);
  5524.     CreateDynamicObject(17310, 593.71606445, -1555.66748047, 1393.43969727, 79.26925659, 8.86877441, 340.24407959);
  5525.     CreateDynamicObject(17310, 593.78027344, -1555.27246094, 1395.24145508, 69.32904053, 4.66418457, 344.58917236);
  5526.     CreateDynamicObject(17310, 594.05761719, -1553.69433594, 1399.39331055, 63.33929443, 3.66833496, 345.67147827);
  5527.     CreateDynamicObject(17310, 594.45465088, -1552.16662598, 1403.14331055, 52.60229492, 2.70639038, 346.79290771);
  5528.     CreateDynamicObject(17310, 595.64849854, -1546.21752930, 1409.79345703, 38.60900879, 2.10052490, 347.62542725);
  5529.     CreateDynamicObject(17310, 596.12249756, -1542.42248535, 1412.71887207, 31.11053467, 1.91519165, 347.94372559);
  5530.     CreateDynamicObject(17310, 596.72229004, -1538.74780273, 1414.72082520, 19.61355591, 1.73748779, 348.34701538);
  5531.     CreateDynamicObject(17310, 597.76513672, -1532.36047363, 1415.72180176, 4.36712646, 1.63989258, 348.80133057);
  5532.     CreateDynamicObject(17310, 598.78308105, -1526.14318848, 1416.09716797, 352.62185669, 1.64584351, 349.13552856);
  5533.     CreateDynamicObject(17310, 599.85595703, -1521.15917969, 1414.97253418, 340.87219238, 1.72406006, 349.48849487);
  5534.     CreateDynamicObject(17310, 600.47180176, -1518.47900391, 1413.72375488, 330.12252808, 1.87341309, 349.85589600);
  5535.     CreateDynamicObject(17310, 600.93670654, -1513.32373047, 1410.82458496, 316.12609863, 2.25320435, 350.48266602);
  5536.     CreateDynamicObject(17310, 601.14929199, -1507.85168457, 1404.82458496, 302.13513184, 3.05261230, 351.50445557);
  5537.     CreateDynamicObject(17310, 601.24755859, -1505.30297852, 1400.32458496, 292.15490723, 4.30221558, 352.90539551);
  5538.     CreateDynamicObject(17310, 601.28588867, -1504.30371094, 1397.12390137, 284.18853760, 6.62567139, 355.34344482);
  5539.     CreateDynamicObject(17310, 601.32672119, -1503.23107910, 1391.62365723, 274.40087891, 21.61605835, 10.47543335);
  5540.     CreateDynamicObject(17310, 611.56787109, -1467.23132324, 1386.55383301, 334.91821289, 178.23669434, 167.78869629);
  5541.     CreateDynamicObject(17310, 609.46582031, -1476.80346680, 1381.92797852, 334.91821289, 178.23669434, 167.78869629);
  5542.     CreateDynamicObject(17310, 607.83093262, -1486.91137695, 1376.87792969, 334.91821289, 178.23669434, 167.78869629);
  5543.     CreateDynamicObject(17310, 601.64880371, -1501.56201172, 1367.00317383, 274.23004150, 157.47119141, 146.43865967);
  5544.     CreateDynamicObject(17310, 600.91357422, -1502.54565430, 1356.50317383, 278.80682373, 169.36181641, 158.39880371);
  5545.     CreateDynamicObject(17310, 600.49932861, -1505.58801270, 1346.52844238, 294.70629883, 176.12231445, 165.38940430);
  5546.     CreateDynamicObject(17310, 599.59899902, -1511.26989746, 1336.75488281, 306.68371582, 177.28808594, 166.73706055);
  5547.     CreateDynamicObject(17310, 598.05035400, -1519.52575684, 1329.93029785, 332.66442871, 178.17541504, 168.07275391);
  5548.     CreateDynamicObject(17310, 595.52661133, -1528.94213867, 1326.25512695, 346.65405273, 178.33001709, 168.52355957);
  5549.     CreateDynamicObject(17310, 593.63842773, -1538.84960938, 1324.60546875, 356.89736938, 178.36749268, 168.81774902);
  5550.     CreateDynamicObject(17310, 591.45825195, -1550.00048828, 1324.48034668, 2.14422607, 178.36431885, 168.96575928);
  5551.     CreateDynamicObject(17310, 589.30163574, -1561.05407715, 1325.60644531, 9.63922119, 178.34075928, 169.18096924);
  5552.     CreateDynamicObject(3385, 614.25909424, -1506.53710938, 1372.76354980, 0.00000000, 0.00000000, 0.00000000);
  5553.     CreateDynamicObject(3385, 608.89434814, -1503.66027832, 1372.76354980, 0.00000000, 0.00000000, 0.00000000);
  5554.     CreateDynamicObject(3385, 602.42382812, -1501.36743164, 1372.76354980, 0.00000000, 0.00000000, 0.00000000);
  5555.     CreateDynamicObject(3385, 594.73107910, -1500.39941406, 1373.26354980, 0.00000000, 0.00000000, 0.00000000);
  5556.     CreateDynamicObject(3385, 587.21752930, -1501.48559570, 1373.51354980, 0.00000000, 0.00000000, 0.00000000);
  5557.     CreateDynamicObject(3461, 611.40405273, -1513.92895508, 1369.72106934, 298.00000000, 0.00000000, 346.00000000);
  5558.     CreateDynamicObject(3461, 609.67510986, -1513.65270996, 1369.72106934, 297.99865723, 0.00000000, 345.99792480);
  5559.     CreateDynamicObject(3461, 607.45281982, -1513.29748535, 1369.72106934, 297.99865723, 0.00000000, 345.99792480);
  5560.     CreateDynamicObject(3461, 605.01898193, -1512.68066406, 1369.72106934, 297.99865723, 0.00000000, 345.99792480);
  5561.     CreateDynamicObject(3461, 602.69799805, -1512.31030273, 1369.72106934, 297.99865723, 0.00000000, 345.99792480);
  5562.     CreateDynamicObject(3461, 599.51184082, -1511.64941406, 1369.72106934, 297.99865723, 0.00000000, 345.99792480);
  5563.     CreateDynamicObject(3461, 596.21942139, -1511.02258301, 1369.72106934, 297.99865723, 0.00000000, 345.99792480);
  5564.     CreateDynamicObject(3461, 597.70007324, -1511.25903320, 1369.72106934, 297.99865723, 0.00000000, 345.99792480);
  5565.     CreateDynamicObject(3461, 601.11993408, -1512.03271484, 1369.72106934, 297.99865723, 0.00000000, 345.99792480);
  5566.     CreateDynamicObject(3461, 604.02484131, -1512.54724121, 1369.72106934, 297.99865723, 0.00000000, 345.99792480);
  5567.     CreateDynamicObject(3461, 606.34100342, -1513.09277344, 1369.72106934, 297.99865723, 0.00000000, 345.99792480);
  5568.     CreateDynamicObject(3461, 608.60388184, -1513.50439453, 1369.72106934, 297.99865723, 0.00000000, 345.99792480);
  5569.     CreateDynamicObject(3461, 610.64465332, -1513.88037109, 1369.72106934, 297.99865723, 0.00000000, 345.99792480);
  5570.     CreateDynamicObject(3461, 595.07086182, -1510.88659668, 1369.72106934, 297.99865723, 0.00000000, 345.99792480);
  5571.     CreateDynamicObject(17310, 587.38903809, -1571.45715332, 1327.90795898, 15.63244629, 178.29595947, 169.35913086);
  5572.     CreateDynamicObject(17310, 576.68951416, -1619.40637207, 1300.31860352, 17.62713623, 178.27374268, 169.41680908);
  5573.     CreateDynamicObject(17310, 574.92596436, -1629.00500488, 1303.42041016, 17.62207031, 178.26965332, 169.41467285);
  5574.     CreateDynamicObject(17310, 573.01037598, -1639.79479980, 1306.84606934, 15.62298584, 178.28759766, 169.35198975);
  5575.     CreateDynamicObject(17310, 571.14324951, -1650.36608887, 1308.79650879, 6.12664795, 178.33996582, 169.06420898);
  5576.     CreateDynamicObject(17310, 569.06652832, -1661.50366211, 1309.32202148, 359.37771606, 178.34497070, 168.86749268);
  5577.     CreateDynamicObject(17310, 567.05340576, -1672.24633789, 1308.24597168, 350.12771606, 178.31628418, 168.59472656);
  5578.     CreateDynamicObject(17310, 565.36267090, -1682.64099121, 1305.44616699, 342.12686157, 178.25433350, 168.34411621);
  5579.     CreateDynamicObject(17310, 563.38690186, -1692.95458984, 1301.29431152, 334.87878418, 178.16375732, 168.10009766);
  5580.     CreateDynamicObject(17310, 561.57995605, -1701.90673828, 1296.99426270, 334.87426758, 178.15979004, 168.09631348);
  5581.     CreateDynamicObject(17310, 559.66711426, -1711.37622070, 1292.44445801, 334.87426758, 178.15979004, 168.09631348);
  5582.     CreateDynamicObject(17310, 557.98352051, -1720.17944336, 1288.21923828, 334.87426758, 178.15979004, 168.09631348);
  5583.     CreateDynamicObject(17310, 556.13946533, -1729.73254395, 1284.14440918, 340.87130737, 178.23657227, 168.29986572);
  5584.     CreateDynamicObject(17310, 554.22015381, -1739.33276367, 1282.59289551, 357.85977173, 178.32775879, 168.81695557);
  5585.     CreateDynamicObject(3515, 564.88720703, -1747.03710938, 1281.12500000, 0.00000000, 0.00000000, 0.00000000);
  5586.     CreateDynamicObject(3515, 561.58398438, -1746.53784180, 1281.12500000, 0.00000000, 0.00000000, 0.00000000);
  5587.     CreateDynamicObject(3515, 560.19708252, -1746.49487305, 1281.12500000, 0.00000000, 0.00000000, 0.00000000);
  5588.     CreateDynamicObject(3515, 558.51538086, -1746.22851562, 1281.12500000, 0.00000000, 0.00000000, 0.00000000);
  5589.     CreateDynamicObject(3515, 556.38879395, -1745.89257812, 1281.12500000, 0.00000000, 0.00000000, 0.00000000);
  5590.     CreateDynamicObject(3515, 554.28753662, -1745.56054688, 1281.12500000, 0.00000000, 0.00000000, 0.00000000);
  5591.     CreateDynamicObject(3515, 552.01293945, -1745.20117188, 1281.12500000, 0.00000000, 0.00000000, 0.00000000);
  5592.     CreateDynamicObject(3515, 549.18353271, -1744.75146484, 1281.12500000, 0.00000000, 0.00000000, 0.00000000);
  5593.     CreateDynamicObject(3515, 546.83428955, -1744.37988281, 1281.12500000, 0.00000000, 0.00000000, 0.00000000);
  5594.     CreateDynamicObject(3515, 544.96313477, -1744.03369141, 1281.12500000, 0.00000000, 0.00000000, 0.00000000);
  5595.     CreateDynamicObject(3268, 34.54004669, -895.49743652, 1761.10998535, 0.00000000, 0.00000000, 90.00000000);
  5596.  
  5597. //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  5598. // The Old Temple By William
  5599. //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  5600.     CreateDynamicObject(1316, -2272.8845214844, -1609.3466796875, 474.68838500977, 0, 0, 0);
  5601.     CreateDynamicObject(9078, -2278.0256347656, -1590.3453369141, 482.77404785156, 0, 0, 228);
  5602.     CreateDynamicObject(9078, -2235.5803222656, -1576.4450683594, 480.59844970703, 0, 0, 224);
  5603.     //CreateDynamicObject(8881, -2360.5717773438, -1618.7182617188, 520.70770263672, 0, 0, 0);----------
  5604.     //CreateDynamicObject(8882, -2364.0087890625, -1680.4760742188, 509.01644897461, 0, 0, 144); Annoying Objects
  5605.     CreateDynamicObject(9039, -2322.3469238281, -1573.3486328125, 491.50329589844, 0, 0, 122);
  5606.     //CreateDynamicObject(8881, -2371.6879882813, -1618.7956542969, 546.29986572266, 0, 0, 0);----------
  5607.     //CreateDynamicObject(8882, -2361.3461914063, -1676.0526123047, 544.72619628906, 0, 0, 144);----------
  5608.     CreateDynamicObject(1632, -2297.71, -1535.75, 491.42, 0.00, 0.00, 304.15);
  5609.     CreateDynamicObject(1632, -2290.58, -1568.12, 491.42, 0.00, 0.00, 297.57);
  5610.     CreateDynamicObject(1632, -2319.87, -1577.39, 491.42, 0.00, 0.00, 25.31);
  5611.     CreateDynamicObject(1632, -2320.67, -1563.70, 495.50, 0.00, 0.00, 282.53);
  5612.     CreateDynamicObject(1632, -2298.28, -1556.04, 501.50, 0.00, 0.00, 297.26);
  5613. // Other FreeRoam Objects
  5614.     CreateDynamicObject(11111, 1426.8864, -2497.1648, 23.3797, 315.3093, 0.0000, 269.7591);
  5615.     CreateDynamicObject(11111, 1384.8903, -2496.9875, 66.1774, 313.5904, 0.0000, 269.7591);
  5616.     CreateDynamicObject(11111, 1343.8188, -2496.7952, 109.3410, 313.5904, 0.0000, 269.7591);
  5617.     CreateDynamicObject(11111, 1303.0612, -2496.6526, 152.1940, 313.5904, 0.0000, 269.7591);
  5618.     CreateDynamicObject(11111, 1252.4650, -2495.5837, 172.1331, 3.4377, 0.0000, 268.0403);
  5619.     CreateDynamicObject(1632, 1426.3339, -2497.2019, 25.2624, 315.3093, 0.8594, 271.4781);
  5620.     CreateDynamicObject(1632, 1434.0632, -2497.0234, 23.7869, 335.9358, 0.8594, 271.4781);
  5621.     CreateDynamicObject(1632, 1442.2400, -2496.9316, 25.5798, 1.7189, 1.7189, 271.4781);
  5622.     CreateDynamicObject(1632, 1447.8456, -2496.7908, 30.2580, 30.0803, 0.0000, 271.4781);
  5623.     CreateDynamicObject(4023, 1496.6951, -2611.7095, 24.2781, 0.0000, 0.0000, 0.0000);
  5624.     CreateDynamicObject(1632, 1521.6614, -2624.2476, 15.1470, 19.7670, 0.0000, 179.5182);
  5625.     CreateDynamicObject(1632, 1521.5396, -2627.9275, 20.5587, 42.9718, 0.0000, 179.5182);
  5626.     CreateDynamicObject(1633, 1521.5065, -2629.0671, 27.4390, 69.6144, 0.0000, 181.2370);
  5627.     CreateDynamicObject(1633, 1521.4144, -2628.7585, 33.6472, 85.0842, 4.2972, 181.2370);
  5628.     CreateDynamicObject(1696, 1492.8369, -2597.0437, 35.9572, 0.0000, 0.0000, 0.0000);
  5629.     CreateDynamicObject(1696, 1498.2075, -2597.0518, 35.9572, 0.0000, 0.0000, 0.0000);
  5630.     CreateDynamicObject(13590, 1780.0720, -2520.6892, 13.8227, 0.0000, 0.0000, 93.5746);
  5631.     CreateDynamicObject(12956, 1729.3098, -2483.9460, 15.9329, 0.0000, 0.0000, 0.0000);
  5632.     CreateDynamicObject(3287, 2045.6914, -2596.6194, 17.2359, 0.0000, 0.0000, 0.0000);
  5633.     CreateDynamicObject(3287, 2051.9907, -2596.5471, 17.0911, 0.0000, 0.0000, 0.0000);
  5634.     CreateDynamicObject(6928, 1976.7775, -2634.5837, 14.4132, 0.0000, 0.0000, 0.0000);
  5635.     CreateDynamicObject(5126, 2124.8418, -2549.4048, 27.6712, 0.0000, 0.0000, 179.6225);
  5636.     CreateDynamicObject(13593, 2034.4865, -2599.0085, 13.5647, 14.6104, 0.0000, 269.7591);
  5637.     CreateDynamicObject(3426, 1629.6284, -2445.1775, 13.2959, 0.0000, 0.0000, 182.9559);
  5638.     CreateDynamicObject(1632, 1656.1104, -2543.0635, 18.3440, 24.9237, 0.0000, 90.2409);
  5639.     CreateDynamicObject(16776, 1481.3427, -2601.0891, 36.7008, 0.0000, 0.8594, 52.3215);
  5640.     CreateDynamicObject(13593, 2061.3398, -2597.9016, 13.4081, 10.3132, 0.0000, 89.2777);
  5641.     CreateDynamicObject(1632, 1878.9061, -2543.0371, 18.6032, 34.3775, 0.0000, 271.4780);
  5642.     CreateDynamicObject(1632, 1888.6827, -2543.1458, 18.7771, 34.3775, 0.0000, 92.7152);
  5643.     CreateDynamicObject(13592, 1409.4922, -2593.0117, 21.6425, 274.0564, 0.0000, 354.8434);
  5644.     CreateDynamicObject(13592, 1408.3781, -2593.4358, 28.7675, 274.0564, 0.0000, 354.8434);
  5645.     CreateDynamicObject(13592, 1407.3538, -2593.8059, 35.3425, 274.0564, 0.0000, 354.8434);
  5646.     CreateDynamicObject(13592, 1406.2087, -2594.2056, 42.5964, 274.0564, 0.0000, 354.8434);
  5647.     CreateDynamicObject(13592, 1405.1012, -2594.6135, 49.8590, 274.0564, 0.0000, 354.8434);
  5648.     CreateDynamicObject(13592, 1403.9801, -2595.0313, 57.1115, 274.0564, 0.0000, 354.8434);
  5649.     CreateDynamicObject(1655, 1394.8033, -2603.2500, 66.8318, 358.2811, 85.9437, 84.2248);
  5650.     CreateDynamicObject(9241, 1377.6155, -2593.7058, 61.1308, 0.0000, 0.0000, 0.0000);
  5651.     CreateDynamicObject(1632, 1415.9493, -2601.7278, 14.1970, 10.3132, 29.2208, 127.1967);
  5652.     CreateDynamicObject(18450, 1827.5482, -2381.7698, 24.2228, 0.8594, 18.0482, 290.3857);
  5653.     CreateDynamicObject(18450, 1801.2488, -2312.2051, 48.4443, 0.8594, 18.0482, 290.3857);
  5654.     CreateDynamicObject(8420, 1754.5964, -2267.7273, 61.2594, 0.0000, 0.0000, 110.0078);
  5655.     CreateDynamicObject(1655, 1752.6357, -2308.7371, 63.1154, 11.1727, 0.0000, 171.7832);
  5656.     CreateDynamicObject(3749, 1786.8469, -2274.8413, 66.7194, 0.0000, 0.0000, 19.7670);
  5657.     CreateDynamicObject(17565, 1686.7581, -2594.6494, 15.0556, 0.0000, 0.0000, 269.7591);
  5658.     CreateDynamicObject(13640, 1765.0620, -2235.1028, 61.9312, 0.0000, 0.0000, 21.4859);
  5659.     CreateDynamicObject(13640, 1744.0219, -2243.5769, 62.2312, 0.0000, 0.0000, 21.4859);
  5660.     CreateDynamicObject(8420, 1698.6826, -2288.0735, 61.0652, 0.0000, 0.0000, 289.5261);
  5661.     CreateDynamicObject(13647, 1698.9702, -2285.4363, 61.0378, 0.0000, 0.0000, 20.6265);
  5662.     CreateDynamicObject(13648, 1735.0952, -2272.0552, 61.0319, 0.0000, 0.0000, 110.0079);
  5663.     CreateDynamicObject(16304, 1661.4893, -2274.0464, 66.0802, 0.0000, 0.0000, 0.0000);
  5664.     CreateDynamicObject(13638, 1711.5342, -2316.4524, 63.5642, 0.0000, 0.0000, 109.1485);
  5665.     CreateDynamicObject(13636, 1706.5358, -2254.1160, 63.3222, 0.0000, 0.0000, 19.0114);
  5666.     CreateDynamicObject(9241, 1377.7820, -2569.3269, 61.1427, 0.0000, 0.0000, 180.3776);
  5667.     CreateDynamicObject(11395, 1378.5243, -2556.5215, 69.8165, 0.0000, 0.0000, 0.0000);
  5668.     CreateDynamicObject(1632, 1648.7120, -2543.2063, 18.4282, 24.9237, 0.0000, 268.8997);
  5669.     CreateDynamicObject(982, 1366.7220, -2589.8557, 62.6425, 0.0000, 0.0000, 0.0000);
  5670.     CreateDynamicObject(982, 1366.7361, -2589.8643, 63.8174, 0.0000, 180.3775, 0.0000);
  5671.     CreateDynamicObject(1634, 2069.8381, -2669.7764, 13.4044, 0.0000, 0.0000, 333.3575);
  5672.     CreateDynamicObject(6873, 1480.5852, -2650.3755, -71.8370, 0.0000, 0.0000, 89.2774);
  5673.     CreateDynamicObject(1634, 1477.2397, -2622.6929, 36.9723, 14.6104, 0.0000, 104.8513);
  5674.     CreateDynamicObject(1634, 1472.5040, -2623.8879, 42.9320, 36.0963, 0.0000, 104.8513);
  5675.     CreateDynamicObject(1634, 1469.8650, -2624.4973, 50.5999, 54.1445, 0.0000, 104.8513);
  5676.     CreateDynamicObject(1633, 1469.9115, -2624.6479, 59.0704, 76.4899, 0.0000, 98.7312);
  5677.     CreateDynamicObject(4874, 1506.5398, -2647.9612, 71.3241, 0.0000, 0.0000, 179.5182);
  5678.     CreateDynamicObject(5822, 1455.6718, -2654.4487, 77.6688, 0.0000, 0.0000, 183.9195);
  5679.     CreateDynamicObject(5130, 1460.0166, -2636.4358, 66.6083, 0.0000, 0.0000, 41.2530);
  5680.     CreateDynamicObject(1632, 1500.5956, -2632.8254, 64.1694, 28.3614, 0.0000, 269.7591);
  5681.     CreateDynamicObject(13592, 1819.9015, -2574.5352, 22.0925, 0.0001, 1.7189, 99.6946);
  5682.     CreateDynamicObject(13592, 1813.1265, -2574.6609, 22.0675, 0.0001, 1.7189, 99.6946);
  5683.     CreateDynamicObject(13592, 1806.3298, -2574.7683, 22.0175, 0.0001, 1.7189, 99.6946);
  5684.     CreateDynamicObject(13592, 1799.5603, -2574.9287, 22.0175, 0.0001, 1.7189, 99.6946);
  5685.     CreateDynamicObject(13592, 1792.2646, -2575.0603, 21.9925, 0.0001, 1.7189, 99.6946);
  5686.     CreateDynamicObject(13592, 1784.8563, -2575.2151, 21.9425, 0.0001, 1.7189, 99.6946);
  5687.     CreateDynamicObject(1655, 1780.4288, -2570.0522, 14.3720, 10.3132, 0.0000, 3.4378);
  5688.     CreateDynamicObject(1634, 1402.6847, -2660.9553, 13.5250, 0.0000, 0.0000, 340.2330);
  5689.     CreateDynamicObject(1634, 1347.7880, -2551.6384, 13.4223, 0.0000, 0.0000, 271.4780);
  5690.     CreateDynamicObject(1655, 1994.1520, -2494.0068, 14.4642, 10.3132, 0.0000, 268.0403);
  5691.     CreateDynamicObject(1655, 2000.0996, -2494.2261, 20.5966, 35.2369, 0.0000, 268.0403);
  5692.     CreateDynamicObject(1655, 2003.6462, -2494.3943, 28.1032, 48.9879, 0.0000, 268.0403);
  5693.     CreateDynamicObject(1655, 2005.0548, -2494.4941, 35.5448, 63.5983, 0.0000, 268.0403);
  5694.     CreateDynamicObject(1655, 2004.6226, -2494.5181, 43.8596, 77.3492, 0.0000, 268.0403);
  5695.     CreateDynamicObject(1655, 2001.9056, -2494.4958, 51.1968, 97.1163, 0.0000, 268.0403);
  5696.     CreateDynamicObject(1655, 1996.2144, -2494.3252, 57.4748, 121.1805, 0.0000, 268.0403);
  5697.     CreateDynamicObject(1655, 1988.6832, -2493.8108, 61.1651, 140.9477, 0.8594, 265.4620);
  5698.     CreateDynamicObject(8391, 1395.7748, -2431.3250, 28.9601, 0.0000, 0.0000, 282.6506);
  5699.     CreateDynamicObject(1655, 1385.6543, -2424.4712, 14.3048, 8.5944, 0.0000, 90.2409);
  5700.     CreateDynamicObject(1655, 1379.8706, -2424.4619, 19.5930, 30.0803, 0.0000, 90.2409);
  5701.     CreateDynamicObject(1655, 1375.9878, -2424.4226, 25.9121, 41.2530, 0.0000, 90.2409);
  5702.     CreateDynamicObject(1655, 1373.5939, -2424.4739, 33.3081, 57.5822, 0.0000, 90.2409);
  5703.     CreateDynamicObject(1655, 1373.1646, -2424.4941, 41.6484, 71.3332, 0.0000, 90.2409);
  5704.     CreateDynamicObject(1655, 1369.6245, -2460.2290, 48.6771, 13.7509, 0.0000, 191.6545);
  5705.     CreateDynamicObject(1655, 1422.3533, -2402.3047, 48.7021, 13.7509, 0.0000, 282.7546);
  5706.     CreateDynamicObject(4726, 1463.3341, -2396.3433, 49.8039, 0.0000, 0.0000, 0.0000);
  5707.     CreateDynamicObject(4727, 1463.3159, -2396.3982, 50.1277, 0.0000, 0.0000, 0.0000);
  5708.     CreateDynamicObject(7979, 1473.2761, -2546.4255, 15.6338, 0.0000, 0.0000, 90.2409);
  5709.     CreateDynamicObject(10948, 1905.3707, -2250.6580, 62.3934, 0.0000, 0.0000, 89.2774);
  5710.     CreateDynamicObject(5001, 1947.1947, -2290.4810, 32.9187, 80.7871, 312.7310, 133.2128);
  5711.     CreateDynamicObject(1633, 1951.4948, -2272.3796, 13.0586, 354.8434, 358.2811, 357.4217);
  5712.     CreateDynamicObject(1632, 1890.5048, -2273.5845, 59.1998, 16.3293, 0.0000, 87.6625);
  5713.     CreateDynamicObject(1632, 1886.0028, -2273.4019, 65.1168, 42.1124, 0.0000, 87.6625);
  5714.     CreateDynamicObject(1632, 1884.5913, -2273.3604, 71.9893, 67.8955, 0.0000, 87.6625);
  5715.     CreateDynamicObject(1632, 1885.8025, -2273.2524, 79.7829, 85.9437, 0.0000, 94.5380);
  5716.     CreateDynamicObject(1632, 1911.1649, -2211.9255, 83.1748, 16.3293, 0.0000, 1.7189);
  5717.     CreateDynamicObject(1632, 1911.1115, -2207.3425, 89.1723, 42.1124, 0.0000, 1.7189);
  5718.     CreateDynamicObject(1632, 1911.1431, -2205.3062, 96.6625, 61.8794, 0.0000, 358.2811);
  5719.     CreateDynamicObject(1655, 1847.4841, -2245.5437, 105.7248, 0.0000, 0.0000, 104.7472);
  5720.     CreateDynamicObject(13638, 1704.0999, -2331.6973, 71.6820, 0.0000, 0.0000, 109.1485);
  5721.     CreateDynamicObject(13592, 1402.8209, -2595.4497, 64.3669, 274.0564, 0.0000, 354.8434);
  5722.     CreateDynamicObject(4113, 1377.5581, -2576.0313, 23.3505, 0.0000, 0.0000, 278.3535);
  5723.     CreateDynamicObject(1684, 1886.1834, -2195.4612, 103.2395, 0.0000, 0.0000, 269.7591);
  5724.     CreateDynamicObject(1684, 1886.1470, -2205.5059, 103.2395, 0.0000, 0.0000, 269.7591);
  5725.     CreateDynamicObject(1684, 1886.1008, -2215.5513, 103.2453, 0.0000, 0.0000, 269.7591);
  5726.     CreateDynamicObject(13638, 1688.6693, -2333.5049, 79.7685, 0.0000, 0.0000, 18.9077);
  5727.     CreateDynamicObject(13562, 2120.8804, -2549.0730, 44.2037, 0.0000, 0.0000, 0.0000);
  5728.     CreateDynamicObject(1632, 2062.5491, -2548.6404, 14.9220, 17.1887, 0.0000, 268.0403);
  5729.     CreateDynamicObject(7073, 1978.3165, -2627.2849, 51.8151, 0.0000, 0.0000, 85.9437);
  5730.     CreateDynamicObject(1632, 1977.2985, -2616.7556, 13.8470, 11.1727, 359.1406, 180.3777);
  5731.     CreateDynamicObject(1632, 1977.3795, -2622.0452, 20.5220, 43.8313, 359.1406, 180.3777);
  5732.     CreateDynamicObject(1633, 1977.4076, -2623.6675, 27.2699, 64.4577, 0.0000, 179.5182);
  5733.     CreateDynamicObject(1633, 1977.4138, -2624.4458, 34.5979, 71.3332, 0.0000, 179.5182);
  5734.     CreateDynamicObject(1633, 1977.2733, -2624.1338, 41.3472, 82.5059, 0.0000, 179.5182);
  5735.     CreateDynamicObject(13722, 2045.7214, -2638.5005, 21.9834, 0.0000, 0.0000, 180.3776);
  5736.     CreateDynamicObject(13831, 2045.7052, -2638.5134, 21.9632, 0.0000, 0.0000, 180.3776);
  5737.     CreateDynamicObject(3256, 2130.8538, -2513.3096, 13.1846, 0.0000, 0.0000, 0.0000);
  5738.     CreateDynamicObject(1267, 2139.7283, -2489.1035, 28.6116, 0.0000, 0.0000, 0.0000);
  5739.     CreateDynamicObject(6066, 2111.7190, -2493.4143, 15.0473, 0.0000, 0.0000, 184.7789);
  5740.     CreateDynamicObject(1655, 2105.7898, -2493.8894, 13.6892, 2.5783, 0.0000, 274.9158);
  5741.     CreateDynamicObject(6875, 2137.0735, -2400.5913, 6.7954, 0.0000, 0.0000, 0.0000);
  5742.     CreateDynamicObject(6066, 2091.9978, -2448.8511, 15.0473, 0.0000, 0.0000, 232.0480);
  5743.     CreateDynamicObject(1655, 2088.4063, -2453.4890, 13.7720, 2.5783, 0.0000, 322.1847);
  5744.     CreateDynamicObject(9237, 2095.3101, -2638.3826, 20.5323, 0.0000, 0.0000, 282.6507);
  5745.     CreateDynamicObject(1632, 1438.7162, -2633.6597, 84.2600, 3.4377, 0.0000, 54.9000);
  5746.     CreateDynamicObject(4005, 1560.7459, -2382.5532, 20.3501, 0.0000, 0.0000, 3.4377);
  5747.     CreateDynamicObject(6066, 1565.3146, -2435.8921, 14.9547, 0.0000, 0.0000, 275.0197);
  5748.     CreateDynamicObject(1655, 1565.6495, -2441.8306, 13.7048, 3.4377, 0.0000, 4.2972);
  5749.     CreateDynamicObject(6099, 1860.5532, -2657.6689, 21.0845, 0.0000, 0.0000, 0.0000);
  5750.     CreateDynamicObject(6066, 1860.4592, -2581.1760, 15.0223, 0.0000, 0.0000, 86.9069);
  5751.     CreateDynamicObject(1655, 1860.6936, -2575.0767, 13.7720, 2.5783, 0.0000, 176.0804);
  5752.     CreateDynamicObject(1655, 1860.3190, -2633.5332, 36.9818, 2.5783, 0.0000, 0.8594);
  5753.     CreateDynamicObject(1632, 1389.1747, -2556.1677, 63.2709, 4.2972, 0.0000, 330.7792);
  5754.     CreateDynamicObject(11111, 1458.4629, -2497.3127, 2.1547, 329.0603, 0.0000, 269.7591);
  5755.     CreateDynamicObject(1378, 2036.9343, -2373.8577, 36.6131, 0.0000, 0.0000, 312.7310);
  5756.     CreateDynamicObject(1632, 1983.8982, -2421.1467, 13.8470, 4.2972, 0.0000, 310.9085);
  5757.     CreateDynamicObject(1632, 1981.2323, -2418.0398, 13.8470, 4.2972, 0.0000, 310.9085);
  5758.     CreateDynamicObject(1655, 1985.9271, -2416.7034, 17.1400, 30.0803, 0.0000, 311.0121);
  5759.     CreateDynamicObject(1632, 2020.6383, -2389.0981, 44.2427, 23.2048, 0.0000, 310.9085);
  5760.     CreateDynamicObject(18449, 2520.9541, -1610.8210, 54.7345, 0.0000, 306.7150, 0.8594);
  5761.     CreateDynamicObject(18449, 2558.3713, -1610.6698, 114.3982, 0.0000, 298.1206, 0.0000);
  5762.     CreateDynamicObject(18449, 2595.8835, -1610.6539, 184.5256, 0.0000, 298.1206, 0.0000);
  5763.     CreateDynamicObject(18449, 2632.8396, -1610.6309, 253.7211, 0.0000, 298.1206, 0.0000);
  5764.     CreateDynamicObject(18449, 2670.2693, -1610.6257, 323.7372, 0.0000, 298.1206, 0.0000);
  5765.     CreateDynamicObject(18449, 2707.6824, -1610.6024, 393.6658, 0.0000, 298.1206, 0.0000);
  5766.     CreateDynamicObject(18449, 2744.4993, -1610.6088, 462.5435, 0.0000, 298.1206, 0.0000);
  5767.     CreateDynamicObject(18449, 2782.0684, -1610.5925, 532.8621, 0.0000, 298.1206, 0.0000);
  5768.     CreateDynamicObject(18449, 2819.6699, -1610.5679, 603.2286, 0.0000, 298.1206, 0.0000);
  5769.     CreateDynamicObject(18449, 2856.9753, -1610.5376, 673.0189, 0.0000, 298.1206, 0.0000);
  5770.     CreateDynamicObject(18449, 2894.5356, -1610.5482, 743.3477, 0.0000, 298.1206, 0.0000);
  5771.     CreateDynamicObject(18449, 2932.0188, -1610.6125, 813.4912, 0.0000, 298.1206, 0.0000);
  5772.     CreateDynamicObject(18449, 2979.2112, -1610.5981, 876.7773, 0.0000, 315.3093, 0.0000);
  5773.     CreateDynamicObject(18449, 3035.8696, -1610.5890, 932.8416, 0.0000, 315.3093, 0.0000);
  5774.     CreateDynamicObject(18449, 3091.9768, -1610.5883, 988.3503, 0.0000, 315.3093, 0.0000);
  5775.     CreateDynamicObject(18449, 3148.2869, -1610.5679, 1044.0637, 0.0000, 315.3093, 0.0000);
  5776.     CreateDynamicObject(18449, 3204.7615, -1610.5299, 1099.9456, 0.0000, 315.3093, 0.0000);
  5777.     CreateDynamicObject(18449, 3261.4958, -1610.5055, 1156.0834, 0.0000, 315.3093, 0.0000);
  5778.     CreateDynamicObject(18449, 3325.5532, -1610.4595, 1202.0547, 0.0000, 333.3575, 0.0000);
  5779.     CreateDynamicObject(18449, 3396.6646, -1610.4713, 1237.7325, 0.0000, 333.3575, 0.0000);
  5780.     CreateDynamicObject(18449, 3467.6904, -1610.5023, 1273.3676, 0.0000, 333.3575, 0.0000);
  5781.     CreateDynamicObject(18449, 3538.1736, -1610.5227, 1308.7449, 0.0000, 333.3575, 0.0000);
  5782.     CreateDynamicObject(18449, 3607.8508, -1610.5436, 1343.7198, 0.0000, 333.3575, 0.0000);
  5783.     CreateDynamicObject(18449, 3679.0918, -1610.5148, 1379.4767, 0.0000, 333.3575, 0.0000);
  5784.     CreateDynamicObject(18449, 3750.2859, -1610.4646, 1415.2097, 0.0000, 333.3575, 0.0000);
  5785.     CreateDynamicObject(18449, 3825.7336, -1610.4839, 1436.6946, 0.0000, 354.8434, 0.0000);
  5786.     CreateDynamicObject(4639, 3865.6023, -1601.0863, 1442.3084, 0.0000, 0.0000, 89.2774);
  5787.     CreateDynamicObject(3627, 3939.5134, -1607.8434, 1444.4513, 0.0000, 0.0000, 0.0000);
  5788.     CreateDynamicObject(18449, 2532.5139, -1610.6694, 71.6908, 0.0000, 317.8877, 1.7189);
  5789.     CreateDynamicObject(18449, 2526.8171, -1610.8329, 67.2572, 0.0000, 328.2009, 1.7189);
  5790.     CreateDynamicObject(18449, 2523.7686, -1610.9111, 65.1158, 0.0000, 342.8113, 1.7189);
  5791.     CreateDynamicObject(18449, 2513.1240, -1611.2356, 61.7643, 0.0000, 354.8434, 1.7189);
  5792.     CreateDynamicObject(18449, 2496.6313, -1611.7927, 61.3713, 0.0000, 4.2972, 1.7189);
  5793.     CreateDynamicObject(18449, 2495.8384, -1611.8748, 62.0968, 0.0000, 12.0321, 1.7189);
  5794.     CreateDynamicObject(18449, 2487.4050, -1612.0728, 65.9149, 0.0000, 22.3454, 1.7189);
  5795.     CreateDynamicObject(18449, 2502.7729, -1611.6041, 55.0266, 0.0000, 38.6747, 1.7189);
  5796.     CreateDynamicObject(8357, -1354.0648, -47.8366, 13.2906, 0.0000, 0.0000, 134.0722);
  5797.     CreateDynamicObject(8357, -1355.9480, -45.8624, 13.3021, 0.0000, 356.5623, 134.0722);
  5798.     CreateDynamicObject(8357, -1361.6316, -40.0481, 14.2471, 0.0000, 347.9679, 134.0722);
  5799.     CreateDynamicObject(8357, -1370.2949, -30.9405, 17.6684, 0.0000, 338.5141, 134.0722);
  5800.     CreateDynamicObject(8357, -1378.0183, -22.8472, 23.6642, 0.0000, 323.0442, 134.0722);
  5801.     CreateDynamicObject(8357, -1385.9910, -14.4542, 34.7132, 0.0000, 308.4338, 134.0722);
  5802.     CreateDynamicObject(8357, -1391.4053, -8.9477, 46.4125, 0.0000, 296.4017, 134.0722);
  5803.     CreateDynamicObject(8357, -1394.7899, -5.6382, 53.7364, 0.0000, 287.8074, 134.0722);
  5804.     CreateDynamicObject(8357, -1412.9927, 12.9504, 72.7641, 0.0000, 0.0000, 134.0722);
  5805.     CreateDynamicObject(8357, -1347.9955, -54.2254, 13.2943, 0.0000, 9.4538, 134.0722);
  5806.     CreateDynamicObject(8357, -1339.0677, -63.4124, 16.0851, 0.0000, 22.3454, 134.0722);
  5807.     CreateDynamicObject(8357, -1330.4059, -72.6219, 22.4829, 0.0000, 39.5341, 134.0722);
  5808.     CreateDynamicObject(8357, -1323.2266, -80.0912, 32.3496, 0.0000, 56.7228, 134.0722);
  5809.     CreateDynamicObject(8357, -1318.8126, -84.4930, 42.5178, 0.0000, 69.6143, 134.0722);
  5810.     CreateDynamicObject(8357, -1315.0927, -87.2354, 56.0738, 0.0000, 77.3492, 134.0722);
  5811.     CreateDynamicObject(8357, -1298.1511, -104.7011, 75.4835, 0.0000, 0.0000, 134.0722);
  5812.     CreateDynamicObject(8357, -1220.9902, -29.8547, -30.8877, 89.3814, 0.0000, 134.0722);
  5813.     CreateDynamicObject(8357, -1336.0188, 87.5196, -33.6073, 89.3814, 0.0000, 134.0722);
  5814.     CreateDynamicObject(8357, -1489.7053, -61.3451, -33.5838, 89.3814, 0.0000, 314.4499);
  5815.     CreateDynamicObject(8357, -1374.0624, -178.4997, -30.8844, 90.2408, 0.0000, 314.4499);
  5816.     CreateDynamicObject(8357, -1426.7369, 27.1358, 33.2178, 0.0000, 89.3814, 134.0722);
  5817.     CreateDynamicObject(8357, -1426.8370, 27.2725, 52.7771, 0.0000, 90.2409, 134.0722);
  5818.     CreateDynamicObject(8357, -1284.0177, -118.4902, 32.4178, 0.0000, 270.6186, 134.0722);
  5819.     CreateDynamicObject(8357, -1284.1558, -118.6878, 55.7334, 0.0000, 270.6186, 134.0722);
  5820.     CreateDynamicObject(6448, -1379.3080, -137.2861, 37.4403, 0.0000, 0.0000, 223.4537);
  5821.     CreateDynamicObject(9570, -1285.4780, -145.5307, 59.5346, 0.0000, 0.0000, 224.3131);
  5822.     CreateDynamicObject(1633, -1224.1101, -54.8009, 76.6432, 3.4377, 0.0000, 224.2089);
  5823.     CreateDynamicObject(1633, -1221.0846, -51.9579, 76.6682, 3.4377, 0.0000, 224.2089);
  5824.     CreateDynamicObject(1633, -1218.1294, -49.0821, 76.6682, 3.4377, 0.0000, 224.2089);
  5825.     CreateDynamicObject(1633, -1215.1968, -46.2346, 76.6682, 3.4377, 0.0000, 224.2089);
  5826.     CreateDynamicObject(6448, -1440.7117, -72.3283, 17.7853, 0.0000, 0.0000, 223.4537);
  5827.     CreateDynamicObject(978, -1368.8894, -211.9985, 44.4217, 0.0000, 0.0000, 314.5538);
  5828.     CreateDynamicObject(978, -1358.0934, -222.6052, 44.4256, 0.0000, 0.0000, 314.5538);
  5829.     CreateDynamicObject(978, -1343.9521, -223.9980, 44.4278, 0.0000, 0.0000, 43.9350);
  5830.     CreateDynamicObject(978, -1192.5769, -77.1683, 78.7342, 0.0000, 0.0000, 43.9350);
  5831.     CreateDynamicObject(978, -1192.9556, -66.2148, 78.7855, 0.0000, 0.0000, 134.1759);
  5832.     CreateDynamicObject(978, -1203.8396, -54.9212, 78.8056, 0.0000, 0.0000, 134.1759);
  5833.     CreateDynamicObject(978, -1393.7468, -159.4338, 38.7453, 0.0000, 15.4699, 132.3533);
  5834.     CreateDynamicObject(978, -1388.9188, -164.6283, 40.5928, 0.0000, 15.4699, 132.3533);
  5835.     CreateDynamicObject(978, -1483.3456, -100.5466, 14.0387, 0.0000, 0.0000, 46.4097);
  5836.     CreateDynamicObject(978, -1510.0142, -53.3154, 14.3871, 0.0000, 0.0000, 225.9279);
  5837.     CreateDynamicObject(978, -1492.9974, -110.8237, 13.9887, 0.0000, 0.0000, 46.4097);
  5838.     CreateDynamicObject(978, -1518.8693, -62.6429, 14.1152, 0.0000, 0.0000, 225.9279);
  5839.     CreateDynamicObject(978, -1527.8447, -71.4184, 13.9887, 0.0000, 0.0000, 225.9279);
  5840.     CreateDynamicObject(978, -1527.2260, -83.0951, 13.9887, 0.0000, 0.0000, 316.1688);
  5841.     CreateDynamicObject(978, -1517.5435, -92.8178, 13.9887, 0.0000, 0.0000, 316.1688);
  5842.     CreateDynamicObject(978, -1506.9059, -103.5542, 13.9887, 0.0000, 0.0000, 316.1688);
  5843.     CreateDynamicObject(987, -1314.2322, 64.7201, 13.1484, 0.0000, 0.0000, 136.5463);
  5844.     CreateDynamicObject(987, -1305.6039, 56.4539, 13.1484, 0.0000, 0.0000, 136.5463);
  5845.     CreateDynamicObject(987, -1296.9565, 48.1812, 13.1484, 0.0000, 0.0000, 136.5463);
  5846.     CreateDynamicObject(987, -1289.7554, 39.4214, 13.1484, 0.0000, 0.0000, 129.6709);
  5847.     CreateDynamicObject(987, -1235.2478, -16.0229, 13.1484, 0.0000, 0.0000, 136.5463);
  5848.     CreateDynamicObject(987, -1243.9325, -7.8096, 13.1484, 0.0000, 0.0000, 136.5463);
  5849.     CreateDynamicObject(987, -1252.5472, 0.3627, 13.1484, 0.0000, 0.0000, 136.5463);
  5850.     CreateDynamicObject(987, -1475.2087, -75.1436, 13.1484, 0.0000, 0.0000, 320.4659);
  5851.     CreateDynamicObject(987, -1466.0289, -82.7229, 13.1484, 0.0000, 0.0000, 317.8876);
  5852.     CreateDynamicObject(987, -1457.1256, -90.7134, 13.0984, 0.0000, 0.0000, 314.4499);
  5853.     CreateDynamicObject(987, -1459.5332, -117.2687, 13.1484, 0.0000, 0.0000, 312.7310);
  5854.     CreateDynamicObject(987, -1467.0046, -109.2454, 13.1484, 0.0000, 0.0000, 312.7310);
  5855.     CreateDynamicObject(978, -1470.5059, -105.7400, 13.9887, 0.0000, 0.0000, 134.9317);
  5856.     CreateDynamicObject(983, -1452.4246, -95.6131, 19.9833, 0.0000, 0.0000, 43.8313);
  5857.     CreateDynamicObject(987, -1395.9971, -155.8127, 24.4375, 0.0000, 0.0000, 312.7310);
  5858.     CreateDynamicObject(987, -1402.3563, -149.3762, 24.4375, 0.0000, 0.0000, 312.7310);
  5859.     CreateDynamicObject(987, -1439.1454, -113.1024, 14.3467, 0.0000, 0.0000, 133.1086);
  5860.     CreateDynamicObject(8210, -1441.8394, -148.6349, 13.4745, 0.0000, 0.0000, 291.2451);
  5861.     CreateDynamicObject(8210, -1393.8751, -173.5524, 14.4995, 0.0000, 0.0000, 27.5020);
  5862.     CreateDynamicObject(8229, -1425.0939, -123.5102, 15.1012, 0.0000, 0.0000, 320.4659);
  5863.     CreateDynamicObject(7304, -1314.0505, -102.1568, 78.3640, 0.0000, 0.0000, 313.5905);
  5864.     CreateDynamicObject(7304, -1404.1049, 4.1738, 75.6367, 0.0000, 0.0000, 134.0722);
  5865.     CreateDynamicObject(10236, -1502.0317, -52.1648, 34.5855, 0.0000, 0.0000, 42.1124);
  5866.     CreateDynamicObject(18449, 2666.0464, -1047.6980, 88.5490, 0.0000, 35.2369, 0.0000);
  5867.     CreateDynamicObject(18449, 2601.5168, -1047.6802, 134.1431, 0.0000, 35.2369, 0.0000);
  5868.     CreateDynamicObject(18449, 2536.9397, -1047.6687, 179.7558, 0.0000, 35.2369, 0.0000);
  5869.     CreateDynamicObject(5706, 2487.9390, -1048.3947, 199.2919, 0.0000, 0.0000, 0.0000);
  5870.     CreateDynamicObject(978, 2476.4600, -1036.1404, 203.9526, 0.0000, 0.0000, 180.4818);
  5871.     CreateDynamicObject(978, 2485.8035, -1036.0607, 203.9526, 0.0000, 0.0000, 180.4818);
  5872.     CreateDynamicObject(978, 2495.1648, -1035.9878, 203.9526, 0.0000, 0.0000, 180.4818);
  5873.     CreateDynamicObject(979, 2476.4116, -1057.2527, 203.9026, 0.0000, 0.0000, 0.0000);
  5874.     CreateDynamicObject(979, 2485.7744, -1057.1879, 203.9526, 0.0000, 0.0000, 0.0000);
  5875.     CreateDynamicObject(979, 2495.1445, -1057.1888, 203.9526, 0.0000, 0.0000, 0.0000);
  5876.     CreateDynamicObject(973, 2471.8684, -1041.4321, 203.9776, 0.0000, 0.0000, 268.8997);
  5877.     CreateDynamicObject(973, 2471.6921, -1052.0885, 203.9526, 0.0000, 0.0000, 268.8997);
  5878.     CreateDynamicObject(1633, 2698.1812, -1053.5363, 66.6198, 9.4538, 0.0000, 89.3814);
  5879.     CreateDynamicObject(1633, 2698.2202, -1049.8403, 66.6191, 9.4538, 0.0000, 89.3814);
  5880.     CreateDynamicObject(1633, 2698.2681, -1045.7015, 66.6160, 9.4538, 0.0000, 89.3814);
  5881.     CreateDynamicObject(1633, 2698.3206, -1041.5883, 66.6151, 9.4538, 0.0000, 89.3814);
  5882.     CreateDynamicObject(1238, 2504.0454, -1039.0441, 203.4306, 0.0000, 0.0000, 0.0000);
  5883.     CreateDynamicObject(1238, 2502.3574, -1037.5217, 203.4306, 0.0000, 0.0000, 0.0000);
  5884.     CreateDynamicObject(1238, 2500.5044, -1035.8566, 203.4306, 0.0000, 0.0000, 0.0000);
  5885.     CreateDynamicObject(1238, 2501.0479, -1056.9880, 203.4306, 0.0000, 0.0000, 0.0000);
  5886.     CreateDynamicObject(1238, 2503.1890, -1056.2058, 203.4306, 0.0000, 0.0000, 0.0000);
  5887.     CreateDynamicObject(1238, 2699.6738, -1056.6941, 66.3541, 0.0000, 0.0000, 0.0000);
  5888.     CreateDynamicObject(1238, 2699.8271, -1038.4393, 66.2980, 0.0000, 0.0000, 0.0000);
  5889.     CreateDynamicObject(1634, 2843.2813, -1054.2778, 23.2594, 359.1406, 0.0000, 269.7591);
  5890.     CreateDynamicObject(1634, 2843.3171, -1050.2399, 23.2629, 359.1406, 0.0000, 269.7591);
  5891.     CreateDynamicObject(1634, 2843.3357, -1046.1169, 23.2629, 359.1406, 0.0000, 269.7591);
  5892.     CreateDynamicObject(1634, 2850.8481, -1054.3088, 28.1955, 16.3293, 0.0000, 269.7591);
  5893.     CreateDynamicObject(1634, 2850.8650, -1050.1561, 28.1999, 16.3293, 0.0000, 269.7591);
  5894.     CreateDynamicObject(1634, 2850.8933, -1046.1285, 28.2123, 16.3293, 0.0000, 269.7591);
  5895.     CreateDynamicObject(1634, 2856.0720, -1054.3063, 34.5835, 34.3775, 0.0000, 269.7591);
  5896.     CreateDynamicObject(1634, 2856.0920, -1050.1571, 34.5919, 34.3775, 0.0000, 269.7591);
  5897.     CreateDynamicObject(1634, 2856.0940, -1046.1711, 34.5922, 34.3775, 0.0000, 269.7591);
  5898.     CreateDynamicObject(1634, 2828.8928, -1054.0713, 21.7551, 329.9197, 0.0000, 269.7591);
  5899.     CreateDynamicObject(1634, 2828.9177, -1049.9299, 21.7551, 329.9197, 0.0000, 269.7591);
  5900.     CreateDynamicObject(1634, 2828.9077, -1046.1074, 21.7552, 329.9197, 0.0000, 269.7591);
  5901.     CreateDynamicObject(1633, 2836.3914, -1054.2036, 22.1909, 345.3896, 0.0000, 270.7226);
  5902.     CreateDynamicObject(1633, 2836.1912, -1050.0728, 22.1909, 345.3896, 0.0000, 270.7226);
  5903.     CreateDynamicObject(1633, 2836.0220, -1045.9854, 22.1696, 345.3896, 0.0000, 270.7226);
  5904.     CreateDynamicObject(3458, 2918.1372, -1941.8362, 1.0555, 0.0000, 0.0000, 0.0000);
  5905.     CreateDynamicObject(3458, 2958.3713, -1941.8547, 1.0524, 0.0000, 0.0000, 0.0000);
  5906.     CreateDynamicObject(3458, 2977.3062, -1941.8579, 4.1024, 0.0000, 348.8273, 0.0000);
  5907.     CreateDynamicObject(3458, 2974.0471, -1941.7197, 5.0132, 0.0000, 335.9358, 0.0000);
  5908.     CreateDynamicObject(3458, 2975.5596, -1941.7877, 5.8841, 0.0000, 323.9037, 0.0000);
  5909.     CreateDynamicObject(3458, 2983.2119, -1941.8555, 12.3247, 0.0000, 316.1687, 0.0000);
  5910.     CreateDynamicObject(3458, 2988.6187, -1941.8141, 19.9766, 0.0000, 304.1367, 0.0000);
  5911.     CreateDynamicObject(3458, 2990.0991, -1941.8759, 24.4055, 0.0000, 293.8234, 0.0000);
  5912.     CreateDynamicObject(3458, 2991.2063, -1941.9415, 32.2338, 0.0000, 279.2130, 0.0000);
  5913.     CreateDynamicObject(1634, 2988.3657, -1941.9396, 34.6418, 88.5219, 0.0000, 269.7591);
  5914.     CreateDynamicObject(3458, 2959.6533, -1941.0815, 35.1842, 0.0000, 0.0000, 0.0000);
  5915.     CreateDynamicObject(3458, 2959.5884, -1937.0264, 35.7342, 91.9597, 359.1406, 0.8594);
  5916.     CreateDynamicObject(3458, 2959.5876, -1944.9146, 35.7341, 91.9597, 359.1406, 181.3412);
  5917.     CreateDynamicObject(3458, 2919.8359, -1941.0327, 35.1842, 0.0000, 0.0000, 0.0000);
  5918.     CreateDynamicObject(3458, 2887.1260, -1941.1658, 40.4842, 0.0000, 15.4699, 0.0000);
  5919.     CreateDynamicObject(3458, 2882.7922, -1941.1111, 44.2924, 0.0000, 24.0642, 0.0000);
  5920.     CreateDynamicObject(3458, 2884.7910, -1941.1064, 45.3672, 0.0000, 34.3775, 0.0000);
  5921.     CreateDynamicObject(3458, 2882.9490, -1941.1361, 48.1194, 0.0000, 44.6907, 0.0000);
  5922.     CreateDynamicObject(3458, 2881.4387, -1941.1808, 51.0592, 0.0000, 58.4416, 0.0000);
  5923.     CreateDynamicObject(3458, 2878.8264, -1941.1979, 56.6614, 0.0000, 71.3332, 0.0000);
  5924.     CreateDynamicObject(1634, 2879.8774, -1940.9965, 64.2423, 86.8031, 0.8594, 86.8031);
  5925.     CreateDynamicObject(3458, 2907.4795, -1940.9158, 65.3403, 0.0000, 0.0000, 0.0000);
  5926.     CreateDynamicObject(3458, 2907.5771, -1937.0173, 65.3903, 85.9436, 0.0000, 0.0000);
  5927.     CreateDynamicObject(3458, 2907.4351, -1944.9774, 65.4903, 85.9436, 0.0000, 179.6223);
  5928.     CreateDynamicObject(3458, 2943.3706, -1940.9198, 65.3403, 0.0000, 0.0000, 0.0000);
  5929.     CreateDynamicObject(1634, 2958.2395, -1941.2498, 66.7661, 353.1245, 5.1566, 267.1808);
  5930.     CreateDynamicObject(1634, 2961.2241, -1941.4034, 68.4335, 22.3454, 0.8594, 272.3375);
  5931.     CreateDynamicObject(1634, 2964.3936, -1945.3929, 77.3697, 69.6143, 12.0321, 256.8676);
  5932.     CreateDynamicObject(1634, 2962.5154, -1945.4043, 82.7049, 95.3975, 9.4538, 256.8676);
  5933.     CreateDynamicObject(974, 2963.1836, -1944.7026, 72.2475, 15.4699, 0.0000, 91.1003);
  5934.     CreateDynamicObject(974, 2963.0544, -1938.5177, 72.2459, 15.4699, 0.0000, 91.1003);
  5935.     CreateDynamicObject(3458, 2936.8098, -1945.8411, 81.7339, 0.0000, 0.0000, 0.0000);
  5936.     CreateDynamicObject(974, 2964.4888, -1938.4694, 77.5044, 15.4699, 0.0000, 91.1003);
  5937.     CreateDynamicObject(974, 2964.6069, -1944.6768, 77.5182, 15.4699, 0.0000, 91.1003);
  5938.     CreateDynamicObject(3458, 2965.4351, -1938.2167, 78.7732, 0.0000, 0.0000, 180.4818);
  5939.     CreateDynamicObject(974, 2960.8350, -1947.6814, 72.4415, 0.8594, 180.4818, 356.5622);
  5940.     CreateDynamicObject(974, 2960.8960, -1947.7592, 77.8811, 0.8594, 180.4818, 356.5622);
  5941.     CreateDynamicObject(3458, 2936.8232, -1941.9473, 81.9340, 91.1003, 0.0000, 0.0000);
  5942.     CreateDynamicObject(3458, 2938.0120, -1949.5551, 82.0339, 90.2409, 0.0000, 180.4818);
  5943.     CreateDynamicObject(3458, 2929.6797, -1938.4885, 79.3231, 359.1406, 358.2811, 180.4818);
  5944.     CreateDynamicObject(1633, 2914.6616, -1943.7360, 82.1250, 0.0000, 0.0000, 210.5621);
  5945.     CreateDynamicObject(3458, 2986.1089, -1938.0306, 80.1982, 0.0000, 6.0161, 180.4818);
  5946.     CreateDynamicObject(3458, 2985.5010, -1938.1167, 80.7270, 0.0000, 14.6104, 180.4818);
  5947.     CreateDynamicObject(3458, 2985.2917, -1938.1848, 80.4366, 0.0000, 22.3454, 180.4818);
  5948.     CreateDynamicObject(1634, 2994.2124, -1938.4424, 86.7982, 21.4859, 0.0000, 269.7591);
  5949.     CreateDynamicObject(987, -497.5614, -563.0375, 24.4984, 0.0000, 0.0000, 0.0000);
  5950.     CreateDynamicObject(987, -491.5508, -562.9943, 24.5234, 0.0000, 0.0000, 0.0000);
  5951.     CreateDynamicObject(7377, -557.9980, -515.2365, 34.6494, 0.0000, 0.0000, 0.0000);
  5952.     CreateDynamicObject(7377, -530.9412, -516.2361, 34.5114, 0.0000, 0.0000, 180.3776);
  5953.     CreateDynamicObject(987, -476.8255, -563.4577, 32.4840, 0.0000, 0.0000, 0.0000);
  5954.     CreateDynamicObject(987, -488.7737, -563.4816, 32.4750, 0.0000, 0.0000, 0.0000);
  5955.     CreateDynamicObject(987, -497.7662, -563.5661, 32.4483, 0.0000, 0.0000, 0.0000);
  5956.     CreateDynamicObject(987, -497.6539, -563.2922, 29.2905, 0.0000, 0.0000, 0.0000);
  5957.     CreateDynamicObject(987, -485.7571, -563.3789, 29.2734, 0.0000, 0.0000, 0.0000);
  5958.     CreateDynamicObject(987, -476.7771, -563.3774, 29.3154, 0.0000, 0.0000, 0.0000);
  5959.     CreateDynamicObject(987, -479.7731, -562.9876, 24.5375, 0.0000, 0.0000, 0.0000);
  5960.     CreateDynamicObject(987, -476.7142, -563.4210, 24.5125, 0.0000, 0.0000, 0.0000);
  5961.     CreateDynamicObject(987, -611.8525, -467.8529, 32.8222, 0.0000, 0.0000, 178.7629);
  5962.     CreateDynamicObject(987, -600.1440, -468.2091, 32.8119, 0.0000, 0.0000, 178.7629);
  5963.     CreateDynamicObject(987, -594.3282, -469.5692, 32.6965, 0.0000, 0.0000, 170.1685);
  5964.     CreateDynamicObject(1225, -495.0763, -484.2175, 24.9236, 0.0000, 0.0000, 0.0000);
  5965.     CreateDynamicObject(1225, -536.3912, -500.7354, 24.9236, 0.0000, 0.0000, 0.0000);
  5966.     CreateDynamicObject(1225, -557.5401, -501.8137, 24.1822, 0.0000, 0.0000, 0.0000);
  5967.     CreateDynamicObject(1225, -583.3084, -504.3384, 24.9292, 0.0000, 0.0000, 0.0000);
  5968.     CreateDynamicObject(1225, -608.2533, -473.4315, 24.9236, 0.0000, 0.0000, 0.0000);
  5969.     CreateDynamicObject(1225, -608.9007, -497.8024, 24.9292, 0.0000, 0.0000, 0.0000);
  5970.     CreateDynamicObject(1225, -556.7732, -469.7276, 24.9292, 0.0000, 0.0000, 0.0000);
  5971.     CreateDynamicObject(1225, -524.9064, -519.6870, 35.6043, 0.0000, 0.0000, 0.0000);
  5972.     CreateDynamicObject(1225, -560.4544, -520.6450, 35.7017, 0.0000, 0.0000, 0.0000);
  5973.     CreateDynamicObject(1225, -482.1878, -537.7324, 24.9354, 0.0000, 0.0000, 0.0000);
  5974.     CreateDynamicObject(1225, -504.3661, -556.6820, 24.9292, 0.0000, 0.0000, 0.0000);
  5975.     CreateDynamicObject(1225, -522.4714, -542.5563, 25.3667, 0.0000, 0.0000, 0.0000);
  5976.     CreateDynamicObject(1225, -533.0999, -558.8690, 24.9292, 0.0000, 0.0000, 0.0000);
  5977.     CreateDynamicObject(1225, -551.5090, -541.0966, 24.9292, 0.0000, 0.0000, 0.0000);
  5978.     CreateDynamicObject(1225, -603.0823, -558.6325, 24.9292, 0.0000, 0.0000, 0.0000);
  5979.     CreateDynamicObject(2780, -527.9373, -513.8984, 34.5251, 0.0000, 0.0000, 0.0000);
  5980.     CreateDynamicObject(2780, -535.7078, -473.2389, 24.5234, 0.0000, 0.0000, 0.0000);
  5981.     CreateDynamicObject(2780, -589.3516, -484.4854, 24.5234, 0.0000, 0.0000, 0.0000);
  5982.     CreateDynamicObject(2780, -471.2422, -493.2175, 24.5178, 0.0000, 0.0000, 0.0000);
  5983.     CreateDynamicObject(2780, -565.0232, -528.0062, 34.6978, 0.0000, 0.0000, 0.0000);
  5984.     CreateDynamicObject(3528, -542.7058, -494.1359, 21.4126, 0.0000, 229.3655, 0.0000);
  5985.     CreateDynamicObject(3528, -495.2168, -484.9800, 21.6070, 0.0000, 229.3655, 0.0000);
  5986.     CreateDynamicObject(3528, -493.3233, -542.8312, 21.5876, 0.0000, 229.3655, 0.0000);
  5987.     CreateDynamicObject(3528, -583.1545, -504.7380, 21.5876, 0.0000, 229.3655, 0.0000);
  5988.     CreateDynamicObject(3864, -619.2748, -471.0394, 30.6205, 0.0000, 0.0000, 140.8435);
  5989.     CreateDynamicObject(3864, -620.2595, -560.2654, 30.6205, 0.0000, 0.0000, 222.4901);
  5990.     CreateDynamicObject(3864, -472.9755, -560.5300, 30.4863, 0.0000, 0.0000, 324.7632);
  5991.     CreateDynamicObject(3864, -468.5126, -470.6634, 30.3705, 0.0000, 0.0000, 55.0040);
  5992.     CreateDynamicObject(3279, -500.0324, -523.3172, 24.3991, 0.0000, 0.0000, 0.0000);
  5993.     CreateDynamicObject(3279, -579.7564, -502.5423, 24.5991, 0.0000, 0.0000, 0.0000);
  5994.     CreateDynamicObject(8613, -582.6415, -543.0036, 28.9260, 0.0000, 0.0000, 0.0000);
  5995.     CreateDynamicObject(3277, -542.8795, -487.6576, 25.2960, 0.0000, 0.0000, 0.0000);
  5996.     CreateDynamicObject(3277, -539.7072, -521.0732, 35.8120, 0.0000, 0.0000, 162.3295);
  5997.     CreateDynamicObject(12911, -551.7155, -463.7006, 23.9346, 0.0000, 0.0000, 103.1324);
  5998.     CreateDynamicObject(16641, -570.5200, -473.0514, 26.2783, 0.0000, 0.0000, 179.5182);
  5999.     CreateDynamicObject(3594, -498.1964, -484.2448, 25.1546, 0.0000, 0.0000, 0.0000);
  6000.     CreateDynamicObject(3593, -496.1935, -487.2502, 25.3530, 11.1727, 0.0000, 70.4738);
  6001.     CreateDynamicObject(13591, -588.9095, -484.6967, 25.0107, 0.0000, 0.0000, 51.5662);
  6002.     CreateDynamicObject(12957, -472.0417, -492.8043, 25.3961, 0.0000, 0.0000, 0.0000);
  6003.     CreateDynamicObject(1225, -499.9270, -522.9880, 40.8329, 0.0000, 0.0000, 0.0000);
  6004.     CreateDynamicObject(1225, -579.6539, -502.4623, 41.0829, 0.0000, 0.0000, 0.0000);
  6005.     CreateDynamicObject(3277, -607.7768, -543.2722, 37.2979, 0.0000, 0.0000, 119.3577);
  6006.     CreateDynamicObject(3277, -471.4675, -551.5562, 32.8691, 0.0000, 0.0000, 209.5985);
  6007.     CreateDynamicObject(13666, 834.2636, -2065.7598, 16.8975, 0.0000, 0.0000, 98.8352);
  6008.     CreateDynamicObject(13666, 834.3015, -2069.1807, 16.8989, 0.0000, 0.0000, 98.8352);
  6009.     CreateDynamicObject(13666, 834.3679, -2072.5085, 16.9537, 0.0000, 2.5783, 98.8352);
  6010.     CreateDynamicObject(13666, 834.2828, -2075.8958, 17.2099, 0.0000, 6.0161, 96.2569);
  6011.     CreateDynamicObject(13666, 833.9448, -2079.0571, 17.5482, 0.0000, 8.5944, 91.1003);
  6012.     CreateDynamicObject(13666, 833.4271, -2082.1565, 18.0416, 0.0000, 11.1727, 86.8032);
  6013.     CreateDynamicObject(13666, 832.6887, -2085.4158, 18.6560, 0.0000, 11.1727, 86.8032);
  6014.     CreateDynamicObject(13666, 831.8886, -2088.6333, 19.4319, 0.0000, 16.3293, 81.6465);
  6015.     CreateDynamicObject(13666, 830.8672, -2091.6201, 20.6461, 0.0000, 23.2048, 77.3494);
  6016.     CreateDynamicObject(13666, 829.9260, -2093.8059, 21.6910, 0.0000, 26.6425, 73.9116);
  6017.     CreateDynamicObject(13666, 828.6838, -2096.2495, 23.3180, 0.0000, 32.6586, 69.6144);
  6018.     CreateDynamicObject(13666, 827.0868, -2098.5867, 25.1450, 0.0000, 35.2369, 65.3172);
  6019.     CreateDynamicObject(13666, 825.3143, -2100.5029, 26.9665, 0.0000, 36.0963, 57.5823);
  6020.     CreateDynamicObject(13666, 823.3654, -2102.2830, 28.7983, 0.0000, 36.9558, 51.5663);
  6021.     CreateDynamicObject(13666, 821.5090, -2103.8242, 30.5063, 0.0000, 38.6747, 46.4096);
  6022.     CreateDynamicObject(13666, 819.2280, -2105.2117, 32.5758, 0.0000, 39.5341, 41.2531);
  6023.     CreateDynamicObject(13666, 817.1938, -2106.2070, 34.2552, 0.0000, 39.5341, 33.5181);
  6024.     CreateDynamicObject(13666, 815.2654, -2106.8220, 35.7638, 0.0000, 39.5341, 25.7832);
  6025.     CreateDynamicObject(13666, 813.4641, -2107.1558, 37.2365, 0.0000, 39.5341, 20.6266);
  6026.     CreateDynamicObject(13666, 810.9012, -2107.3472, 39.2178, 0.0000, 39.5341, 13.7511);
  6027.     CreateDynamicObject(13666, 808.4473, -2107.2593, 41.2161, 0.0000, 39.5341, 6.8756);
  6028.     CreateDynamicObject(13666, 805.7615, -2106.8186, 43.3117, 0.0000, 39.5341, 0.0001);
  6029.     CreateDynamicObject(13666, 803.2025, -2106.0198, 45.3184, 0.0000, 39.5341, 350.5463);
  6030.     CreateDynamicObject(13666, 801.0756, -2105.0403, 47.1241, 0.0000, 36.9558, 346.2491);
  6031.     CreateDynamicObject(13666, 798.5490, -2103.7095, 49.0681, 0.0000, 35.2369, 339.3736);
  6032.     CreateDynamicObject(13666, 796.2156, -2101.8408, 50.9584, 0.0000, 33.5180, 329.9198);
  6033.     CreateDynamicObject(13666, 794.4280, -2100.1191, 52.3999, 0.0000, 31.7992, 323.9038);
  6034.     CreateDynamicObject(13666, 792.4989, -2097.6360, 54.1901, 0.0000, 30.0803, 317.0283);
  6035.     CreateDynamicObject(13666, 790.7393, -2094.7856, 55.8992, 0.0000, 27.5020, 310.1528);
  6036.     CreateDynamicObject(13666, 789.5783, -2092.5459, 57.0930, 0.0000, 24.9237, 304.9962);
  6037.     CreateDynamicObject(13666, 788.7061, -2090.5745, 58.0896, 0.0000, 21.4859, 299.8396);
  6038.     CreateDynamicObject(13666, 787.8504, -2087.5942, 59.1505, 0.0000, 18.0482, 292.1047);
  6039.     CreateDynamicObject(13666, 787.3958, -2084.9480, 59.9735, 0.0000, 14.6104, 283.5103);
  6040.     CreateDynamicObject(13666, 787.3300, -2081.5962, 60.7606, 0.0000, 12.0321, 278.3537);
  6041.     CreateDynamicObject(13666, 787.6715, -2068.2546, 62.1656, 0.0000, 0.0000, 98.8352);
  6042.     CreateDynamicObject(13666, 787.3824, -2078.1750, 61.4175, 0.0000, 9.4538, 276.6348);
  6043.     CreateDynamicObject(13666, 787.4939, -2074.7917, 61.8670, 0.0000, 6.0161, 276.6348);
  6044.     CreateDynamicObject(13666, 787.6382, -2071.4487, 62.1461, 0.0000, 2.5783, 276.6348);
  6045.     CreateDynamicObject(1655, -2239.2400, -1735.8900, 480.1100, 0.0000, 0.0000, 220.0000);
  6046.     CreateDynamicObject(3055, 230.6800, -1910.7400, 0.4500, 90.0000, 0.0000, 0.0000);
  6047.     CreateDynamicObject(3055, 222.8500, -1910.7500, 0.4600, 90.0000, 0.0000, 0.0000);
  6048.  
  6049.  
  6050.  
  6051. //=============================================================
  6052. //  Eiffel Tower
  6053. // ---------------
  6054. //=============================================================
  6055.    
  6056.     //Gates
  6057.     lift1 = CreateObject(974, 948.788574, 2439.683350, 9.874555, 90.2409, 0.0000, 0.0000);
  6058.     lift2 = CreateObject(974, 957.282593, 2432.806641, 42.432281, 90.2409, 0.0000, 0.0000);
  6059.     lift3 = CreateObject(974, 957.160950, 2442.099365, 81.161102, 90.2409, 0.0000, 0.0000);
  6060. //=========== Pool Party Objects ===============================
  6061.    
  6062.  
  6063.     SetTimer("Supdate",500,true);
  6064.     SetTimer("Vehdate",500,true);
  6065.     SetTimer("Png",200,true);
  6066.     TimerA=SetTimer("AngleUpdate", 200, true);
  6067.     TimerB=SetTimer("AutoFix", 500, true);
  6068.     TimerC=SetTimer("CheckPlayerState", 100, true);
  6069.     LoadTextDraws();
  6070.  
  6071.     TextdrawTime = TextDrawCreate(503.0, 141.0,"World Stunting V.1");
  6072.     TextDrawAlignment(TextdrawTime,0);
  6073.     TextDrawBackgroundColor(TextdrawTime,0x000000ff);
  6074.     TextDrawFont(TextdrawTime,3);
  6075.     TextDrawLetterSize(TextdrawTime,0.4, 1.05);
  6076.     TextDrawColor(TextdrawTime,0xffffffff);
  6077.     TextDrawSetOutline(TextdrawTime,1);
  6078.     TextDrawSetProportional(TextdrawTime,1);
  6079.     TextDrawSetShadow(TextdrawTime,1);
  6080. //
  6081. {
  6082.     new string[256],year,month,day;
  6083.     getdate(year, month, day);
  6084.     format(string, sizeof string, "%d/%s%d/%s%d", day, ((month < 10) ? ("0") : ("")), month, (year < 10) ? ("0") : (""), year);
  6085.     TextDrawSetString(Date, string);
  6086. }
  6087. //Timer
  6088.     SetTimer("Clock", 1000, 1);
  6089.     return 1;
  6090. }
  6091. forward SetServerName();
  6092. public SetServerName()
  6093. {
  6094.      new var = random(4);
  6095.      switch (var)
  6096.      {
  6097.          case 0: SendRconCommand("hostname (¯`·._.·World Stunting·._.·´¯) v1.2 ");
  6098.          case 1: SendRconCommand("hostname Joined For Fun");
  6099.          case 2: SendRconCommand("hostname Superb Stunts");
  6100.          case 3: SendRconCommand("hostname www.Inferno.smffy.com");
  6101.  
  6102.      }
  6103. }
  6104. public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
  6105. {
  6106.     SendClientMessage(playerid, blue, "             --->>>>< Vehicle Commands ><<<<--- ");
  6107.     SendClientMessage(playerid, COLOR_GREEN, "Commands: /repair, /flip, )  ");
  6108.     SendClientMessage(playerid, COLOR_GREEN, "Remember you Can Press '2' to fix your Car and 'Fire Key' to use Nos!");
  6109.     AddVehicleComponent(GetPlayerVehicleID(playerid), 1097);
  6110.     return 1;
  6111. }
  6112. public Rainbow()
  6113. {
  6114.     for(new i = 0; i < MAX_VEHICLES; i ++)
  6115.     {
  6116.         if(On[i] == 1) ChangeVehicleColor(i, random(252), random(252));
  6117.     }
  6118.     return 1;
  6119. }
  6120. public OnVehicleStreamIn(vehicleid, forplayerid)
  6121. {
  6122.     SetVehicleNumberPlate(411, "Sufyan");
  6123.     return 1;
  6124. }
  6125. public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
  6126.  
  6127. {
  6128. if(response)//they pressed the first button
  6129.     {
  6130.     switch(dialogid)//if your using only one dialog this isn't needed but you never know.
  6131.         {
  6132.         case 1://our dialog
  6133.             {
  6134.             switch(listitem)//wich listitem is chosen
  6135.             {
  6136.                 case 0://the first item in the list
  6137.                 {
  6138.                     if(GetPlayerMoney(playerid) < 1) return SendClientMessage(playerid, 0xFFFFFF, "You don't have enough cash.");
  6139.                     GivePlayerMoney(playerid, -1);
  6140.                     SetPlayerSpecialAction(playerid, SPECIAL_ACTION_DRINK_SPRUNK);
  6141.                 }
  6142.                 case 1:
  6143.                 {
  6144.                     if(GetPlayerMoney(playerid) < 2) return SendClientMessage(playerid, 0xFFFFFF, "You don't have enough cash.");
  6145.                     GivePlayerMoney(playerid, -2);
  6146.                     SetPlayerSpecialAction(playerid, SPECIAL_ACTION_DRINK_BEER);
  6147.                 }
  6148.                 case 2:
  6149.                 {
  6150.                     if(GetPlayerMoney(playerid) < 3) return SendClientMessage(playerid, 0xFFFFFF, "You don't have enough cash.");
  6151.                     GivePlayerMoney(playerid, -3);
  6152.                     SetPlayerSpecialAction(playerid, SPECIAL_ACTION_DRINK_WINE);
  6153.                 }
  6154.                 case 3:
  6155.                 {
  6156.                     if(GetPlayerMoney(playerid) < 500) return SendClientMessage(playerid, 0xFFFFFF, "You don't have enough cash.");
  6157.                     GivePlayerMoney(playerid, -500);
  6158.                     GivePlayerWeapon(playerid,24,200);
  6159.                 }
  6160.                 case 4:
  6161.                 {
  6162.                     if(GetPlayerMoney(playerid) < 700) return SendClientMessage(playerid, 0xFFFFFF, "You don't have enough cash.");
  6163.                     GivePlayerMoney(playerid, -700);
  6164.                     GivePlayerWeapon(playerid,27,200);
  6165.                 }
  6166.                 case 5:
  6167.                 {
  6168.                     if(GetPlayerMoney(playerid) < 1000) return SendClientMessage(playerid, 0xFFFFFF, "You don't have enough cash.");
  6169.                     GivePlayerMoney(playerid, -1000);
  6170.                     GivePlayerWeapon(playerid,31,200);
  6171.                 }
  6172.                 case 6:
  6173.                 {
  6174.                     if(GetPlayerMoney(playerid) < 500) return SendClientMessage(playerid, 0xFFFFFF, "You don't have enough cash.");
  6175.                     GivePlayerMoney(playerid, -500);
  6176.                     SetPlayerHealth(playerid,100);
  6177.                 }
  6178.                 case 7:
  6179.                 {
  6180.                     if(GetPlayerMoney(playerid) < 1000) return SendClientMessage(playerid, 0xFFFFFF, "You don't have enough cash.");
  6181.                     GivePlayerMoney(playerid, -1000);
  6182.                     SetPlayerArmour(playerid,100);
  6183.                 }
  6184.             }
  6185.             }
  6186.     }
  6187.     }
  6188.     return 1;
  6189. }
  6190.  
  6191. public SendPlayerFormattedText(playerid, const str[], define)
  6192. {
  6193.     new tmpbuf[256];
  6194.     format(tmpbuf, sizeof(tmpbuf), str, define);
  6195.     SendClientMessage(playerid, 0xFF004040, tmpbuf);
  6196. }
  6197. public SendAllFormattedText(playerid, const str[], define)
  6198. {
  6199.     new tmpbuf[256];
  6200.     format(tmpbuf, sizeof(tmpbuf), str, define);
  6201.     SendClientMessageToAll(0xFFFF00AA, tmpbuf);
  6202. }
  6203.  
  6204. stock GetXYInFrontOfPlayer(playerid, &Float:x2, &Float:y2, Float:distance)
  6205. {
  6206.     new Float:a;
  6207.  
  6208.     GetPlayerPos(playerid, x2, y2, a);
  6209.     GetPlayerFacingAngle(playerid, a);
  6210.  
  6211.     if(GetPlayerVehicleID(playerid))
  6212.     {
  6213.         GetVehicleZAngle(GetPlayerVehicleID(playerid), a);
  6214.     }
  6215.  
  6216.     x2 += (distance * floatsin(-a, degrees));
  6217.     y2 += (distance * floatcos(-a, degrees));
  6218.  
  6219. }
  6220. //===============================================================================
  6221.  
  6222. //---------------------------------END------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement