Guest User

OnGameModeInit

a guest
Feb 10th, 2014
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 250.25 KB | None | 0 0
  1. public OnGameModeInit()
  2. {
  3. // Default Rates
  4. SendRconCommand("onfoot_rate 50");
  5. SendRconCommand("incar_rate 50");
  6. SendRconCommand("weapon_rate 50");
  7. SendRconCommand("stream_distance 200.0");
  8. SendRconCommand("stream_rate 2000");
  9. Streamer_TickRate(100);
  10.  
  11. // Security check
  12. SetTimer("LoginTimeCheck", 1000, 1);
  13.  
  14. mysql_connection = mysql_connect(MYSQL_IP, MYSQL_USER, MYSQL_DB, MYSQL_PASSWORD);
  15. //mysql_debug();
  16.  
  17. new a[][] =
  18. {
  19. "Unarmed (Fist)",
  20. "Brass K"
  21. };
  22. #pragma unused a
  23.  
  24. //InitDatabase();
  25. djson_GameModeInit();
  26.  
  27. // Initialise Dispatch System
  28. for(new v=0; v<MAX_DP_CARS; v++)
  29. {
  30. DPCar[v][dpCarID] = 0;
  31. format(DPCar[v][dpFaction], 10, "None");
  32. format(DPCar[v][dpModel], 24, "None");
  33. DPCar[v][dpOfficerID] = -1;
  34. }
  35.  
  36. for(new s=0; s<MAX_DP_SITS; s++)
  37. {
  38. DPSituation[s][dpStatus] = 0;
  39. format(DPSituation[s][dpLoc], 50, "None");
  40. format(DPSituation[s][dpDesc], 50, "None");
  41. DPSituation[s][dpCar1] = -1;
  42. DPSituation[s][dpCar2] = -1;
  43. DPSituation[s][dpCar3] = -1;
  44. DPSituation[s][dpCar4] = -1;
  45. }
  46.  
  47. no20 = 0;
  48.  
  49. // Fire system Initialization
  50. RandomLAFireTimer();
  51. RandomCCFireTimer();
  52. for(new i=0; i<MAX_FIRES; i++)
  53. {
  54. Fire[i][Fire_Exists] = 0;
  55. Fire[i][Fire_Taken] = 0;
  56. Fire[i][Fire_Zone] = MAX_ZONE_NAME;
  57. Fire[i][Fire_id] = 0;
  58. Fire[i][Fire_X] = 0.0;
  59. Fire[i][Fire_Y] = 0.0;
  60. Fire[i][Fire_Z] = 0.0;
  61. FireHealth[i] = 0;
  62. }
  63. for(new i; i < MAX_PLAYERS; i++)
  64. {
  65. PlayerFireTimer[i][2] = -1;
  66. }
  67. // Sockets
  68. new listenPort = 58000;
  69. g_Socket = socket_create(TCP);
  70. if(is_socket_valid(g_Socket)) {
  71. socket_set_max_connections(g_Socket, 10);
  72. socket_listen(g_Socket, listenPort); // we are going to listen on port listenPort
  73. }
  74. printf("Listen server running on port %d", listenPort);
  75. ///////////////////////////////////
  76. // SAMSUNG GALAXY S3 TEXTDRAWS
  77. ///////////////////////////////////
  78.  
  79. Galaxy3[0] = TextDrawCreate(493.000000, 156.000000, "hud:radardisc");
  80. TextDrawBackgroundColor(Galaxy3[0], 255);
  81. TextDrawFont(Galaxy3[0], 4);
  82. TextDrawLetterSize(Galaxy3[0], 0.500000, 1.000000);
  83. TextDrawColor(Galaxy3[0], -1);
  84. TextDrawSetOutline(Galaxy3[0], 0);
  85. TextDrawSetProportional(Galaxy3[0], 1);
  86. TextDrawSetShadow(Galaxy3[0], 1);
  87. TextDrawUseBox(Galaxy3[0], 1);
  88. TextDrawBoxColor(Galaxy3[0], 255);
  89. TextDrawTextSize(Galaxy3[0], 27.000000, 33.000000);
  90. TextDrawSetSelectable(Galaxy3[0], 0);
  91.  
  92. Galaxy3[1] = TextDrawCreate(493.000000, 423.000000, "hud:radardisc");
  93. TextDrawBackgroundColor(Galaxy3[1], 255);
  94. TextDrawFont(Galaxy3[1], 4);
  95. TextDrawLetterSize(Galaxy3[1], 0.500000, 1.000000);
  96. TextDrawColor(Galaxy3[1], -1);
  97. TextDrawSetOutline(Galaxy3[1], 0);
  98. TextDrawSetProportional(Galaxy3[1], 1);
  99. TextDrawSetShadow(Galaxy3[1], 1);
  100. TextDrawUseBox(Galaxy3[1], 1);
  101. TextDrawBoxColor(Galaxy3[1], 255);
  102. TextDrawTextSize(Galaxy3[1], 27.000000, -33.000000);
  103. TextDrawSetSelectable(Galaxy3[1], 0);
  104.  
  105. Galaxy3[2] = TextDrawCreate(615.000000, 423.000000, "hud:radardisc");
  106. TextDrawBackgroundColor(Galaxy3[2], 255);
  107. TextDrawFont(Galaxy3[2], 4);
  108. TextDrawLetterSize(Galaxy3[2], 0.500000, 1.000000);
  109. TextDrawColor(Galaxy3[2], -1);
  110. TextDrawSetOutline(Galaxy3[2], 0);
  111. TextDrawSetProportional(Galaxy3[2], 1);
  112. TextDrawSetShadow(Galaxy3[2], 1);
  113. TextDrawUseBox(Galaxy3[2], 1);
  114. TextDrawBoxColor(Galaxy3[2], 255);
  115. TextDrawTextSize(Galaxy3[2], -27.000000, -33.000000);
  116. TextDrawSetSelectable(Galaxy3[2], 0);
  117.  
  118. Galaxy3[3] = TextDrawCreate(615.000000, 156.000000, "hud:radardisc");
  119. TextDrawBackgroundColor(Galaxy3[3], 255);
  120. TextDrawFont(Galaxy3[3], 4);
  121. TextDrawLetterSize(Galaxy3[3], 0.500000, 1.000000);
  122. TextDrawColor(Galaxy3[3], -1);
  123. TextDrawSetOutline(Galaxy3[3], 0);
  124. TextDrawSetProportional(Galaxy3[3], 1);
  125. TextDrawSetShadow(Galaxy3[3], 1);
  126. TextDrawUseBox(Galaxy3[3], 1);
  127. TextDrawBoxColor(Galaxy3[3], 255);
  128. TextDrawTextSize(Galaxy3[3], -27.000000, 33.000000);
  129. TextDrawSetSelectable(Galaxy3[3], 0);
  130.  
  131. Galaxy3[4] = TextDrawCreate(494.000000, 138.000000, "0");
  132. TextDrawBackgroundColor(Galaxy3[4], 255);
  133. TextDrawFont(Galaxy3[4], 1);
  134. TextDrawLetterSize(Galaxy3[4], 2.259998, 10.800010);
  135. TextDrawColor(Galaxy3[4], 255);
  136. TextDrawSetOutline(Galaxy3[4], 0);
  137. TextDrawSetProportional(Galaxy3[4], 1);
  138. TextDrawSetShadow(Galaxy3[4], 0);
  139. TextDrawSetSelectable(Galaxy3[4], 0);
  140.  
  141. Galaxy3[5] = TextDrawCreate(565.500000, 138.000000, "0");
  142. TextDrawBackgroundColor(Galaxy3[5], 255);
  143. TextDrawFont(Galaxy3[5], 1);
  144. TextDrawLetterSize(Galaxy3[5], 2.259998, 10.800010);
  145. TextDrawColor(Galaxy3[5], 255);
  146. TextDrawSetOutline(Galaxy3[5], 0);
  147. TextDrawSetProportional(Galaxy3[5], 1);
  148. TextDrawSetShadow(Galaxy3[5], 0);
  149. TextDrawSetSelectable(Galaxy3[5], 0);
  150.  
  151. Galaxy3[14] = TextDrawCreate(494.000000, 336.000000, "0");
  152. TextDrawBackgroundColor(Galaxy3[14], 255);
  153. TextDrawFont(Galaxy3[14], 1);
  154. TextDrawLetterSize(Galaxy3[14], 2.259998, 10.800010);
  155. TextDrawColor(Galaxy3[14], 255);
  156. TextDrawSetOutline(Galaxy3[14], 0);
  157. TextDrawSetProportional(Galaxy3[14], 1);
  158. TextDrawSetShadow(Galaxy3[14], 0);
  159. TextDrawSetSelectable(Galaxy3[14], 0);
  160.  
  161. Galaxy3[15] = TextDrawCreate(565.500000, 335.000000, "0");
  162. TextDrawBackgroundColor(Galaxy3[15], 255);
  163. TextDrawFont(Galaxy3[15], 1);
  164. TextDrawLetterSize(Galaxy3[15], 2.259998, 10.800010);
  165. TextDrawColor(Galaxy3[15], 255);
  166. TextDrawSetOutline(Galaxy3[15], 0);
  167. TextDrawSetProportional(Galaxy3[15], 1);
  168. TextDrawSetShadow(Galaxy3[15], 0);
  169. TextDrawSetSelectable(Galaxy3[15], 0);
  170.  
  171. Galaxy3[6] = TextDrawCreate(617.000000, 191.000000, "_");
  172. TextDrawBackgroundColor(Galaxy3[6], 255);
  173. TextDrawFont(Galaxy3[6], 1);
  174. TextDrawLetterSize(Galaxy3[6], 0.500000, 22.200000);
  175. TextDrawColor(Galaxy3[6], -1);
  176. TextDrawSetOutline(Galaxy3[6], 0);
  177. TextDrawSetProportional(Galaxy3[6], 1);
  178. TextDrawSetShadow(Galaxy3[6], 1);
  179. TextDrawUseBox(Galaxy3[6], 1);
  180. TextDrawBoxColor(Galaxy3[6], 255);
  181. TextDrawTextSize(Galaxy3[6], 491.000000, 0.000000);
  182. TextDrawSetSelectable(Galaxy3[6], 0);
  183.  
  184. Galaxy3[7] = TextDrawCreate(590.000000, 158.000000, "_");
  185. TextDrawBackgroundColor(Galaxy3[7], 255);
  186. TextDrawFont(Galaxy3[7], 1);
  187. TextDrawLetterSize(Galaxy3[7], 0.500000, 29.200004);
  188. TextDrawColor(Galaxy3[7], -1);
  189. TextDrawSetOutline(Galaxy3[7], 0);
  190. TextDrawSetProportional(Galaxy3[7], 1);
  191. TextDrawSetShadow(Galaxy3[7], 1);
  192. TextDrawUseBox(Galaxy3[7], 1);
  193. TextDrawBoxColor(Galaxy3[7], 255);
  194. TextDrawTextSize(Galaxy3[7], 518.000000, 0.000000);
  195. TextDrawSetSelectable(Galaxy3[7], 0);
  196.  
  197. Galaxy3[8] = TextDrawCreate(606.000000, 174.000000, "_");
  198. TextDrawBackgroundColor(Galaxy3[8], 255);
  199. TextDrawFont(Galaxy3[8], 1);
  200. TextDrawLetterSize(Galaxy3[8], 0.500000, 26.199996);
  201. TextDrawColor(Galaxy3[8], -1);
  202. TextDrawSetOutline(Galaxy3[8], 0);
  203. TextDrawSetProportional(Galaxy3[8], 1);
  204. TextDrawSetShadow(Galaxy3[8], 1);
  205. TextDrawUseBox(Galaxy3[8], 1);
  206. TextDrawBoxColor(Galaxy3[8], 255);
  207. TextDrawTextSize(Galaxy3[8], 498.000000, 0.000000);
  208. TextDrawSetSelectable(Galaxy3[8], 0);
  209.  
  210. Galaxy3[9] = TextDrawCreate(554.000000, 397.000000, "u");
  211. TextDrawBackgroundColor(Galaxy3[9], 255);
  212. TextDrawAlignment(Galaxy3[9], 2);
  213. TextDrawFont(Galaxy3[9], 2);
  214. TextDrawLetterSize(Galaxy3[9], 2.070000, 1.400000);
  215. TextDrawColor(Galaxy3[9], -1);
  216. TextDrawSetOutline(Galaxy3[9], 0);
  217. TextDrawSetProportional(Galaxy3[9], 1);
  218. TextDrawSetShadow(Galaxy3[9], 1);
  219. TextDrawTextSize(Galaxy3[9], 13.000000, 50.000000);
  220. TextDrawSetSelectable(Galaxy3[9], 1);
  221.  
  222. Galaxy3[10] = TextDrawCreate(502.000000, 190.000000, "_");
  223. TextDrawBackgroundColor(Galaxy3[10], 255);
  224. TextDrawFont(Galaxy3[10], 1);
  225. TextDrawLetterSize(Galaxy3[10], 0.500000, 22.000003);
  226. TextDrawColor(Galaxy3[10], -1);
  227. TextDrawSetOutline(Galaxy3[10], 0);
  228. TextDrawSetProportional(Galaxy3[10], 1);
  229. TextDrawSetShadow(Galaxy3[10], 1);
  230. TextDrawUseBox(Galaxy3[10], 1);
  231. TextDrawBoxColor(Galaxy3[10], 842150655);
  232. TextDrawTextSize(Galaxy3[10], 606.000000, 0.000000);
  233. TextDrawSetSelectable(Galaxy3[10], 0);
  234.  
  235. Galaxy3[11] = TextDrawCreate(535.000000, 157.000000, "-");
  236. TextDrawBackgroundColor(Galaxy3[11], 255);
  237. TextDrawFont(Galaxy3[11], 1);
  238. TextDrawLetterSize(Galaxy3[11], 2.569999, 1.800000);
  239. TextDrawColor(Galaxy3[11], 842150655);
  240. TextDrawSetOutline(Galaxy3[11], 0);
  241. TextDrawSetProportional(Galaxy3[11], 1);
  242. TextDrawSetShadow(Galaxy3[11], 0);
  243. TextDrawSetSelectable(Galaxy3[11], 0);
  244.  
  245. Galaxy3[12] = TextDrawCreate(568.000000, 163.000000, ".. o");
  246. TextDrawBackgroundColor(Galaxy3[12], 255);
  247. TextDrawFont(Galaxy3[12], 1);
  248. TextDrawLetterSize(Galaxy3[12], 0.400000, 1.400000);
  249. TextDrawColor(Galaxy3[12], 842150655);
  250. TextDrawSetOutline(Galaxy3[12], 0);
  251. TextDrawSetProportional(Galaxy3[12], 1);
  252. TextDrawSetShadow(Galaxy3[12], 0);
  253. TextDrawSetSelectable(Galaxy3[12], 0);
  254.  
  255. Galaxy3[13] = TextDrawCreate(533.000000, 175.000000, "SMART S3");
  256. TextDrawBackgroundColor(Galaxy3[13], 255);
  257. TextDrawFont(Galaxy3[13], 1);
  258. TextDrawLetterSize(Galaxy3[13], 0.250000, 0.899999);
  259. TextDrawColor(Galaxy3[13], -1);
  260. TextDrawSetOutline(Galaxy3[13], 0);
  261. TextDrawSetProportional(Galaxy3[13], 1);
  262. TextDrawSetShadow(Galaxy3[13], 0);
  263. TextDrawSetSelectable(Galaxy3[13], 0);
  264.  
  265. //GalaxySIII starter
  266. Galaxy3Start[0] = TextDrawCreate(553.000000, 235.000000, "SMART S3");
  267. TextDrawAlignment(Galaxy3Start[0], 2);
  268. TextDrawBackgroundColor(Galaxy3Start[0], 255);
  269. TextDrawFont(Galaxy3Start[0], 1);
  270. TextDrawLetterSize(Galaxy3Start[0], 0.559999, 1.600000);
  271. TextDrawColor(Galaxy3Start[0], -855703297);
  272. TextDrawSetOutline(Galaxy3Start[0], 0);
  273. TextDrawSetProportional(Galaxy3Start[0], 1);
  274. TextDrawSetShadow(Galaxy3Start[0], 0);
  275. TextDrawSetSelectable(Galaxy3Start[0], 0);
  276.  
  277. Galaxy3Start[1] = TextDrawCreate(553.000000, 322.000000, "SMART S3~n~LOADING");
  278. TextDrawAlignment(Galaxy3Start[1], 2);
  279. TextDrawBackgroundColor(Galaxy3Start[1], 255);
  280. TextDrawFont(Galaxy3Start[1], 1);
  281. TextDrawLetterSize(Galaxy3Start[1], 0.290000, 1.299999);
  282. TextDrawColor(Galaxy3Start[1], -1);
  283. TextDrawSetOutline(Galaxy3Start[1], 0);
  284. TextDrawSetProportional(Galaxy3Start[1], 1);
  285. TextDrawSetShadow(Galaxy3Start[1], 0);
  286. TextDrawSetSelectable(Galaxy3Start[1], 0);
  287.  
  288. //GalaxySIII Current Menu
  289. Galaxy3StartMenu[0] = TextDrawCreate(500.000000, 187.000000, "ld_dual:backgnd");
  290. TextDrawBackgroundColor(Galaxy3StartMenu[0], 255);
  291. TextDrawFont(Galaxy3StartMenu[0], 4);
  292. TextDrawLetterSize(Galaxy3StartMenu[0], 0.500000, 1.000000);
  293. TextDrawColor(Galaxy3StartMenu[0], -1);
  294. TextDrawSetOutline(Galaxy3StartMenu[0], 0);
  295. TextDrawSetProportional(Galaxy3StartMenu[0], 1);
  296. TextDrawSetShadow(Galaxy3StartMenu[0], 1);
  297. TextDrawUseBox(Galaxy3StartMenu[0], 1);
  298. TextDrawBoxColor(Galaxy3StartMenu[0], 255);
  299. TextDrawTextSize(Galaxy3StartMenu[0], 108.000000, 204.000000);
  300. TextDrawSetSelectable(Galaxy3StartMenu[0], 0);
  301.  
  302. Galaxy3StartMenu[1] = TextDrawCreate(523.000000, 210.000000, "00:00");
  303. TextDrawBackgroundColor(Galaxy3StartMenu[1], 255);
  304. TextDrawFont(Galaxy3StartMenu[1], 2);
  305. TextDrawLetterSize(Galaxy3StartMenu[1], 0.559998, 2.599998);
  306. TextDrawColor(Galaxy3StartMenu[1], -1);
  307. TextDrawSetOutline(Galaxy3StartMenu[1], 0);
  308. TextDrawSetProportional(Galaxy3StartMenu[1], 1);
  309. TextDrawSetShadow(Galaxy3StartMenu[1], 0);
  310. TextDrawSetSelectable(Galaxy3StartMenu[1], 0);
  311.  
  312. Galaxy3StartMenu[2] = TextDrawCreate(592.000000, 364.000000, "...~n~...~n~...");
  313. TextDrawAlignment(Galaxy3StartMenu[2], 2);
  314. TextDrawBackgroundColor(Galaxy3StartMenu[2], 255);
  315. TextDrawFont(Galaxy3StartMenu[2], 1);
  316. TextDrawLetterSize(Galaxy3StartMenu[2], 0.400000, 0.800000);
  317. TextDrawColor(Galaxy3StartMenu[2], -1);
  318. TextDrawSetOutline(Galaxy3StartMenu[2], 0);
  319. TextDrawSetProportional(Galaxy3StartMenu[2], 1);
  320. TextDrawSetShadow(Galaxy3StartMenu[2], 0);
  321. TextDrawTextSize(Galaxy3StartMenu[2], 20.000000, 15.000000);
  322. TextDrawSetSelectable(Galaxy3StartMenu[2], 1);
  323.  
  324. Galaxy3StartMenu[3] = TextDrawCreate(528.000000, 231.000000, "00/MON/00");
  325. TextDrawBackgroundColor(Galaxy3StartMenu[3], 255);
  326. TextDrawFont(Galaxy3StartMenu[3], 2);
  327. TextDrawLetterSize(Galaxy3StartMenu[3], 0.219999, 1.299998);
  328. TextDrawColor(Galaxy3StartMenu[3], -1);
  329. TextDrawSetOutline(Galaxy3StartMenu[3], 0);
  330. TextDrawSetProportional(Galaxy3StartMenu[3], 1);
  331. TextDrawSetShadow(Galaxy3StartMenu[3], 0);
  332. TextDrawSetSelectable(Galaxy3StartMenu[3], 0);
  333.  
  334. Galaxy3StartMenu[4] = TextDrawCreate(571.000000, 315.000000, ".");
  335. TextDrawAlignment(Galaxy3StartMenu[4], 2);
  336. TextDrawBackgroundColor(Galaxy3StartMenu[4], 255);
  337. TextDrawFont(Galaxy3StartMenu[4], 1);
  338. TextDrawLetterSize(Galaxy3StartMenu[4], 2.579998, 9.000000);
  339. TextDrawColor(Galaxy3StartMenu[4], -1);
  340. TextDrawSetOutline(Galaxy3StartMenu[4], 0);
  341. TextDrawSetProportional(Galaxy3StartMenu[4], 1);
  342. TextDrawSetShadow(Galaxy3StartMenu[4], 0);
  343. TextDrawTextSize(Galaxy3StartMenu[4], 20.000000, 45.000000);
  344. TextDrawSetSelectable(Galaxy3StartMenu[4], 0);
  345.  
  346. Galaxy3StartMenu[5] = TextDrawCreate(545.000000, 369.000000, "SMS~n~_");
  347. TextDrawAlignment(Galaxy3StartMenu[5], 2);
  348. TextDrawBackgroundColor(Galaxy3StartMenu[5], 255);
  349. TextDrawFont(Galaxy3StartMenu[5], 1);
  350. TextDrawLetterSize(Galaxy3StartMenu[5], 0.250000, 0.800000);
  351. TextDrawColor(Galaxy3StartMenu[5], 255);
  352. TextDrawSetOutline(Galaxy3StartMenu[5], 0);
  353. TextDrawSetProportional(Galaxy3StartMenu[5], 1);
  354. TextDrawSetShadow(Galaxy3StartMenu[5], 0);
  355. TextDrawUseBox(Galaxy3StartMenu[5], 1);
  356. TextDrawBoxColor(Galaxy3StartMenu[5], -65281);
  357. TextDrawTextSize(Galaxy3StartMenu[5], 7.000000, 15.000000);
  358. TextDrawSetSelectable(Galaxy3StartMenu[5], 1);
  359.  
  360. Galaxy3StartMenu[6] = TextDrawCreate(515.000000, 369.000000, "Call~n~_");
  361. TextDrawAlignment(Galaxy3StartMenu[6], 2);
  362. TextDrawBackgroundColor(Galaxy3StartMenu[6], 255);
  363. TextDrawFont(Galaxy3StartMenu[6], 1);
  364. TextDrawLetterSize(Galaxy3StartMenu[6], 0.340000, 0.800000);
  365. TextDrawColor(Galaxy3StartMenu[6], 255);
  366. TextDrawSetOutline(Galaxy3StartMenu[6], 0);
  367. TextDrawSetProportional(Galaxy3StartMenu[6], 1);
  368. TextDrawSetShadow(Galaxy3StartMenu[6], 0);
  369. TextDrawUseBox(Galaxy3StartMenu[6], 1);
  370. TextDrawBoxColor(Galaxy3StartMenu[6], 16711935);
  371. TextDrawTextSize(Galaxy3StartMenu[6], 7.000000, 15.000000);
  372. TextDrawSetSelectable(Galaxy3StartMenu[6], 1);
  373.  
  374. Galaxy3StartMenu[7] = TextDrawCreate(610.000000, 189.000000, "_");
  375. TextDrawBackgroundColor(Galaxy3StartMenu[7], 255);
  376. TextDrawFont(Galaxy3StartMenu[7], 1);
  377. TextDrawLetterSize(Galaxy3StartMenu[7], 0.500000, 0.499998);
  378. TextDrawColor(Galaxy3StartMenu[7], -1);
  379. TextDrawSetOutline(Galaxy3StartMenu[7], 0);
  380. TextDrawSetProportional(Galaxy3StartMenu[7], 1);
  381. TextDrawSetShadow(Galaxy3StartMenu[7], 1);
  382. TextDrawUseBox(Galaxy3StartMenu[7], 1);
  383. TextDrawBoxColor(Galaxy3StartMenu[7], 842150655);
  384. TextDrawTextSize(Galaxy3StartMenu[7], 499.000000, 10.000000);
  385. TextDrawSetSelectable(Galaxy3StartMenu[7], 0);
  386.  
  387. Galaxy3StartMenu[8] = TextDrawCreate(578.000000, 188.000000, "00:00");
  388. TextDrawBackgroundColor(Galaxy3StartMenu[8], 255);
  389. TextDrawFont(Galaxy3StartMenu[8], 1);
  390. TextDrawLetterSize(Galaxy3StartMenu[8], 0.289999, 0.699998);
  391. TextDrawColor(Galaxy3StartMenu[8], -1);
  392. TextDrawSetOutline(Galaxy3StartMenu[8], 0);
  393. TextDrawSetProportional(Galaxy3StartMenu[8], 1);
  394. TextDrawSetShadow(Galaxy3StartMenu[8], 0);
  395. TextDrawSetSelectable(Galaxy3StartMenu[8], 0);
  396.  
  397. Galaxy3StartMenu[9] = TextDrawCreate(504.000000, 188.000000, "_");
  398. TextDrawBackgroundColor(Galaxy3StartMenu[9], 255);
  399. TextDrawFont(Galaxy3StartMenu[9], 1);
  400. TextDrawLetterSize(Galaxy3StartMenu[9], 0.289999, 0.699998);
  401. TextDrawColor(Galaxy3StartMenu[9], -1);
  402. TextDrawSetOutline(Galaxy3StartMenu[9], 0);
  403. TextDrawSetProportional(Galaxy3StartMenu[9], 1);
  404. TextDrawSetShadow(Galaxy3StartMenu[9], 0);
  405. TextDrawSetSelectable(Galaxy3StartMenu[9], 0);
  406.  
  407. Galaxy3StartMenu[10] = TextDrawCreate(571.000000, 188.000000, "I");
  408. TextDrawBackgroundColor(Galaxy3StartMenu[10], 255);
  409. TextDrawFont(Galaxy3StartMenu[10], 1);
  410. TextDrawLetterSize(Galaxy3StartMenu[10], 0.539999, 0.699998);
  411. TextDrawColor(Galaxy3StartMenu[10], 16711935);
  412. TextDrawSetOutline(Galaxy3StartMenu[10], 0);
  413. TextDrawSetProportional(Galaxy3StartMenu[10], 1);
  414. TextDrawSetShadow(Galaxy3StartMenu[10], 0);
  415. TextDrawSetSelectable(Galaxy3StartMenu[10], 0);
  416. //
  417. Galaxy3SMainMenu[0] = TextDrawCreate(503.000000, 198.000000, "_");
  418. TextDrawBackgroundColor(Galaxy3SMainMenu[0], 255);
  419. TextDrawFont(Galaxy3SMainMenu[0], 1);
  420. TextDrawLetterSize(Galaxy3SMainMenu[0], 0.500000, 21.300004);
  421. TextDrawColor(Galaxy3SMainMenu[0], -1);
  422. TextDrawSetOutline(Galaxy3SMainMenu[0], 0);
  423. TextDrawSetProportional(Galaxy3SMainMenu[0], 1);
  424. TextDrawSetShadow(Galaxy3SMainMenu[0], 1);
  425. TextDrawUseBox(Galaxy3SMainMenu[0], 1);
  426. TextDrawBoxColor(Galaxy3SMainMenu[0], 1347440895);
  427. TextDrawTextSize(Galaxy3SMainMenu[0], 606.000000, 0.000000);
  428. TextDrawSetSelectable(Galaxy3SMainMenu[0], 0);
  429.  
  430. Galaxy3SMainMenu[1] = TextDrawCreate(529.000000, 211.000000, "CALCULATOR");
  431. TextDrawAlignment(Galaxy3SMainMenu[1], 2);
  432. TextDrawBackgroundColor(Galaxy3SMainMenu[1], 255);
  433. TextDrawFont(Galaxy3SMainMenu[1], 2);
  434. TextDrawLetterSize(Galaxy3SMainMenu[1], 0.140000, 1.000000);
  435. TextDrawColor(Galaxy3SMainMenu[1], -1);
  436. TextDrawSetOutline(Galaxy3SMainMenu[1], 0);
  437. TextDrawSetProportional(Galaxy3SMainMenu[1], 1);
  438. TextDrawSetShadow(Galaxy3SMainMenu[1], 0);
  439. TextDrawUseBox(Galaxy3SMainMenu[1], 1);
  440. TextDrawBoxColor(Galaxy3SMainMenu[1], -16776961);
  441. TextDrawTextSize(Galaxy3SMainMenu[1], 10.000000, 42.000000);
  442. TextDrawSetSelectable(Galaxy3SMainMenu[1], 1);
  443.  
  444. Galaxy3SMainMenu[2] = TextDrawCreate(579.000000, 211.000000, "CLOCK");
  445. TextDrawAlignment(Galaxy3SMainMenu[2], 2);
  446. TextDrawBackgroundColor(Galaxy3SMainMenu[2], 255);
  447. TextDrawFont(Galaxy3SMainMenu[2], 2);
  448. TextDrawLetterSize(Galaxy3SMainMenu[2], 0.140000, 1.000000);
  449. TextDrawColor(Galaxy3SMainMenu[2], -1);
  450. TextDrawSetOutline(Galaxy3SMainMenu[2], 0);
  451. TextDrawSetProportional(Galaxy3SMainMenu[2], 1);
  452. TextDrawSetShadow(Galaxy3SMainMenu[2], 0);
  453. TextDrawUseBox(Galaxy3SMainMenu[2], 1);
  454. TextDrawBoxColor(Galaxy3SMainMenu[2], 16711935);
  455. TextDrawTextSize(Galaxy3SMainMenu[2], 10.000000, 42.000000);
  456. TextDrawSetSelectable(Galaxy3SMainMenu[2], 1);
  457.  
  458. Galaxy3SMainMenu[3] = TextDrawCreate(579.000000, 234.000000, "CAMERA");
  459. TextDrawAlignment(Galaxy3SMainMenu[3], 2);
  460. TextDrawBackgroundColor(Galaxy3SMainMenu[3], 255);
  461. TextDrawFont(Galaxy3SMainMenu[3], 2);
  462. TextDrawLetterSize(Galaxy3SMainMenu[3], 0.140000, 1.000000);
  463. TextDrawColor(Galaxy3SMainMenu[3], -1);
  464. TextDrawSetOutline(Galaxy3SMainMenu[3], 0);
  465. TextDrawSetProportional(Galaxy3SMainMenu[3], 1);
  466. TextDrawSetShadow(Galaxy3SMainMenu[3], 0);
  467. TextDrawUseBox(Galaxy3SMainMenu[3], 1);
  468. TextDrawBoxColor(Galaxy3SMainMenu[3], 65535);
  469. TextDrawTextSize(Galaxy3SMainMenu[3], 10.000000, 42.000000);
  470. TextDrawSetSelectable(Galaxy3SMainMenu[3], 1);
  471.  
  472. /*Galaxy3SMainMenu[4] = TextDrawCreate(529.000000, 234.000000, "GALLERY");
  473. TextDrawAlignment(Galaxy3SMainMenu[4], 2);
  474. TextDrawBackgroundColor(Galaxy3SMainMenu[4], 255);
  475. TextDrawFont(Galaxy3SMainMenu[4], 2);
  476. TextDrawLetterSize(Galaxy3SMainMenu[4], 0.140000, 1.000000);
  477. TextDrawColor(Galaxy3SMainMenu[4], -16776961);
  478. TextDrawSetOutline(Galaxy3SMainMenu[4], 0);
  479. TextDrawSetProportional(Galaxy3SMainMenu[4], 1);
  480. TextDrawSetShadow(Galaxy3SMainMenu[4], 0);
  481. TextDrawUseBox(Galaxy3SMainMenu[4], 1);
  482. TextDrawBoxColor(Galaxy3SMainMenu[4], -65281);
  483. TextDrawTextSize(Galaxy3SMainMenu[4], 10.000000, 42.000000);
  484. TextDrawSetSelectable(Galaxy3SMainMenu[4], 1);*/
  485.  
  486. Galaxy3SMainMenu[4] = TextDrawCreate(529.000000, 234.000000, "VOICEMAIL");
  487. TextDrawAlignment(Galaxy3SMainMenu[4], 2);
  488. TextDrawBackgroundColor(Galaxy3SMainMenu[4], 255);
  489. TextDrawFont(Galaxy3SMainMenu[4], 2);
  490. TextDrawLetterSize(Galaxy3SMainMenu[4], 0.140000, 1.000000);
  491. TextDrawColor(Galaxy3SMainMenu[4], -16776961);
  492. TextDrawSetOutline(Galaxy3SMainMenu[4], 0);
  493. TextDrawSetProportional(Galaxy3SMainMenu[4], 1);
  494. TextDrawSetShadow(Galaxy3SMainMenu[4], 0);
  495. TextDrawUseBox(Galaxy3SMainMenu[4], 1);
  496. TextDrawBoxColor(Galaxy3SMainMenu[4], -65281);
  497. TextDrawTextSize(Galaxy3SMainMenu[4], 10.000000, 42.000000);
  498. TextDrawSetSelectable(Galaxy3SMainMenu[4], 1);
  499.  
  500. Galaxy3SMainMenu[5] = TextDrawCreate(529.000000, 258.000000, "MAPS");
  501. TextDrawAlignment(Galaxy3SMainMenu[5], 2);
  502. TextDrawBackgroundColor(Galaxy3SMainMenu[5], 255);
  503. TextDrawFont(Galaxy3SMainMenu[5], 2);
  504. TextDrawLetterSize(Galaxy3SMainMenu[5], 0.140000, 1.000000);
  505. TextDrawColor(Galaxy3SMainMenu[5], -1);
  506. TextDrawSetOutline(Galaxy3SMainMenu[5], 0);
  507. TextDrawSetProportional(Galaxy3SMainMenu[5], 1);
  508. TextDrawSetShadow(Galaxy3SMainMenu[5], 0);
  509. TextDrawUseBox(Galaxy3SMainMenu[5], 1);
  510. TextDrawBoxColor(Galaxy3SMainMenu[5], -16711681);
  511. TextDrawTextSize(Galaxy3SMainMenu[5], 10.000000, 42.000000);
  512. TextDrawSetSelectable(Galaxy3SMainMenu[5], 1);
  513.  
  514. Galaxy3SMainMenu[6] = TextDrawCreate(580.000000, 258.000000, "WEATHER");
  515. TextDrawAlignment(Galaxy3SMainMenu[6], 2);
  516. TextDrawBackgroundColor(Galaxy3SMainMenu[6], 255);
  517. TextDrawFont(Galaxy3SMainMenu[6], 2);
  518. TextDrawLetterSize(Galaxy3SMainMenu[6], 0.140000, 1.000000);
  519. TextDrawColor(Galaxy3SMainMenu[6], -1);
  520. TextDrawSetOutline(Galaxy3SMainMenu[6], 0);
  521. TextDrawSetProportional(Galaxy3SMainMenu[6], 1);
  522. TextDrawSetShadow(Galaxy3SMainMenu[6], 0);
  523. TextDrawUseBox(Galaxy3SMainMenu[6], 1);
  524. TextDrawBoxColor(Galaxy3SMainMenu[6], 16777215);
  525. TextDrawTextSize(Galaxy3SMainMenu[6], 10.000000, 42.000000);
  526. TextDrawSetSelectable(Galaxy3SMainMenu[6], 1);
  527.  
  528. Galaxy3SMainMenu[7] = TextDrawCreate(529.000000, 281.000000, "RADIO");
  529. TextDrawAlignment(Galaxy3SMainMenu[7], 2);
  530. TextDrawBackgroundColor(Galaxy3SMainMenu[7], 255);
  531. TextDrawFont(Galaxy3SMainMenu[7], 2);
  532. TextDrawLetterSize(Galaxy3SMainMenu[7], 0.140000, 1.000000);
  533. TextDrawColor(Galaxy3SMainMenu[7], 255);
  534. TextDrawSetOutline(Galaxy3SMainMenu[7], 0);
  535. TextDrawSetProportional(Galaxy3SMainMenu[7], 1);
  536. TextDrawSetShadow(Galaxy3SMainMenu[7], 0);
  537. TextDrawUseBox(Galaxy3SMainMenu[7], 1);
  538. TextDrawBoxColor(Galaxy3SMainMenu[7], -1);
  539. TextDrawTextSize(Galaxy3SMainMenu[7], 10.000000, 42.000000);
  540. TextDrawSetSelectable(Galaxy3SMainMenu[7], 1);
  541.  
  542. Galaxy3SMainMenu[8] = TextDrawCreate(580.000000, 281.000000, "LATITUDE");
  543. TextDrawAlignment(Galaxy3SMainMenu[8], 2);
  544. TextDrawBackgroundColor(Galaxy3SMainMenu[8], 255);
  545. TextDrawFont(Galaxy3SMainMenu[8], 2);
  546. TextDrawLetterSize(Galaxy3SMainMenu[8], 0.140000, 1.000000);
  547. TextDrawColor(Galaxy3SMainMenu[8], -1);
  548. TextDrawSetOutline(Galaxy3SMainMenu[8], 0);
  549. TextDrawSetProportional(Galaxy3SMainMenu[8], 1);
  550. TextDrawSetShadow(Galaxy3SMainMenu[8], 0);
  551. TextDrawUseBox(Galaxy3SMainMenu[8], 1);
  552. TextDrawBoxColor(Galaxy3SMainMenu[8], 255);
  553. TextDrawTextSize(Galaxy3SMainMenu[8], 10.000000, 42.000000);
  554. TextDrawSetSelectable(Galaxy3SMainMenu[8], 1);
  555.  
  556. Galaxy3SMainMenu[9] = TextDrawCreate(529.000000, 303.000000, "MUSIC");
  557. TextDrawAlignment(Galaxy3SMainMenu[9], 2);
  558. TextDrawBackgroundColor(Galaxy3SMainMenu[9], 255);
  559. TextDrawFont(Galaxy3SMainMenu[9], 2);
  560. TextDrawLetterSize(Galaxy3SMainMenu[9], 0.140000, 1.000000);
  561. TextDrawColor(Galaxy3SMainMenu[9], -1);
  562. TextDrawSetOutline(Galaxy3SMainMenu[9], 0);
  563. TextDrawSetProportional(Galaxy3SMainMenu[9], 1);
  564. TextDrawSetShadow(Galaxy3SMainMenu[9], 0);
  565. TextDrawUseBox(Galaxy3SMainMenu[9], 1);
  566. TextDrawBoxColor(Galaxy3SMainMenu[9], -16776961);
  567. TextDrawTextSize(Galaxy3SMainMenu[9], 10.000000, 42.000000);
  568. TextDrawSetSelectable(Galaxy3SMainMenu[9], 1);
  569.  
  570. Galaxy3SMainMenu[10] = TextDrawCreate(580.000000, 303.000000, "ADVERT");
  571. TextDrawAlignment(Galaxy3SMainMenu[10], 2);
  572. TextDrawBackgroundColor(Galaxy3SMainMenu[10], 255);
  573. TextDrawFont(Galaxy3SMainMenu[10], 2);
  574. TextDrawLetterSize(Galaxy3SMainMenu[10], 0.140000, 1.000000);
  575. TextDrawColor(Galaxy3SMainMenu[10], -1);
  576. TextDrawSetOutline(Galaxy3SMainMenu[10], 0);
  577. TextDrawSetProportional(Galaxy3SMainMenu[10], 1);
  578. TextDrawSetShadow(Galaxy3SMainMenu[10], 0);
  579. TextDrawUseBox(Galaxy3SMainMenu[10], 1);
  580. TextDrawBoxColor(Galaxy3SMainMenu[10], 16711935);
  581. TextDrawTextSize(Galaxy3SMainMenu[10], 10.000000, 42.000000);
  582. TextDrawSetSelectable(Galaxy3SMainMenu[10], 1);
  583.  
  584. Galaxy3SMainMenu[11] = TextDrawCreate(554.000000, 371.000000, "BACK");
  585. TextDrawAlignment(Galaxy3SMainMenu[11], 2);
  586. TextDrawBackgroundColor(Galaxy3SMainMenu[11], 255);
  587. TextDrawFont(Galaxy3SMainMenu[11], 1);
  588. TextDrawLetterSize(Galaxy3SMainMenu[11], 0.509999, 1.100000);
  589. TextDrawColor(Galaxy3SMainMenu[11], -1);
  590. TextDrawSetOutline(Galaxy3SMainMenu[11], 0);
  591. TextDrawSetProportional(Galaxy3SMainMenu[11], 1);
  592. TextDrawSetShadow(Galaxy3SMainMenu[11], 0);
  593. TextDrawUseBox(Galaxy3SMainMenu[11], 1);
  594. TextDrawBoxColor(Galaxy3SMainMenu[11], 255);
  595. TextDrawTextSize(Galaxy3SMainMenu[11], 15.000000, 94.000000);
  596. TextDrawSetSelectable(Galaxy3SMainMenu[11], 1);
  597.  
  598. //Calculator TD
  599. CalculatorTD[0] = TextDrawCreate(512.000000, 247.000000, "_");
  600. TextDrawBackgroundColor(CalculatorTD[0], 255);
  601. TextDrawFont(CalculatorTD[0], 1);
  602. TextDrawLetterSize(CalculatorTD[0], 0.500000, 2.599997);
  603. TextDrawColor(CalculatorTD[0], -1);
  604. TextDrawSetOutline(CalculatorTD[0], 0);
  605. TextDrawSetProportional(CalculatorTD[0], 1);
  606. TextDrawSetShadow(CalculatorTD[0], 1);
  607. TextDrawUseBox(CalculatorTD[0], 1);
  608. TextDrawBoxColor(CalculatorTD[0], 255);
  609. TextDrawTextSize(CalculatorTD[0], 595.000000, -20.000000);
  610. TextDrawSetSelectable(CalculatorTD[0], 0);
  611.  
  612. CalculatorTD[1] = TextDrawCreate(519.000000, 292.000000, "7");
  613. TextDrawAlignment(CalculatorTD[1], 2);
  614. TextDrawBackgroundColor(CalculatorTD[1], 255);
  615. TextDrawFont(CalculatorTD[1], 1);
  616. TextDrawLetterSize(CalculatorTD[1], 0.340000, 1.100000);
  617. TextDrawColor(CalculatorTD[1], -1);
  618. TextDrawSetOutline(CalculatorTD[1], 0);
  619. TextDrawSetProportional(CalculatorTD[1], 1);
  620. TextDrawSetShadow(CalculatorTD[1], 0);
  621. TextDrawUseBox(CalculatorTD[1], 1);
  622. TextDrawBoxColor(CalculatorTD[1], 255);
  623. TextDrawTextSize(CalculatorTD[1], 10.000000, 14.000000);
  624. TextDrawSetSelectable(CalculatorTD[1], 1);
  625.  
  626. CalculatorTD[2] = TextDrawCreate(543.000000, 292.000000, "8");
  627. TextDrawAlignment(CalculatorTD[2], 2);
  628. TextDrawBackgroundColor(CalculatorTD[2], 255);
  629. TextDrawFont(CalculatorTD[2], 1);
  630. TextDrawLetterSize(CalculatorTD[2], 0.340000, 1.100000);
  631. TextDrawColor(CalculatorTD[2], -1);
  632. TextDrawSetOutline(CalculatorTD[2], 0);
  633. TextDrawSetProportional(CalculatorTD[2], 1);
  634. TextDrawSetShadow(CalculatorTD[2], 0);
  635. TextDrawUseBox(CalculatorTD[2], 1);
  636. TextDrawBoxColor(CalculatorTD[2], 255);
  637. TextDrawTextSize(CalculatorTD[2], 10.000000, 14.000000);
  638. TextDrawSetSelectable(CalculatorTD[2], 1);
  639.  
  640. CalculatorTD[3] = TextDrawCreate(564.000000, 292.000000, "9");
  641. TextDrawAlignment(CalculatorTD[3], 2);
  642. TextDrawBackgroundColor(CalculatorTD[3], 255);
  643. TextDrawFont(CalculatorTD[3], 1);
  644. TextDrawLetterSize(CalculatorTD[3], 0.340000, 1.100000);
  645. TextDrawColor(CalculatorTD[3], -1);
  646. TextDrawSetOutline(CalculatorTD[3], 0);
  647. TextDrawSetProportional(CalculatorTD[3], 1);
  648. TextDrawSetShadow(CalculatorTD[3], 0);
  649. TextDrawUseBox(CalculatorTD[3], 1);
  650. TextDrawBoxColor(CalculatorTD[3], 255);
  651. TextDrawTextSize(CalculatorTD[3], 10.000000, 14.000000);
  652. TextDrawSetSelectable(CalculatorTD[3], 1);
  653.  
  654. CalculatorTD[4] = TextDrawCreate(588.000000, 292.000000, "/");
  655. TextDrawAlignment(CalculatorTD[4], 2);
  656. TextDrawBackgroundColor(CalculatorTD[4], 255);
  657. TextDrawFont(CalculatorTD[4], 1);
  658. TextDrawLetterSize(CalculatorTD[4], 0.340000, 1.100000);
  659. TextDrawColor(CalculatorTD[4], -1);
  660. TextDrawSetOutline(CalculatorTD[4], 0);
  661. TextDrawSetProportional(CalculatorTD[4], 1);
  662. TextDrawSetShadow(CalculatorTD[4], 0);
  663. TextDrawUseBox(CalculatorTD[4], 1);
  664. TextDrawBoxColor(CalculatorTD[4], 255);
  665. TextDrawTextSize(CalculatorTD[4], 10.000000, 14.000000);
  666. TextDrawSetSelectable(CalculatorTD[4], 1);
  667.  
  668. CalculatorTD[5] = TextDrawCreate(588.000000, 313.000000, "X");
  669. TextDrawAlignment(CalculatorTD[5], 2);
  670. TextDrawBackgroundColor(CalculatorTD[5], 255);
  671. TextDrawFont(CalculatorTD[5], 1);
  672. TextDrawLetterSize(CalculatorTD[5], 0.340000, 1.100000);
  673. TextDrawColor(CalculatorTD[5], -1);
  674. TextDrawSetOutline(CalculatorTD[5], 0);
  675. TextDrawSetProportional(CalculatorTD[5], 1);
  676. TextDrawSetShadow(CalculatorTD[5], 0);
  677. TextDrawUseBox(CalculatorTD[5], 1);
  678. TextDrawBoxColor(CalculatorTD[5], 255);
  679. TextDrawTextSize(CalculatorTD[5], 10.000000, 14.000000);
  680. TextDrawSetSelectable(CalculatorTD[5], 1);
  681.  
  682. CalculatorTD[6] = TextDrawCreate(588.000000, 334.000000, "-");
  683. TextDrawAlignment(CalculatorTD[6], 2);
  684. TextDrawBackgroundColor(CalculatorTD[6], 255);
  685. TextDrawFont(CalculatorTD[6], 1);
  686. TextDrawLetterSize(CalculatorTD[6], 0.340000, 1.100000);
  687. TextDrawColor(CalculatorTD[6], -1);
  688. TextDrawSetOutline(CalculatorTD[6], 0);
  689. TextDrawSetProportional(CalculatorTD[6], 1);
  690. TextDrawSetShadow(CalculatorTD[6], 0);
  691. TextDrawUseBox(CalculatorTD[6], 1);
  692. TextDrawBoxColor(CalculatorTD[6], 255);
  693. TextDrawTextSize(CalculatorTD[6], 10.000000, 14.000000);
  694. TextDrawSetSelectable(CalculatorTD[6], 1);
  695.  
  696. CalculatorTD[7] = TextDrawCreate(588.000000, 355.000000, "+");
  697. TextDrawAlignment(CalculatorTD[7], 2);
  698. TextDrawBackgroundColor(CalculatorTD[7], 255);
  699. TextDrawFont(CalculatorTD[7], 1);
  700. TextDrawLetterSize(CalculatorTD[7], 0.340000, 1.100000);
  701. TextDrawColor(CalculatorTD[7], -1);
  702. TextDrawSetOutline(CalculatorTD[7], 0);
  703. TextDrawSetProportional(CalculatorTD[7], 1);
  704. TextDrawSetShadow(CalculatorTD[7], 0);
  705. TextDrawUseBox(CalculatorTD[7], 1);
  706. TextDrawBoxColor(CalculatorTD[7], 255);
  707. TextDrawTextSize(CalculatorTD[7], 10.000000, 14.000000);
  708. TextDrawSetSelectable(CalculatorTD[7], 1);
  709.  
  710. CalculatorTD[8] = TextDrawCreate(564.000000, 313.000000, "6");
  711. TextDrawAlignment(CalculatorTD[8], 2);
  712. TextDrawBackgroundColor(CalculatorTD[8], 255);
  713. TextDrawFont(CalculatorTD[8], 1);
  714. TextDrawLetterSize(CalculatorTD[8], 0.340000, 1.100000);
  715. TextDrawColor(CalculatorTD[8], -1);
  716. TextDrawSetOutline(CalculatorTD[8], 0);
  717. TextDrawSetProportional(CalculatorTD[8], 1);
  718. TextDrawSetShadow(CalculatorTD[8], 0);
  719. TextDrawUseBox(CalculatorTD[8], 1);
  720. TextDrawBoxColor(CalculatorTD[8], 255);
  721. TextDrawTextSize(CalculatorTD[8], 10.000000, 14.000000);
  722. TextDrawSetSelectable(CalculatorTD[8], 1);
  723.  
  724. CalculatorTD[9] = TextDrawCreate(543.000000, 313.000000, "5");
  725. TextDrawAlignment(CalculatorTD[9], 2);
  726. TextDrawBackgroundColor(CalculatorTD[9], 255);
  727. TextDrawFont(CalculatorTD[9], 1);
  728. TextDrawLetterSize(CalculatorTD[9], 0.340000, 1.100000);
  729. TextDrawColor(CalculatorTD[9], -1);
  730. TextDrawSetOutline(CalculatorTD[9], 0);
  731. TextDrawSetProportional(CalculatorTD[9], 1);
  732. TextDrawSetShadow(CalculatorTD[9], 0);
  733. TextDrawUseBox(CalculatorTD[9], 1);
  734. TextDrawBoxColor(CalculatorTD[9], 255);
  735. TextDrawTextSize(CalculatorTD[9], 10.000000, 14.000000);
  736. TextDrawSetSelectable(CalculatorTD[9], 1);
  737.  
  738. CalculatorTD[10] = TextDrawCreate(519.000000, 313.000000, "4");
  739. TextDrawAlignment(CalculatorTD[10], 2);
  740. TextDrawBackgroundColor(CalculatorTD[10], 255);
  741. TextDrawFont(CalculatorTD[10], 1);
  742. TextDrawLetterSize(CalculatorTD[10], 0.340000, 1.100000);
  743. TextDrawColor(CalculatorTD[10], -1);
  744. TextDrawSetOutline(CalculatorTD[10], 0);
  745. TextDrawSetProportional(CalculatorTD[10], 1);
  746. TextDrawSetShadow(CalculatorTD[10], 0);
  747. TextDrawUseBox(CalculatorTD[10], 1);
  748. TextDrawBoxColor(CalculatorTD[10], 255);
  749. TextDrawTextSize(CalculatorTD[10], 10.000000, 14.000000);
  750. TextDrawSetSelectable(CalculatorTD[10], 1);
  751.  
  752. CalculatorTD[11] = TextDrawCreate(519.000000, 334.000000, "1");
  753. TextDrawAlignment(CalculatorTD[11], 2);
  754. TextDrawBackgroundColor(CalculatorTD[11], 255);
  755. TextDrawFont(CalculatorTD[11], 1);
  756. TextDrawLetterSize(CalculatorTD[11], 0.340000, 1.100000);
  757. TextDrawColor(CalculatorTD[11], -1);
  758. TextDrawSetOutline(CalculatorTD[11], 0);
  759. TextDrawSetProportional(CalculatorTD[11], 1);
  760. TextDrawSetShadow(CalculatorTD[11], 0);
  761. TextDrawUseBox(CalculatorTD[11], 1);
  762. TextDrawBoxColor(CalculatorTD[11], 255);
  763. TextDrawTextSize(CalculatorTD[11], 10.000000, 14.000000);
  764. TextDrawSetSelectable(CalculatorTD[11], 1);
  765.  
  766. CalculatorTD[12] = TextDrawCreate(543.000000, 334.000000, "2");
  767. TextDrawAlignment(CalculatorTD[12], 2);
  768. TextDrawBackgroundColor(CalculatorTD[12], 255);
  769. TextDrawFont(CalculatorTD[12], 1);
  770. TextDrawLetterSize(CalculatorTD[12], 0.340000, 1.100000);
  771. TextDrawColor(CalculatorTD[12], -1);
  772. TextDrawSetOutline(CalculatorTD[12], 0);
  773. TextDrawSetProportional(CalculatorTD[12], 1);
  774. TextDrawSetShadow(CalculatorTD[12], 0);
  775. TextDrawUseBox(CalculatorTD[12], 1);
  776. TextDrawBoxColor(CalculatorTD[12], 255);
  777. TextDrawTextSize(CalculatorTD[12], 10.000000, 14.000000);
  778. TextDrawSetSelectable(CalculatorTD[12], 1);
  779.  
  780. CalculatorTD[13] = TextDrawCreate(564.000000, 334.000000, "3");
  781. TextDrawAlignment(CalculatorTD[13], 2);
  782. TextDrawBackgroundColor(CalculatorTD[13], 255);
  783. TextDrawFont(CalculatorTD[13], 1);
  784. TextDrawLetterSize(CalculatorTD[13], 0.340000, 1.100000);
  785. TextDrawColor(CalculatorTD[13], -1);
  786. TextDrawSetOutline(CalculatorTD[13], 0);
  787. TextDrawSetProportional(CalculatorTD[13], 1);
  788. TextDrawSetShadow(CalculatorTD[13], 0);
  789. TextDrawUseBox(CalculatorTD[13], 1);
  790. TextDrawBoxColor(CalculatorTD[13], 255);
  791. TextDrawTextSize(CalculatorTD[13], 10.000000, 14.000000);
  792. TextDrawSetSelectable(CalculatorTD[13], 1);
  793.  
  794. CalculatorTD[14] = TextDrawCreate(519.000000, 355.000000, "0");
  795. TextDrawAlignment(CalculatorTD[14], 2);
  796. TextDrawBackgroundColor(CalculatorTD[14], 255);
  797. TextDrawFont(CalculatorTD[14], 1);
  798. TextDrawLetterSize(CalculatorTD[14], 0.340000, 1.100000);
  799. TextDrawColor(CalculatorTD[14], -1);
  800. TextDrawSetOutline(CalculatorTD[14], 0);
  801. TextDrawSetProportional(CalculatorTD[14], 1);
  802. TextDrawSetShadow(CalculatorTD[14], 0);
  803. TextDrawUseBox(CalculatorTD[14], 1);
  804. TextDrawBoxColor(CalculatorTD[14], 255);
  805. TextDrawTextSize(CalculatorTD[14], 10.000000, 14.000000);
  806. TextDrawSetSelectable(CalculatorTD[14], 1);
  807.  
  808. CalculatorTD[15] = TextDrawCreate(553.000000, 355.000000, "=");
  809. TextDrawAlignment(CalculatorTD[15], 2);
  810. TextDrawBackgroundColor(CalculatorTD[15], 255);
  811. TextDrawFont(CalculatorTD[15], 1);
  812. TextDrawLetterSize(CalculatorTD[15], 0.340000, 1.100000);
  813. TextDrawColor(CalculatorTD[15], -1);
  814. TextDrawSetOutline(CalculatorTD[15], 0);
  815. TextDrawSetProportional(CalculatorTD[15], 1);
  816. TextDrawSetShadow(CalculatorTD[15], 0);
  817. TextDrawUseBox(CalculatorTD[15], 1);
  818. TextDrawBoxColor(CalculatorTD[15], 255);
  819. TextDrawTextSize(CalculatorTD[15], 10.000000, 35.000000);
  820. TextDrawSetSelectable(CalculatorTD[15], 1);
  821.  
  822. CalculatorTD[16] = TextDrawCreate(554.000000, 209.000000, "CALCULATOR");
  823. TextDrawAlignment(CalculatorTD[16], 2);
  824. TextDrawBackgroundColor(CalculatorTD[16], 255);
  825. TextDrawFont(CalculatorTD[16], 2);
  826. TextDrawLetterSize(CalculatorTD[16], 0.310000, 1.300000);
  827. TextDrawColor(CalculatorTD[16], -16776961);
  828. TextDrawSetOutline(CalculatorTD[16], 0);
  829. TextDrawSetProportional(CalculatorTD[16], 1);
  830. TextDrawSetShadow(CalculatorTD[16], 0);
  831. TextDrawUseBox(CalculatorTD[16], 1);
  832. TextDrawBoxColor(CalculatorTD[16], 255);
  833. TextDrawTextSize(CalculatorTD[16], 602.000000, 92.000000);
  834. TextDrawSetSelectable(CalculatorTD[16], 0);
  835.  
  836. Galaxy3StartMenu[11] = TextDrawCreate(528.000000, 231.000000, "00/MON/00");
  837. TextDrawBackgroundColor(Galaxy3StartMenu[11], 255);
  838. TextDrawFont(Galaxy3StartMenu[11], 2);
  839. TextDrawLetterSize(Galaxy3StartMenu[11], 0.219999, 1.299998);
  840. TextDrawColor(Galaxy3StartMenu[11], -1);
  841. TextDrawSetOutline(Galaxy3StartMenu[11], 0);
  842. TextDrawSetProportional(Galaxy3StartMenu[11], 1);
  843. TextDrawSetShadow(Galaxy3StartMenu[11], 0);
  844. TextDrawSetSelectable(Galaxy3StartMenu[11], 0);
  845.  
  846. Galaxy3StartMenu[12] = TextDrawCreate(523.000000, 210.000000, "00:00");
  847. TextDrawBackgroundColor(Galaxy3StartMenu[12], 255);
  848. TextDrawFont(Galaxy3StartMenu[12], 2);
  849. TextDrawLetterSize(Galaxy3StartMenu[12], 0.559998, 2.599998);
  850. TextDrawColor(Galaxy3StartMenu[12], -1);
  851. TextDrawSetOutline(Galaxy3StartMenu[12], 0);
  852. TextDrawSetProportional(Galaxy3StartMenu[12], 1);
  853. TextDrawSetShadow(Galaxy3StartMenu[12], 0);
  854. TextDrawSetSelectable(Galaxy3StartMenu[12], 0);
  855.  
  856. //Gallery
  857. Galaxy3Gallery[0] = TextDrawCreate(506.000000, 231.000000, "loadsc2:loadsc2");
  858. TextDrawAlignment(Galaxy3Gallery[0], 2);
  859. TextDrawBackgroundColor(Galaxy3Gallery[0], 255);
  860. TextDrawFont(Galaxy3Gallery[0], 4);
  861. TextDrawLetterSize(Galaxy3Gallery[0], 0.500000, 1.000000);
  862. TextDrawColor(Galaxy3Gallery[0], -1);
  863. TextDrawSetOutline(Galaxy3Gallery[0], 0);
  864. TextDrawSetProportional(Galaxy3Gallery[0], 1);
  865. TextDrawSetShadow(Galaxy3Gallery[0], 1);
  866. TextDrawUseBox(Galaxy3Gallery[0], 1);
  867. TextDrawBoxColor(Galaxy3Gallery[0], 255);
  868. TextDrawTextSize(Galaxy3Gallery[0], 46.000000, 39.000000);
  869. TextDrawSetSelectable(Galaxy3Gallery[0], 1);
  870.  
  871. Galaxy3Gallery[1] = TextDrawCreate(557.000000, 231.000000, "loadsc11:loadsc11");
  872. TextDrawAlignment(Galaxy3Gallery[1], 2);
  873. TextDrawBackgroundColor(Galaxy3Gallery[1], 255);
  874. TextDrawFont(Galaxy3Gallery[1], 4);
  875. TextDrawLetterSize(Galaxy3Gallery[1], 0.500000, 1.000000);
  876. TextDrawColor(Galaxy3Gallery[1], -1);
  877. TextDrawSetOutline(Galaxy3Gallery[1], 0);
  878. TextDrawSetProportional(Galaxy3Gallery[1], 1);
  879. TextDrawSetShadow(Galaxy3Gallery[1], 1);
  880. TextDrawUseBox(Galaxy3Gallery[1], 1);
  881. TextDrawBoxColor(Galaxy3Gallery[1], 255);
  882. TextDrawTextSize(Galaxy3Gallery[1], 46.000000, 39.000000);
  883. TextDrawSetSelectable(Galaxy3Gallery[1], 1);
  884.  
  885. Galaxy3Gallery[2] = TextDrawCreate(557.000000, 277.000000, "loadsc12:loadsc12");
  886. TextDrawAlignment(Galaxy3Gallery[2], 2);
  887. TextDrawBackgroundColor(Galaxy3Gallery[2], 255);
  888. TextDrawFont(Galaxy3Gallery[2], 4);
  889. TextDrawLetterSize(Galaxy3Gallery[2], 0.500000, 1.000000);
  890. TextDrawColor(Galaxy3Gallery[2], -1);
  891. TextDrawSetOutline(Galaxy3Gallery[2], 0);
  892. TextDrawSetProportional(Galaxy3Gallery[2], 1);
  893. TextDrawSetShadow(Galaxy3Gallery[2], 1);
  894. TextDrawUseBox(Galaxy3Gallery[2], 1);
  895. TextDrawBoxColor(Galaxy3Gallery[2], 255);
  896. TextDrawTextSize(Galaxy3Gallery[2], 46.000000, 39.000000);
  897. TextDrawSetSelectable(Galaxy3Gallery[2], 1);
  898.  
  899. Galaxy3Gallery[3] = TextDrawCreate(506.000000, 277.000000, "loadsc3:loadsc3");
  900. TextDrawAlignment(Galaxy3Gallery[3], 2);
  901. TextDrawBackgroundColor(Galaxy3Gallery[3], 255);
  902. TextDrawFont(Galaxy3Gallery[3], 4);
  903. TextDrawLetterSize(Galaxy3Gallery[3], 0.500000, 1.000000);
  904. TextDrawColor(Galaxy3Gallery[3], -1);
  905. TextDrawSetOutline(Galaxy3Gallery[3], 0);
  906. TextDrawSetProportional(Galaxy3Gallery[3], 1);
  907. TextDrawSetShadow(Galaxy3Gallery[3], 1);
  908. TextDrawUseBox(Galaxy3Gallery[3], 1);
  909. TextDrawBoxColor(Galaxy3Gallery[3], 255);
  910. TextDrawTextSize(Galaxy3Gallery[3], 46.000000, 39.000000);
  911. TextDrawSetSelectable(Galaxy3Gallery[3], 1);
  912.  
  913. Galaxy3Gallery[4] = TextDrawCreate(506.000000, 325.000000, "loadsc4:loadsc4");
  914. TextDrawAlignment(Galaxy3Gallery[4], 2);
  915. TextDrawBackgroundColor(Galaxy3Gallery[4], 255);
  916. TextDrawFont(Galaxy3Gallery[4], 4);
  917. TextDrawLetterSize(Galaxy3Gallery[4], 0.500000, 1.000000);
  918. TextDrawColor(Galaxy3Gallery[4], -1);
  919. TextDrawSetOutline(Galaxy3Gallery[4], 0);
  920. TextDrawSetProportional(Galaxy3Gallery[4], 1);
  921. TextDrawSetShadow(Galaxy3Gallery[4], 1);
  922. TextDrawUseBox(Galaxy3Gallery[4], 1);
  923. TextDrawBoxColor(Galaxy3Gallery[4], 255);
  924. TextDrawTextSize(Galaxy3Gallery[4], 46.000000, 39.000000);
  925. TextDrawSetSelectable(Galaxy3Gallery[4], 1);
  926.  
  927. Galaxy3Gallery[5] = TextDrawCreate(557.000000, 325.000000, "loadsc7:loadsc7");
  928. TextDrawAlignment(Galaxy3Gallery[5], 2);
  929. TextDrawBackgroundColor(Galaxy3Gallery[5], 255);
  930. TextDrawFont(Galaxy3Gallery[5], 4);
  931. TextDrawLetterSize(Galaxy3Gallery[5], 0.500000, 1.000000);
  932. TextDrawColor(Galaxy3Gallery[5], -1);
  933. TextDrawSetOutline(Galaxy3Gallery[5], 0);
  934. TextDrawSetProportional(Galaxy3Gallery[5], 1);
  935. TextDrawSetShadow(Galaxy3Gallery[5], 1);
  936. TextDrawUseBox(Galaxy3Gallery[5], 1);
  937. TextDrawBoxColor(Galaxy3Gallery[5], 255);
  938. TextDrawTextSize(Galaxy3Gallery[5], 46.000000, 39.000000);
  939. TextDrawSetSelectable(Galaxy3Gallery[5], 1);
  940.  
  941.  
  942. Galaxy3Gallery[6] = TextDrawCreate(506.000000, 231.000000, "loadsc2:loadsc2");
  943. TextDrawAlignment(Galaxy3Gallery[6], 2);
  944. TextDrawBackgroundColor(Galaxy3Gallery[6], 255);
  945. TextDrawFont(Galaxy3Gallery[6], 4);
  946. TextDrawLetterSize(Galaxy3Gallery[6], 0.500000, 1.000000);
  947. TextDrawColor(Galaxy3Gallery[6], -1);
  948. TextDrawSetOutline(Galaxy3Gallery[6], 0);
  949. TextDrawSetProportional(Galaxy3Gallery[6], 1);
  950. TextDrawSetShadow(Galaxy3Gallery[6], 1);
  951. TextDrawUseBox(Galaxy3Gallery[6], 1);
  952. TextDrawBoxColor(Galaxy3Gallery[6], 255);
  953. TextDrawTextSize(Galaxy3Gallery[6], 97.000000, 133.000000);
  954. TextDrawSetSelectable(Galaxy3Gallery[6], 1);
  955.  
  956. Galaxy3Gallery[7] = TextDrawCreate(506.000000, 231.000000, "loadsc11:loadsc11");
  957. TextDrawAlignment(Galaxy3Gallery[7], 2);
  958. TextDrawBackgroundColor(Galaxy3Gallery[7], 255);
  959. TextDrawFont(Galaxy3Gallery[7], 4);
  960. TextDrawLetterSize(Galaxy3Gallery[7], 0.500000, 1.000000);
  961. TextDrawColor(Galaxy3Gallery[7], -1);
  962. TextDrawSetOutline(Galaxy3Gallery[7], 0);
  963. TextDrawSetProportional(Galaxy3Gallery[7], 1);
  964. TextDrawSetShadow(Galaxy3Gallery[7], 1);
  965. TextDrawUseBox(Galaxy3Gallery[7], 1);
  966. TextDrawBoxColor(Galaxy3Gallery[7], 255);
  967. TextDrawTextSize(Galaxy3Gallery[7], 97.000000, 133.000000);
  968. TextDrawSetSelectable(Galaxy3Gallery[7], 1);
  969.  
  970. Galaxy3Gallery[8] = TextDrawCreate(506.000000, 231.000000, "loadsc12:loadsc12");
  971. TextDrawAlignment(Galaxy3Gallery[8], 2);
  972. TextDrawBackgroundColor(Galaxy3Gallery[8], 255);
  973. TextDrawFont(Galaxy3Gallery[8], 4);
  974. TextDrawLetterSize(Galaxy3Gallery[8], 0.500000, 1.000000);
  975. TextDrawColor(Galaxy3Gallery[8], -1);
  976. TextDrawSetOutline(Galaxy3Gallery[8], 0);
  977. TextDrawSetProportional(Galaxy3Gallery[8], 1);
  978. TextDrawSetShadow(Galaxy3Gallery[8], 1);
  979. TextDrawUseBox(Galaxy3Gallery[8], 1);
  980. TextDrawBoxColor(Galaxy3Gallery[8], 255);
  981. TextDrawTextSize(Galaxy3Gallery[8], 97.000000, 133.000000);
  982. TextDrawSetSelectable(Galaxy3Gallery[8], 1);
  983.  
  984. Galaxy3Gallery[9] = TextDrawCreate(506.000000, 231.000000, "loadsc3:loadsc3");
  985. TextDrawAlignment(Galaxy3Gallery[9], 2);
  986. TextDrawBackgroundColor(Galaxy3Gallery[9], 255);
  987. TextDrawFont(Galaxy3Gallery[9], 4);
  988. TextDrawLetterSize(Galaxy3Gallery[9], 0.500000, 1.000000);
  989. TextDrawColor(Galaxy3Gallery[9], -1);
  990. TextDrawSetOutline(Galaxy3Gallery[9], 0);
  991. TextDrawSetProportional(Galaxy3Gallery[9], 1);
  992. TextDrawSetShadow(Galaxy3Gallery[9], 1);
  993. TextDrawUseBox(Galaxy3Gallery[9], 1);
  994. TextDrawBoxColor(Galaxy3Gallery[9], 255);
  995. TextDrawTextSize(Galaxy3Gallery[9], 97.000000, 133.000000);
  996. TextDrawSetSelectable(Galaxy3Gallery[9], 1);
  997.  
  998. Galaxy3Gallery[10] = TextDrawCreate(506.000000, 231.000000, "loadsc4:loadsc4");
  999. TextDrawAlignment(Galaxy3Gallery[10], 2);
  1000. TextDrawBackgroundColor(Galaxy3Gallery[10], 255);
  1001. TextDrawFont(Galaxy3Gallery[10], 4);
  1002. TextDrawLetterSize(Galaxy3Gallery[10], 0.500000, 1.000000);
  1003. TextDrawColor(Galaxy3Gallery[10], -1);
  1004. TextDrawSetOutline(Galaxy3Gallery[10], 0);
  1005. TextDrawSetProportional(Galaxy3Gallery[10], 1);
  1006. TextDrawSetShadow(Galaxy3Gallery[10], 1);
  1007. TextDrawUseBox(Galaxy3Gallery[10], 1);
  1008. TextDrawBoxColor(Galaxy3Gallery[10], 255);
  1009. TextDrawTextSize(Galaxy3Gallery[10], 97.000000, 133.000000);
  1010. TextDrawSetSelectable(Galaxy3Gallery[10], 1);
  1011.  
  1012. Galaxy3Gallery[11] = TextDrawCreate(506.000000, 231.000000, "loadsc7:loadsc7");
  1013. TextDrawAlignment(Galaxy3Gallery[11], 2);
  1014. TextDrawBackgroundColor(Galaxy3Gallery[11], 255);
  1015. TextDrawFont(Galaxy3Gallery[11], 4);
  1016. TextDrawLetterSize(Galaxy3Gallery[11], 0.500000, 1.000000);
  1017. TextDrawColor(Galaxy3Gallery[11], -1);
  1018. TextDrawSetOutline(Galaxy3Gallery[11], 0);
  1019. TextDrawSetProportional(Galaxy3Gallery[11], 1);
  1020. TextDrawSetShadow(Galaxy3Gallery[11], 1);
  1021. TextDrawUseBox(Galaxy3Gallery[11], 1);
  1022. TextDrawBoxColor(Galaxy3Gallery[11], 255);
  1023. TextDrawTextSize(Galaxy3Gallery[11], 97.000000, 133.000000);
  1024. TextDrawSetSelectable(Galaxy3Gallery[11], 1);
  1025.  
  1026. Galaxy3Gallery[12] = TextDrawCreate(554.000000, 209.000000, "GALLERY");
  1027. TextDrawAlignment(Galaxy3Gallery[12], 2);
  1028. TextDrawBackgroundColor(Galaxy3Gallery[12], 255);
  1029. TextDrawFont(Galaxy3Gallery[12], 2);
  1030. TextDrawLetterSize(Galaxy3Gallery[12], 0.310000, 1.300000);
  1031. TextDrawColor(Galaxy3Gallery[12], -16776961);
  1032. TextDrawSetOutline(Galaxy3Gallery[12], 0);
  1033. TextDrawSetProportional(Galaxy3Gallery[12], 1);
  1034. TextDrawSetShadow(Galaxy3Gallery[12], 0);
  1035. TextDrawUseBox(Galaxy3Gallery[12], 1);
  1036. TextDrawBoxColor(Galaxy3Gallery[12], 255);
  1037. TextDrawTextSize(Galaxy3Gallery[12], 602.000000, 92.000000);
  1038. TextDrawSetSelectable(Galaxy3Gallery[12], 0);
  1039.  
  1040. //Camera
  1041. Galaxy3Camera[0] = TextDrawCreate(493.000000, 156.000000, "hud:radardisc");
  1042. TextDrawBackgroundColor(Galaxy3Camera[0], 255);
  1043. TextDrawFont(Galaxy3Camera[0], 4);
  1044. TextDrawLetterSize(Galaxy3Camera[0], 0.500000, 1.000000);
  1045. TextDrawColor(Galaxy3Camera[0], -1);
  1046. TextDrawSetOutline(Galaxy3Camera[0], 0);
  1047. TextDrawSetProportional(Galaxy3Camera[0], 1);
  1048. TextDrawSetShadow(Galaxy3Camera[0], 1);
  1049. TextDrawUseBox(Galaxy3Camera[0], 1);
  1050. TextDrawBoxColor(Galaxy3Camera[0], 255);
  1051. TextDrawTextSize(Galaxy3Camera[0], 27.000000, 33.000000);
  1052. TextDrawSetSelectable(Galaxy3Camera[0], 0);
  1053.  
  1054. Galaxy3Camera[1] = TextDrawCreate(493.000000, 423.000000, "hud:radardisc");
  1055. TextDrawBackgroundColor(Galaxy3Camera[1], 255);
  1056. TextDrawFont(Galaxy3Camera[1], 4);
  1057. TextDrawLetterSize(Galaxy3Camera[1], 0.500000, 1.000000);
  1058. TextDrawColor(Galaxy3Camera[1], -1);
  1059. TextDrawSetOutline(Galaxy3Camera[1], 0);
  1060. TextDrawSetProportional(Galaxy3Camera[1], 1);
  1061. TextDrawSetShadow(Galaxy3Camera[1], 1);
  1062. TextDrawUseBox(Galaxy3Camera[1], 1);
  1063. TextDrawBoxColor(Galaxy3Camera[1], 255);
  1064. TextDrawTextSize(Galaxy3Camera[1], 27.000000, -33.000000);
  1065. TextDrawSetSelectable(Galaxy3Camera[1], 0);
  1066.  
  1067. Galaxy3Camera[2] = TextDrawCreate(615.000000, 423.000000, "hud:radardisc");
  1068. TextDrawBackgroundColor(Galaxy3Camera[2], 255);
  1069. TextDrawFont(Galaxy3Camera[2], 4);
  1070. TextDrawLetterSize(Galaxy3Camera[2], 0.500000, 1.000000);
  1071. TextDrawColor(Galaxy3Camera[2], -1);
  1072. TextDrawSetOutline(Galaxy3Camera[2], 0);
  1073. TextDrawSetProportional(Galaxy3Camera[2], 1);
  1074. TextDrawSetShadow(Galaxy3Camera[2], 1);
  1075. TextDrawUseBox(Galaxy3Camera[2], 1);
  1076. TextDrawBoxColor(Galaxy3Camera[2], 255);
  1077. TextDrawTextSize(Galaxy3Camera[2], -27.000000, -33.000000);
  1078. TextDrawSetSelectable(Galaxy3Camera[2], 0);
  1079.  
  1080. Galaxy3Camera[3] = TextDrawCreate(615.000000, 156.000000, "hud:radardisc");
  1081. TextDrawBackgroundColor(Galaxy3Camera[3], 255);
  1082. TextDrawFont(Galaxy3Camera[3], 4);
  1083. TextDrawLetterSize(Galaxy3Camera[3], 0.500000, 1.000000);
  1084. TextDrawColor(Galaxy3Camera[3], -1);
  1085. TextDrawSetOutline(Galaxy3Camera[3], 0);
  1086. TextDrawSetProportional(Galaxy3Camera[3], 1);
  1087. TextDrawSetShadow(Galaxy3Camera[3], 1);
  1088. TextDrawUseBox(Galaxy3Camera[3], 1);
  1089. TextDrawBoxColor(Galaxy3Camera[3], 255);
  1090. TextDrawTextSize(Galaxy3Camera[3], -27.000000, 33.000000);
  1091. TextDrawSetSelectable(Galaxy3Camera[3], 0);
  1092.  
  1093. Galaxy3Camera[4] = TextDrawCreate(503.000000, 191.000000, "_");
  1094. TextDrawBackgroundColor(Galaxy3Camera[4], 255);
  1095. TextDrawFont(Galaxy3Camera[4], 1);
  1096. TextDrawLetterSize(Galaxy3Camera[4], 0.500000, 22.200000);
  1097. TextDrawColor(Galaxy3Camera[4], -1);
  1098. TextDrawSetOutline(Galaxy3Camera[4], 0);
  1099. TextDrawSetProportional(Galaxy3Camera[4], 1);
  1100. TextDrawSetShadow(Galaxy3Camera[4], 1);
  1101. TextDrawUseBox(Galaxy3Camera[4], 1);
  1102. TextDrawBoxColor(Galaxy3Camera[4], 255);
  1103. TextDrawTextSize(Galaxy3Camera[4], 491.000000, 0.000000);
  1104. TextDrawSetSelectable(Galaxy3Camera[4], 0);
  1105.  
  1106. Galaxy3Camera[5] = TextDrawCreate(591.000000, 158.000000, "_");
  1107. TextDrawBackgroundColor(Galaxy3Camera[5], 255);
  1108. TextDrawFont(Galaxy3Camera[5], 1);
  1109. TextDrawLetterSize(Galaxy3Camera[5], 0.500000, 3.000004);
  1110. TextDrawColor(Galaxy3Camera[5], -1);
  1111. TextDrawSetOutline(Galaxy3Camera[5], 0);
  1112. TextDrawSetProportional(Galaxy3Camera[5], 1);
  1113. TextDrawSetShadow(Galaxy3Camera[5], 1);
  1114. TextDrawUseBox(Galaxy3Camera[5], 1);
  1115. TextDrawBoxColor(Galaxy3Camera[5], 255);
  1116. TextDrawTextSize(Galaxy3Camera[5], 518.000000, 5.000000);
  1117. TextDrawSetSelectable(Galaxy3Camera[5], 0);
  1118.  
  1119. Galaxy3Camera[6] = TextDrawCreate(502.000000, 149.000000, "0");
  1120. TextDrawBackgroundColor(Galaxy3Camera[6], 255);
  1121. TextDrawFont(Galaxy3Camera[6], 1);
  1122. TextDrawLetterSize(Galaxy3Camera[6], 1.350000, 5.200000);
  1123. TextDrawColor(Galaxy3Camera[6], 255);
  1124. TextDrawSetOutline(Galaxy3Camera[6], 0);
  1125. TextDrawSetProportional(Galaxy3Camera[6], 1);
  1126. TextDrawSetShadow(Galaxy3Camera[6], 0);
  1127. TextDrawSetSelectable(Galaxy3Camera[6], 0);
  1128.  
  1129. Galaxy3Camera[7] = TextDrawCreate(494.000000, 156.000000, "0");
  1130. TextDrawBackgroundColor(Galaxy3Camera[7], 255);
  1131. TextDrawFont(Galaxy3Camera[7], 1);
  1132. TextDrawLetterSize(Galaxy3Camera[7], 1.370000, 5.100000);
  1133. TextDrawColor(Galaxy3Camera[7], 255);
  1134. TextDrawSetOutline(Galaxy3Camera[7], 0);
  1135. TextDrawSetProportional(Galaxy3Camera[7], 1);
  1136. TextDrawSetShadow(Galaxy3Camera[7], 0);
  1137. TextDrawSetSelectable(Galaxy3Camera[7], 0);
  1138.  
  1139. Galaxy3Camera[8] = TextDrawCreate(584.000000, 156.000000, "0");
  1140. TextDrawBackgroundColor(Galaxy3Camera[8], 255);
  1141. TextDrawFont(Galaxy3Camera[8], 1);
  1142. TextDrawLetterSize(Galaxy3Camera[8], 1.370000, 5.100000);
  1143. TextDrawColor(Galaxy3Camera[8], 255);
  1144. TextDrawSetOutline(Galaxy3Camera[8], 0);
  1145. TextDrawSetProportional(Galaxy3Camera[8], 1);
  1146. TextDrawSetShadow(Galaxy3Camera[8], 0);
  1147. TextDrawSetSelectable(Galaxy3Camera[8], 0);
  1148.  
  1149. Galaxy3Camera[9] = TextDrawCreate(580.000000, 149.000000, "0");
  1150. TextDrawBackgroundColor(Galaxy3Camera[9], 255);
  1151. TextDrawFont(Galaxy3Camera[9], 1);
  1152. TextDrawLetterSize(Galaxy3Camera[9], 1.350000, 5.200000);
  1153. TextDrawColor(Galaxy3Camera[9], 255);
  1154. TextDrawSetOutline(Galaxy3Camera[9], 0);
  1155. TextDrawSetProportional(Galaxy3Camera[9], 1);
  1156. TextDrawSetShadow(Galaxy3Camera[9], 0);
  1157. TextDrawSetSelectable(Galaxy3Camera[9], 0);
  1158.  
  1159. Galaxy3Camera[10] = TextDrawCreate(617.000000, 190.000000, "_");
  1160. TextDrawBackgroundColor(Galaxy3Camera[10], 255);
  1161. TextDrawFont(Galaxy3Camera[10], 1);
  1162. TextDrawLetterSize(Galaxy3Camera[10], 0.500000, 22.299993);
  1163. TextDrawColor(Galaxy3Camera[10], -1);
  1164. TextDrawSetOutline(Galaxy3Camera[10], 0);
  1165. TextDrawSetProportional(Galaxy3Camera[10], 1);
  1166. TextDrawSetShadow(Galaxy3Camera[10], 1);
  1167. TextDrawUseBox(Galaxy3Camera[10], 1);
  1168. TextDrawBoxColor(Galaxy3Camera[10], 255);
  1169. TextDrawTextSize(Galaxy3Camera[10], 606.000000, 0.000000);
  1170. TextDrawSetSelectable(Galaxy3Camera[10], 0);
  1171.  
  1172. Galaxy3Camera[11] = TextDrawCreate(553.000000, 397.000000, "u");
  1173. TextDrawAlignment(Galaxy3Camera[11], 2);
  1174. TextDrawBackgroundColor(Galaxy3Camera[11], 255);
  1175. TextDrawFont(Galaxy3Camera[11], 2);
  1176. TextDrawLetterSize(Galaxy3Camera[11], 2.069999, 1.399999);
  1177. TextDrawColor(Galaxy3Camera[11], -1);
  1178. TextDrawSetOutline(Galaxy3Camera[11], 0);
  1179. TextDrawSetProportional(Galaxy3Camera[11], 1);
  1180. TextDrawSetShadow(Galaxy3Camera[11], 1);
  1181. TextDrawSetSelectable(Galaxy3Camera[11], 0);
  1182.  
  1183. Galaxy3Camera[12] = TextDrawCreate(580.000000, 379.000000, "0");
  1184. TextDrawBackgroundColor(Galaxy3Camera[12], 255);
  1185. TextDrawFont(Galaxy3Camera[12], 1);
  1186. TextDrawLetterSize(Galaxy3Camera[12], 1.350000, 5.200000);
  1187. TextDrawColor(Galaxy3Camera[12], 255);
  1188. TextDrawSetOutline(Galaxy3Camera[12], 0);
  1189. TextDrawSetProportional(Galaxy3Camera[12], 1);
  1190. TextDrawSetShadow(Galaxy3Camera[12], 0);
  1191. TextDrawSetSelectable(Galaxy3Camera[12], 0);
  1192.  
  1193. Galaxy3Camera[13] = TextDrawCreate(502.000000, 380.000000, "0");
  1194. TextDrawBackgroundColor(Galaxy3Camera[13], 255);
  1195. TextDrawFont(Galaxy3Camera[13], 1);
  1196. TextDrawLetterSize(Galaxy3Camera[13], 1.350000, 5.200000);
  1197. TextDrawColor(Galaxy3Camera[13], 255);
  1198. TextDrawSetOutline(Galaxy3Camera[13], 0);
  1199. TextDrawSetProportional(Galaxy3Camera[13], 1);
  1200. TextDrawSetShadow(Galaxy3Camera[13], 0);
  1201. TextDrawSetSelectable(Galaxy3Camera[13], 0);
  1202.  
  1203. Galaxy3Camera[14] = TextDrawCreate(535.000000, 157.000000, "-");
  1204. TextDrawBackgroundColor(Galaxy3Camera[14], 255);
  1205. TextDrawFont(Galaxy3Camera[14], 1);
  1206. TextDrawLetterSize(Galaxy3Camera[14], 2.569998, 1.799999);
  1207. TextDrawColor(Galaxy3Camera[14], 842150655);
  1208. TextDrawSetOutline(Galaxy3Camera[14], 0);
  1209. TextDrawSetProportional(Galaxy3Camera[14], 1);
  1210. TextDrawSetShadow(Galaxy3Camera[14], 0);
  1211. TextDrawSetSelectable(Galaxy3Camera[14], 0);
  1212.  
  1213. Galaxy3Camera[15] = TextDrawCreate(568.000000, 163.000000, ".. o");
  1214. TextDrawBackgroundColor(Galaxy3Camera[15], 255);
  1215. TextDrawFont(Galaxy3Camera[15], 1);
  1216. TextDrawLetterSize(Galaxy3Camera[15], 0.400000, 1.399999);
  1217. TextDrawColor(Galaxy3Camera[15], 842150655);
  1218. TextDrawSetOutline(Galaxy3Camera[15], 0);
  1219. TextDrawSetProportional(Galaxy3Camera[15], 1);
  1220. TextDrawSetShadow(Galaxy3Camera[15], 0);
  1221. TextDrawSetSelectable(Galaxy3Camera[15], 0);
  1222.  
  1223. Galaxy3Camera[16] = TextDrawCreate(533.000000, 175.000000, "SMART S3");
  1224. TextDrawBackgroundColor(Galaxy3Camera[16], 255);
  1225. TextDrawFont(Galaxy3Camera[16], 1);
  1226. TextDrawLetterSize(Galaxy3Camera[16], 0.250000, 0.899999);
  1227. TextDrawColor(Galaxy3Camera[16], -1);
  1228. TextDrawSetOutline(Galaxy3Camera[16], 0);
  1229. TextDrawSetProportional(Galaxy3Camera[16], 1);
  1230. TextDrawSetShadow(Galaxy3Camera[16], 0);
  1231. TextDrawSetSelectable(Galaxy3Camera[16], 0);
  1232.  
  1233. Galaxy3Camera[17] = TextDrawCreate(495.000000, 372.000000, "0");
  1234. TextDrawBackgroundColor(Galaxy3Camera[17], 255);
  1235. TextDrawFont(Galaxy3Camera[17], 1);
  1236. TextDrawLetterSize(Galaxy3Camera[17], 1.350000, 5.200000);
  1237. TextDrawColor(Galaxy3Camera[17], 255);
  1238. TextDrawSetOutline(Galaxy3Camera[17], 0);
  1239. TextDrawSetProportional(Galaxy3Camera[17], 1);
  1240. TextDrawSetShadow(Galaxy3Camera[17], 0);
  1241. TextDrawSetSelectable(Galaxy3Camera[17], 0);
  1242.  
  1243. Galaxy3Camera[18] = TextDrawCreate(585.000000, 371.000000, "0");
  1244. TextDrawBackgroundColor(Galaxy3Camera[18], 255);
  1245. TextDrawFont(Galaxy3Camera[18], 1);
  1246. TextDrawLetterSize(Galaxy3Camera[18], 1.350000, 5.200000);
  1247. TextDrawColor(Galaxy3Camera[18], 255);
  1248. TextDrawSetOutline(Galaxy3Camera[18], 0);
  1249. TextDrawSetProportional(Galaxy3Camera[18], 1);
  1250. TextDrawSetShadow(Galaxy3Camera[18], 0);
  1251. TextDrawSetSelectable(Galaxy3Camera[18], 0);
  1252.  
  1253. Galaxy3Camera[19] = TextDrawCreate(608.000000, 168.000000, "_");
  1254. TextDrawBackgroundColor(Galaxy3Camera[19], 255);
  1255. TextDrawFont(Galaxy3Camera[19], 1);
  1256. TextDrawLetterSize(Galaxy3Camera[19], 0.500000, 1.899999);
  1257. TextDrawColor(Galaxy3Camera[19], -1);
  1258. TextDrawSetOutline(Galaxy3Camera[19], 0);
  1259. TextDrawSetProportional(Galaxy3Camera[19], 1);
  1260. TextDrawSetShadow(Galaxy3Camera[19], 1);
  1261. TextDrawUseBox(Galaxy3Camera[19], 1);
  1262. TextDrawBoxColor(Galaxy3Camera[19], 255);
  1263. TextDrawTextSize(Galaxy3Camera[19], 502.000000, 0.000000);
  1264. TextDrawSetSelectable(Galaxy3Camera[19], 0);
  1265.  
  1266. Galaxy3Camera[20] = TextDrawCreate(608.000000, 395.000000, "_");
  1267. TextDrawBackgroundColor(Galaxy3Camera[20], 255);
  1268. TextDrawFont(Galaxy3Camera[20], 1);
  1269. TextDrawLetterSize(Galaxy3Camera[20], 0.500000, 1.899999);
  1270. TextDrawColor(Galaxy3Camera[20], -1);
  1271. TextDrawSetOutline(Galaxy3Camera[20], 0);
  1272. TextDrawSetProportional(Galaxy3Camera[20], 1);
  1273. TextDrawSetShadow(Galaxy3Camera[20], 1);
  1274. TextDrawUseBox(Galaxy3Camera[20], 1);
  1275. TextDrawBoxColor(Galaxy3Camera[20], 255);
  1276. TextDrawTextSize(Galaxy3Camera[20], 502.000000, 0.000000);
  1277. TextDrawSetSelectable(Galaxy3Camera[20], 0);
  1278.  
  1279. Galaxy3Camera[21] = TextDrawCreate(591.000000, 394.000000, "_");
  1280. TextDrawBackgroundColor(Galaxy3Camera[21], 255);
  1281. TextDrawFont(Galaxy3Camera[21], 1);
  1282. TextDrawLetterSize(Galaxy3Camera[21], 0.500000, 3.000004);
  1283. TextDrawColor(Galaxy3Camera[21], -1);
  1284. TextDrawSetOutline(Galaxy3Camera[21], 0);
  1285. TextDrawSetProportional(Galaxy3Camera[21], 1);
  1286. TextDrawSetShadow(Galaxy3Camera[21], 1);
  1287. TextDrawUseBox(Galaxy3Camera[21], 1);
  1288. TextDrawBoxColor(Galaxy3Camera[21], 255);
  1289. TextDrawTextSize(Galaxy3Camera[21], 518.000000, 5.000000);
  1290. TextDrawSetSelectable(Galaxy3Camera[21], 0);
  1291.  
  1292. Galaxy3Camera[22] = TextDrawCreate(553.000000, 397.000000, "u");
  1293. TextDrawAlignment(Galaxy3Camera[22], 2);
  1294. TextDrawBackgroundColor(Galaxy3Camera[22], 255);
  1295. TextDrawFont(Galaxy3Camera[22], 2);
  1296. TextDrawLetterSize(Galaxy3Camera[22], 2.069998, 1.399999);
  1297. TextDrawColor(Galaxy3Camera[22], -1);
  1298. TextDrawSetOutline(Galaxy3Camera[22], 0);
  1299. TextDrawSetProportional(Galaxy3Camera[22], 1);
  1300. TextDrawSetShadow(Galaxy3Camera[22], 1);
  1301. TextDrawSetSelectable(Galaxy3Camera[22], 0);
  1302.  
  1303. Galaxy3Camera[23] = TextDrawCreate(555.000000, 261.000000, "II");
  1304. TextDrawBackgroundColor(Galaxy3Camera[23], 255);
  1305. TextDrawFont(Galaxy3Camera[23], 1);
  1306. TextDrawLetterSize(Galaxy3Camera[23], 0.059999, 2.599999);
  1307. TextDrawColor(Galaxy3Camera[23], -1);
  1308. TextDrawSetOutline(Galaxy3Camera[23], 0);
  1309. TextDrawSetProportional(Galaxy3Camera[23], 1);
  1310. TextDrawSetShadow(Galaxy3Camera[23], 0);
  1311. TextDrawSetSelectable(Galaxy3Camera[23], 0);
  1312.  
  1313. Galaxy3Camera[24] = TextDrawCreate(547.000000, 270.000000, "-");
  1314. TextDrawBackgroundColor(Galaxy3Camera[24], 255);
  1315. TextDrawFont(Galaxy3Camera[24], 1);
  1316. TextDrawLetterSize(Galaxy3Camera[24], 1.240000, 0.400000);
  1317. TextDrawColor(Galaxy3Camera[24], -1);
  1318. TextDrawSetOutline(Galaxy3Camera[24], 0);
  1319. TextDrawSetProportional(Galaxy3Camera[24], 1);
  1320. TextDrawSetShadow(Galaxy3Camera[24], 0);
  1321. TextDrawSetSelectable(Galaxy3Camera[24], 0);
  1322.  
  1323. Galaxy3Camera[25] = TextDrawCreate(501.000000, 381.000000, "F8 - Photo . Y - Exit");
  1324. TextDrawBackgroundColor(Galaxy3Camera[25], 255);
  1325. TextDrawFont(Galaxy3Camera[25], 1);
  1326. TextDrawLetterSize(Galaxy3Camera[25], 0.300000, 0.899999);
  1327. TextDrawColor(Galaxy3Camera[25], -1);
  1328. TextDrawSetOutline(Galaxy3Camera[25], 0);
  1329. TextDrawSetProportional(Galaxy3Camera[25], 1);
  1330. TextDrawSetShadow(Galaxy3Camera[25], 0);
  1331. TextDrawSetSelectable(Galaxy3Camera[25], 0);
  1332.  
  1333. Galaxy3Camera[27] = TextDrawCreate(610.000000, 189.000000, "_");
  1334. TextDrawBackgroundColor(Galaxy3Camera[27], 255);
  1335. TextDrawFont(Galaxy3Camera[27], 1);
  1336. TextDrawLetterSize(Galaxy3Camera[27], 0.500000, 0.499998);
  1337. TextDrawColor(Galaxy3Camera[27], -1);
  1338. TextDrawSetOutline(Galaxy3Camera[27], 0);
  1339. TextDrawSetProportional(Galaxy3Camera[27], 1);
  1340. TextDrawSetShadow(Galaxy3Camera[27], 1);
  1341. TextDrawUseBox(Galaxy3Camera[27], 1);
  1342. TextDrawBoxColor(Galaxy3Camera[27], 842150655);
  1343. TextDrawTextSize(Galaxy3Camera[27], 499.000000, 10.000000);
  1344. TextDrawSetSelectable(Galaxy3Camera[27], 0);
  1345.  
  1346. Galaxy3Camera[28] = TextDrawCreate(579.000000, 188.000000, "17:24");
  1347. TextDrawBackgroundColor(Galaxy3Camera[28], 255);
  1348. TextDrawFont(Galaxy3Camera[28], 1);
  1349. TextDrawLetterSize(Galaxy3Camera[28], 0.289999, 0.699998);
  1350. TextDrawColor(Galaxy3Camera[28], -1);
  1351. TextDrawSetOutline(Galaxy3Camera[28], 0);
  1352. TextDrawSetProportional(Galaxy3Camera[28], 1);
  1353. TextDrawSetShadow(Galaxy3Camera[28], 0);
  1354. TextDrawSetSelectable(Galaxy3Camera[28], 0);
  1355.  
  1356. Galaxy3Camera[29] = TextDrawCreate(504.000000, 188.000000, "3G");
  1357. TextDrawBackgroundColor(Galaxy3Camera[29], 255);
  1358. TextDrawFont(Galaxy3Camera[29], 1);
  1359. TextDrawLetterSize(Galaxy3Camera[29], 0.289999, 0.699998);
  1360. TextDrawColor(Galaxy3Camera[29], -1);
  1361. TextDrawSetOutline(Galaxy3Camera[29], 0);
  1362. TextDrawSetProportional(Galaxy3Camera[29], 1);
  1363. TextDrawSetShadow(Galaxy3Camera[29], 0);
  1364. TextDrawSetSelectable(Galaxy3Camera[29], 0);
  1365.  
  1366. Galaxy3Camera[30] = TextDrawCreate(571.000000, 188.000000, "I");
  1367. TextDrawBackgroundColor(Galaxy3Camera[30], 255);
  1368. TextDrawFont(Galaxy3Camera[30], 1);
  1369. TextDrawLetterSize(Galaxy3Camera[30], 0.539999, 0.699998);
  1370. TextDrawColor(Galaxy3Camera[30], 16711935);
  1371. TextDrawSetOutline(Galaxy3Camera[30], 0);
  1372. TextDrawSetProportional(Galaxy3Camera[30], 1);
  1373. TextDrawSetShadow(Galaxy3Camera[30], 0);
  1374. TextDrawSetSelectable(Galaxy3Camera[30], 0);
  1375.  
  1376. Galaxy3Camera[31] = TextDrawCreate(503.000000, 381.000000, "_");
  1377. TextDrawBackgroundColor(Galaxy3Camera[31], 255);
  1378. TextDrawFont(Galaxy3Camera[31], 1);
  1379. TextDrawLetterSize(Galaxy3Camera[31], 0.500000, 1.000002);
  1380. TextDrawColor(Galaxy3Camera[31], -1);
  1381. TextDrawSetOutline(Galaxy3Camera[31], 0);
  1382. TextDrawSetProportional(Galaxy3Camera[31], 1);
  1383. TextDrawSetShadow(Galaxy3Camera[31], 1);
  1384. TextDrawUseBox(Galaxy3Camera[31], 1);
  1385. TextDrawBoxColor(Galaxy3Camera[31], 1347440895);
  1386. TextDrawTextSize(Galaxy3Camera[31], 606.000000, 0.000000);
  1387. TextDrawSetSelectable(Galaxy3Camera[31], 0);
  1388.  
  1389. //MAPAS
  1390. Galaxy3Maps[0] = TextDrawCreate(555.000000, 203.000000, "MAPS");
  1391. TextDrawAlignment(Galaxy3Maps[0], 2);
  1392. TextDrawBackgroundColor(Galaxy3Maps[0], 255);
  1393. TextDrawFont(Galaxy3Maps[0], 2);
  1394. TextDrawLetterSize(Galaxy3Maps[0], 0.380000, 1.400000);
  1395. TextDrawColor(Galaxy3Maps[0], -16776961);
  1396. TextDrawSetOutline(Galaxy3Maps[0], 0);
  1397. TextDrawSetProportional(Galaxy3Maps[0], 1);
  1398. TextDrawSetShadow(Galaxy3Maps[0], 0);
  1399. TextDrawUseBox(Galaxy3Maps[0], 1);
  1400. TextDrawBoxColor(Galaxy3Maps[0], 255);
  1401. TextDrawTextSize(Galaxy3Maps[0], 0.000000, 100.000000);
  1402. TextDrawSetSelectable(Galaxy3Maps[0], 0);
  1403.  
  1404. Galaxy3Maps[1] = TextDrawCreate(503.000000, 223.000000, "samaps:gtasamapbit1");
  1405. TextDrawBackgroundColor(Galaxy3Maps[1], 255);
  1406. TextDrawAlignment(Galaxy3Maps[1], 2);
  1407. TextDrawFont(Galaxy3Maps[1], 4);
  1408. TextDrawLetterSize(Galaxy3Maps[1], 0.500000, 1.000000);
  1409. TextDrawColor(Galaxy3Maps[1], -1);
  1410. TextDrawSetOutline(Galaxy3Maps[1], 0);
  1411. TextDrawSetProportional(Galaxy3Maps[1], 1);
  1412. TextDrawSetShadow(Galaxy3Maps[1], 1);
  1413. TextDrawUseBox(Galaxy3Maps[1], 1);
  1414. TextDrawBoxColor(Galaxy3Maps[1], 255);
  1415. TextDrawTextSize(Galaxy3Maps[1], 52.000000, 49.000000);
  1416. TextDrawSetSelectable(Galaxy3Maps[1], 1);
  1417.  
  1418. Galaxy3Maps[2] = TextDrawCreate(555.000000, 223.000000, "samaps:gtasamapbit2");
  1419. TextDrawAlignment(Galaxy3Maps[2], 2);
  1420. TextDrawBackgroundColor(Galaxy3Maps[2], 255);
  1421. TextDrawFont(Galaxy3Maps[2], 4);
  1422. TextDrawLetterSize(Galaxy3Maps[2], 0.500000, 1.000000);
  1423. TextDrawColor(Galaxy3Maps[2], -1);
  1424. TextDrawSetOutline(Galaxy3Maps[2], 0);
  1425. TextDrawSetProportional(Galaxy3Maps[2], 1);
  1426. TextDrawSetShadow(Galaxy3Maps[2], 1);
  1427. TextDrawUseBox(Galaxy3Maps[2], 1);
  1428. TextDrawBoxColor(Galaxy3Maps[2], 255);
  1429. TextDrawTextSize(Galaxy3Maps[2], 52.000000, 49.000000);
  1430. TextDrawSetSelectable(Galaxy3Maps[2], 1);
  1431.  
  1432. Galaxy3Maps[3] = TextDrawCreate(503.000000, 272.000000, "samaps:gtasamapbit3");
  1433. TextDrawAlignment(Galaxy3Maps[3], 2);
  1434. TextDrawBackgroundColor(Galaxy3Maps[3], 255);
  1435. TextDrawFont(Galaxy3Maps[3], 4);
  1436. TextDrawLetterSize(Galaxy3Maps[3], 0.500000, 1.000000);
  1437. TextDrawColor(Galaxy3Maps[3], -1);
  1438. TextDrawSetOutline(Galaxy3Maps[3], 0);
  1439. TextDrawSetProportional(Galaxy3Maps[3], 1);
  1440. TextDrawSetShadow(Galaxy3Maps[3], 1);
  1441. TextDrawUseBox(Galaxy3Maps[3], 1);
  1442. TextDrawBoxColor(Galaxy3Maps[3], 255);
  1443. TextDrawTextSize(Galaxy3Maps[3], 52.000000, 49.000000);
  1444. TextDrawSetSelectable(Galaxy3Maps[3], 1);
  1445.  
  1446. Galaxy3Maps[4] = TextDrawCreate(555.000000, 272.000000, "samaps:gtasamapbit4");
  1447. TextDrawAlignment(Galaxy3Maps[4], 2);
  1448. TextDrawBackgroundColor(Galaxy3Maps[4], 255);
  1449. TextDrawFont(Galaxy3Maps[4], 4);
  1450. TextDrawLetterSize(Galaxy3Maps[4], 0.500000, 1.000000);
  1451. TextDrawColor(Galaxy3Maps[4], -1);
  1452. TextDrawSetOutline(Galaxy3Maps[4], 0);
  1453. TextDrawSetProportional(Galaxy3Maps[4], 1);
  1454. TextDrawSetShadow(Galaxy3Maps[4], 1);
  1455. TextDrawUseBox(Galaxy3Maps[4], 1);
  1456. TextDrawBoxColor(Galaxy3Maps[4], 255);
  1457. TextDrawTextSize(Galaxy3Maps[4], 52.000000, 49.000000);
  1458. TextDrawSetSelectable(Galaxy3Maps[4], 1);
  1459.  
  1460. Galaxy3Maps[5] = TextDrawCreate(503.000000, 224.000000, "samaps:gtasamapbit1");
  1461. TextDrawAlignment(Galaxy3Maps[5], 2);
  1462. TextDrawBackgroundColor(Galaxy3Maps[5], 255);
  1463. TextDrawFont(Galaxy3Maps[5], 4);
  1464. TextDrawLetterSize(Galaxy3Maps[5], 0.500000, 1.000000);
  1465. TextDrawColor(Galaxy3Maps[5], -1);
  1466. TextDrawSetOutline(Galaxy3Maps[5], 0);
  1467. TextDrawSetProportional(Galaxy3Maps[5], 1);
  1468. TextDrawSetShadow(Galaxy3Maps[5], 1);
  1469. TextDrawUseBox(Galaxy3Maps[5], 1);
  1470. TextDrawBoxColor(Galaxy3Maps[5], 255);
  1471. TextDrawTextSize(Galaxy3Maps[5], 104.000000, 97.000000);
  1472. TextDrawSetSelectable(Galaxy3Maps[5], 1);
  1473.  
  1474. Galaxy3Maps[6] = TextDrawCreate(503.000000, 224.000000, "samaps:gtasamapbit2");
  1475. TextDrawAlignment(Galaxy3Maps[6], 2);
  1476. TextDrawBackgroundColor(Galaxy3Maps[6], 255);
  1477. TextDrawFont(Galaxy3Maps[6], 4);
  1478. TextDrawLetterSize(Galaxy3Maps[6], 0.500000, 1.000000);
  1479. TextDrawColor(Galaxy3Maps[6], -1);
  1480. TextDrawSetOutline(Galaxy3Maps[6], 0);
  1481. TextDrawSetProportional(Galaxy3Maps[6], 1);
  1482. TextDrawSetShadow(Galaxy3Maps[6], 1);
  1483. TextDrawUseBox(Galaxy3Maps[6], 1);
  1484. TextDrawBoxColor(Galaxy3Maps[6], 255);
  1485. TextDrawTextSize(Galaxy3Maps[6], 104.000000, 97.000000);
  1486. TextDrawSetSelectable(Galaxy3Maps[6], 1);
  1487.  
  1488. Galaxy3Maps[7] = TextDrawCreate(503.000000, 224.000000, "samaps:gtasamapbit3");
  1489. TextDrawAlignment(Galaxy3Maps[7], 2);
  1490. TextDrawBackgroundColor(Galaxy3Maps[7], 255);
  1491. TextDrawFont(Galaxy3Maps[7], 4);
  1492. TextDrawLetterSize(Galaxy3Maps[7], 0.500000, 1.000000);
  1493. TextDrawColor(Galaxy3Maps[7], -1);
  1494. TextDrawSetOutline(Galaxy3Maps[7], 0);
  1495. TextDrawSetProportional(Galaxy3Maps[7], 1);
  1496. TextDrawSetShadow(Galaxy3Maps[7], 1);
  1497. TextDrawUseBox(Galaxy3Maps[7], 1);
  1498. TextDrawBoxColor(Galaxy3Maps[7], 255);
  1499. TextDrawTextSize(Galaxy3Maps[7], 104.000000, 97.000000);
  1500. TextDrawSetSelectable(Galaxy3Maps[7], 1);
  1501.  
  1502. Galaxy3Maps[8] = TextDrawCreate(503.000000, 224.000000, "samaps:gtasamapbit4");
  1503. TextDrawAlignment(Galaxy3Maps[8], 2);
  1504. TextDrawBackgroundColor(Galaxy3Maps[8], 255);
  1505. TextDrawFont(Galaxy3Maps[8], 4);
  1506. TextDrawLetterSize(Galaxy3Maps[8], 0.500000, 1.000000);
  1507. TextDrawColor(Galaxy3Maps[8], -1);
  1508. TextDrawSetOutline(Galaxy3Maps[8], 0);
  1509. TextDrawSetProportional(Galaxy3Maps[8], 1);
  1510. TextDrawSetShadow(Galaxy3Maps[8], 1);
  1511. TextDrawUseBox(Galaxy3Maps[8], 1);
  1512. TextDrawBoxColor(Galaxy3Maps[8], 255);
  1513. TextDrawTextSize(Galaxy3Maps[8], 104.000000, 97.000000);
  1514. TextDrawSetSelectable(Galaxy3Maps[8], 1);
  1515.  
  1516. //weather
  1517. Galaxy3Weather[0] = TextDrawCreate(555.000000, 203.000000, "WEATHER");
  1518. TextDrawAlignment(Galaxy3Weather[0], 2);
  1519. TextDrawBackgroundColor(Galaxy3Weather[0], 255);
  1520. TextDrawFont(Galaxy3Weather[0], 2);
  1521. TextDrawLetterSize(Galaxy3Weather[0], 0.379999, 1.399999);
  1522. TextDrawColor(Galaxy3Weather[0], -16776961);
  1523. TextDrawSetOutline(Galaxy3Weather[0], 0);
  1524. TextDrawSetProportional(Galaxy3Weather[0], 1);
  1525. TextDrawSetShadow(Galaxy3Weather[0], 0);
  1526. TextDrawUseBox(Galaxy3Weather[0], 1);
  1527. TextDrawBoxColor(Galaxy3Weather[0], 255);
  1528. TextDrawTextSize(Galaxy3Weather[0], 0.000000, 100.000000);
  1529. TextDrawSetSelectable(Galaxy3Weather[0], 0);
  1530.  
  1531. Galaxy3Weather[1] = TextDrawCreate(555.000000, 238.000000, "~r~PLACE~n~~g~Los Angeles~n~~n~~r~TEMPERATURE~n~~g~14C");
  1532. TextDrawAlignment(Galaxy3Weather[1], 2);
  1533. TextDrawBackgroundColor(Galaxy3Weather[1], 255);
  1534. TextDrawFont(Galaxy3Weather[1], 2);
  1535. TextDrawLetterSize(Galaxy3Weather[1], 0.290000, 1.200000);
  1536. TextDrawColor(Galaxy3Weather[1], -1);
  1537. TextDrawSetOutline(Galaxy3Weather[1], 0);
  1538. TextDrawSetProportional(Galaxy3Weather[1], 1);
  1539. TextDrawSetShadow(Galaxy3Weather[1], 0);
  1540. TextDrawUseBox(Galaxy3Weather[1], 1);
  1541. TextDrawBoxColor(Galaxy3Weather[1], 255);
  1542. TextDrawTextSize(Galaxy3Weather[1], 0.000000, 98.000000);
  1543. TextDrawSetSelectable(Galaxy3Weather[1], 0);
  1544.  
  1545. Galaxy3Weather[2] = TextDrawCreate(555.000000, 322.000000, "VARIABLE");
  1546. TextDrawAlignment(Galaxy3Weather[2], 2);
  1547. TextDrawBackgroundColor(Galaxy3Weather[2], 255);
  1548. TextDrawFont(Galaxy3Weather[2], 2);
  1549. TextDrawLetterSize(Galaxy3Weather[2], 0.290000, 1.200000);
  1550. TextDrawColor(Galaxy3Weather[2], -1);
  1551. TextDrawSetOutline(Galaxy3Weather[2], 0);
  1552. TextDrawSetProportional(Galaxy3Weather[2], 1);
  1553. TextDrawSetShadow(Galaxy3Weather[2], 0);
  1554. TextDrawUseBox(Galaxy3Weather[2], 1);
  1555. TextDrawBoxColor(Galaxy3Weather[2], 255);
  1556. TextDrawTextSize(Galaxy3Weather[2], 0.000000, 98.000000);
  1557. TextDrawSetSelectable(Galaxy3Weather[2], 0);
  1558.  
  1559. //Radio
  1560. Galaxy3Radios[0] = TextDrawCreate(529.000000, 211.000000, "OVG Radio");
  1561. TextDrawAlignment(Galaxy3Radios[0], 2);
  1562. TextDrawBackgroundColor(Galaxy3Radios[0], 255);
  1563. TextDrawFont(Galaxy3Radios[0], 2);
  1564. TextDrawLetterSize(Galaxy3Radios[0], 0.140000, 1.000000);
  1565. TextDrawColor(Galaxy3Radios[0], 255);
  1566. TextDrawSetOutline(Galaxy3Radios[0], 0);
  1567. TextDrawSetProportional(Galaxy3Radios[0], 1);
  1568. TextDrawSetShadow(Galaxy3Radios[0], 0);
  1569. TextDrawUseBox(Galaxy3Radios[0], 1);
  1570. TextDrawBoxColor(Galaxy3Radios[0], -1);
  1571. TextDrawTextSize(Galaxy3Radios[0], 10.000000, 42.000000);
  1572. TextDrawSetSelectable(Galaxy3Radios[0], 1);
  1573.  
  1574. Galaxy3Radios[1] = TextDrawCreate(579.000000, 211.000000, "Sky Blue");
  1575. TextDrawAlignment(Galaxy3Radios[1], 2);
  1576. TextDrawBackgroundColor(Galaxy3Radios[1], 255);
  1577. TextDrawFont(Galaxy3Radios[1], 2);
  1578. TextDrawLetterSize(Galaxy3Radios[1], 0.140000, 1.000000);
  1579. TextDrawColor(Galaxy3Radios[1], 255);
  1580. TextDrawSetOutline(Galaxy3Radios[1], 0);
  1581. TextDrawSetProportional(Galaxy3Radios[1], 1);
  1582. TextDrawSetShadow(Galaxy3Radios[1], 0);
  1583. TextDrawUseBox(Galaxy3Radios[1], 1);
  1584. TextDrawBoxColor(Galaxy3Radios[1], -1);
  1585. TextDrawTextSize(Galaxy3Radios[1], 10.000000, 42.000000);
  1586. TextDrawSetSelectable(Galaxy3Radios[1], 1);
  1587.  
  1588. Galaxy3Radios[2] = TextDrawCreate(529.000000, 234.000000, "Cpt FM");
  1589. TextDrawAlignment(Galaxy3Radios[2], 2);
  1590. TextDrawBackgroundColor(Galaxy3Radios[2], 255);
  1591. TextDrawFont(Galaxy3Radios[2], 2);
  1592. TextDrawLetterSize(Galaxy3Radios[2], 0.140000, 1.000000);
  1593. TextDrawColor(Galaxy3Radios[2], 255);
  1594. TextDrawSetOutline(Galaxy3Radios[2], 0);
  1595. TextDrawSetProportional(Galaxy3Radios[2], 1);
  1596. TextDrawSetShadow(Galaxy3Radios[2], 0);
  1597. TextDrawUseBox(Galaxy3Radios[2], 1);
  1598. TextDrawBoxColor(Galaxy3Radios[2], -1);
  1599. TextDrawTextSize(Galaxy3Radios[2], 10.000000, 42.000000);
  1600. TextDrawSetSelectable(Galaxy3Radios[2], 1);
  1601.  
  1602. Galaxy3Radios[3] = TextDrawCreate(579.000000, 234.000000, "Chc FM");
  1603. TextDrawAlignment(Galaxy3Radios[3], 2);
  1604. TextDrawBackgroundColor(Galaxy3Radios[3], 255);
  1605. TextDrawFont(Galaxy3Radios[3], 2);
  1606. TextDrawLetterSize(Galaxy3Radios[3], 0.140000, 1.000000);
  1607. TextDrawColor(Galaxy3Radios[3], 255);
  1608. TextDrawSetOutline(Galaxy3Radios[3], 0);
  1609. TextDrawSetProportional(Galaxy3Radios[3], 1);
  1610. TextDrawSetShadow(Galaxy3Radios[3], 0);
  1611. TextDrawUseBox(Galaxy3Radios[3], 1);
  1612. TextDrawBoxColor(Galaxy3Radios[3], -1);
  1613. TextDrawTextSize(Galaxy3Radios[3], 10.000000, 42.000000);
  1614. TextDrawSetSelectable(Galaxy3Radios[3], 1);
  1615.  
  1616. //Keys
  1617. Galaxy3KeyBoard[0] = TextDrawCreate(514.000000, 279.000000, "1");
  1618. TextDrawAlignment(Galaxy3KeyBoard[0], 2);
  1619. TextDrawBackgroundColor(Galaxy3KeyBoard[0], 255);
  1620. TextDrawFont(Galaxy3KeyBoard[0], 2);
  1621. TextDrawLetterSize(Galaxy3KeyBoard[0], 0.390000, 1.400000);
  1622. TextDrawColor(Galaxy3KeyBoard[0], 255);
  1623. TextDrawSetOutline(Galaxy3KeyBoard[0], 0);
  1624. TextDrawSetProportional(Galaxy3KeyBoard[0], 1);
  1625. TextDrawSetShadow(Galaxy3KeyBoard[0], 0);
  1626. TextDrawUseBox(Galaxy3KeyBoard[0], 1);
  1627. TextDrawBoxColor(Galaxy3KeyBoard[0], -1);
  1628. TextDrawTextSize(Galaxy3KeyBoard[0], 15.000000, 15.000000);
  1629. TextDrawSetSelectable(Galaxy3KeyBoard[0], 1);
  1630.  
  1631. Galaxy3KeyBoard[1] = TextDrawCreate(555.000000, 279.000000, "2");
  1632. TextDrawAlignment(Galaxy3KeyBoard[1], 2);
  1633. TextDrawBackgroundColor(Galaxy3KeyBoard[1], 255);
  1634. TextDrawFont(Galaxy3KeyBoard[1], 2);
  1635. TextDrawLetterSize(Galaxy3KeyBoard[1], 0.390000, 1.400000);
  1636. TextDrawColor(Galaxy3KeyBoard[1], 255);
  1637. TextDrawSetOutline(Galaxy3KeyBoard[1], 0);
  1638. TextDrawSetProportional(Galaxy3KeyBoard[1], 1);
  1639. TextDrawSetShadow(Galaxy3KeyBoard[1], 0);
  1640. TextDrawUseBox(Galaxy3KeyBoard[1], 1);
  1641. TextDrawBoxColor(Galaxy3KeyBoard[1], -1);
  1642. TextDrawTextSize(Galaxy3KeyBoard[1], 15.000000, 15.000000);
  1643. TextDrawSetSelectable(Galaxy3KeyBoard[1], 1);
  1644.  
  1645. Galaxy3KeyBoard[2] = TextDrawCreate(596.000000, 279.000000, "3");
  1646. TextDrawAlignment(Galaxy3KeyBoard[2], 2);
  1647. TextDrawBackgroundColor(Galaxy3KeyBoard[2], 255);
  1648. TextDrawFont(Galaxy3KeyBoard[2], 2);
  1649. TextDrawLetterSize(Galaxy3KeyBoard[2], 0.390000, 1.400000);
  1650. TextDrawColor(Galaxy3KeyBoard[2], 255);
  1651. TextDrawSetOutline(Galaxy3KeyBoard[2], 0);
  1652. TextDrawSetProportional(Galaxy3KeyBoard[2], 1);
  1653. TextDrawSetShadow(Galaxy3KeyBoard[2], 0);
  1654. TextDrawUseBox(Galaxy3KeyBoard[2], 1);
  1655. TextDrawBoxColor(Galaxy3KeyBoard[2], -1);
  1656. TextDrawTextSize(Galaxy3KeyBoard[2], 15.000000, 15.000000);
  1657. TextDrawSetSelectable(Galaxy3KeyBoard[2], 1);
  1658.  
  1659. Galaxy3KeyBoard[3] = TextDrawCreate(514.000000, 303.000000, "4");
  1660. TextDrawAlignment(Galaxy3KeyBoard[3], 2);
  1661. TextDrawBackgroundColor(Galaxy3KeyBoard[3], 255);
  1662. TextDrawFont(Galaxy3KeyBoard[3], 2);
  1663. TextDrawLetterSize(Galaxy3KeyBoard[3], 0.390000, 1.400000);
  1664. TextDrawColor(Galaxy3KeyBoard[3], 255);
  1665. TextDrawSetOutline(Galaxy3KeyBoard[3], 0);
  1666. TextDrawSetProportional(Galaxy3KeyBoard[3], 1);
  1667. TextDrawSetShadow(Galaxy3KeyBoard[3], 0);
  1668. TextDrawUseBox(Galaxy3KeyBoard[3], 1);
  1669. TextDrawBoxColor(Galaxy3KeyBoard[3], -1);
  1670. TextDrawTextSize(Galaxy3KeyBoard[3], 15.000000, 15.000000);
  1671. TextDrawSetSelectable(Galaxy3KeyBoard[3], 1);
  1672.  
  1673. Galaxy3KeyBoard[4] = TextDrawCreate(555.000000, 303.000000, "5");
  1674. TextDrawAlignment(Galaxy3KeyBoard[4], 2);
  1675. TextDrawBackgroundColor(Galaxy3KeyBoard[4], 255);
  1676. TextDrawFont(Galaxy3KeyBoard[4], 2);
  1677. TextDrawLetterSize(Galaxy3KeyBoard[4], 0.390000, 1.400000);
  1678. TextDrawColor(Galaxy3KeyBoard[4], 255);
  1679. TextDrawSetOutline(Galaxy3KeyBoard[4], 0);
  1680. TextDrawSetProportional(Galaxy3KeyBoard[4], 1);
  1681. TextDrawSetShadow(Galaxy3KeyBoard[4], 0);
  1682. TextDrawUseBox(Galaxy3KeyBoard[4], 1);
  1683. TextDrawBoxColor(Galaxy3KeyBoard[4], -1);
  1684. TextDrawTextSize(Galaxy3KeyBoard[4], 15.000000, 15.000000);
  1685. TextDrawSetSelectable(Galaxy3KeyBoard[4], 1);
  1686.  
  1687. Galaxy3KeyBoard[5] = TextDrawCreate(596.000000, 303.000000, "6");
  1688. TextDrawAlignment(Galaxy3KeyBoard[5], 2);
  1689. TextDrawBackgroundColor(Galaxy3KeyBoard[5], 255);
  1690. TextDrawFont(Galaxy3KeyBoard[5], 2);
  1691. TextDrawLetterSize(Galaxy3KeyBoard[5], 0.390000, 1.400000);
  1692. TextDrawColor(Galaxy3KeyBoard[5], 255);
  1693. TextDrawSetOutline(Galaxy3KeyBoard[5], 0);
  1694. TextDrawSetProportional(Galaxy3KeyBoard[5], 1);
  1695. TextDrawSetShadow(Galaxy3KeyBoard[5], 0);
  1696. TextDrawUseBox(Galaxy3KeyBoard[5], 1);
  1697. TextDrawBoxColor(Galaxy3KeyBoard[5], -1);
  1698. TextDrawTextSize(Galaxy3KeyBoard[5], 15.000000, 15.000000);
  1699. TextDrawSetSelectable(Galaxy3KeyBoard[5], 1);
  1700.  
  1701. Galaxy3KeyBoard[6] = TextDrawCreate(514.000000, 328.000000, "7");
  1702. TextDrawAlignment(Galaxy3KeyBoard[6], 2);
  1703. TextDrawBackgroundColor(Galaxy3KeyBoard[6], 255);
  1704. TextDrawFont(Galaxy3KeyBoard[6], 2);
  1705. TextDrawLetterSize(Galaxy3KeyBoard[6], 0.390000, 1.400000);
  1706. TextDrawColor(Galaxy3KeyBoard[6], 255);
  1707. TextDrawSetOutline(Galaxy3KeyBoard[6], 0);
  1708. TextDrawSetProportional(Galaxy3KeyBoard[6], 1);
  1709. TextDrawSetShadow(Galaxy3KeyBoard[6], 0);
  1710. TextDrawUseBox(Galaxy3KeyBoard[6], 1);
  1711. TextDrawBoxColor(Galaxy3KeyBoard[6], -1);
  1712. TextDrawTextSize(Galaxy3KeyBoard[6], 15.000000, 15.000000);
  1713. TextDrawSetSelectable(Galaxy3KeyBoard[6], 1);
  1714.  
  1715. Galaxy3KeyBoard[7] = TextDrawCreate(555.000000, 328.000000, "8");
  1716. TextDrawAlignment(Galaxy3KeyBoard[7], 2);
  1717. TextDrawBackgroundColor(Galaxy3KeyBoard[7], 255);
  1718. TextDrawFont(Galaxy3KeyBoard[7], 2);
  1719. TextDrawLetterSize(Galaxy3KeyBoard[7], 0.390000, 1.400000);
  1720. TextDrawColor(Galaxy3KeyBoard[7], 255);
  1721. TextDrawSetOutline(Galaxy3KeyBoard[7], 0);
  1722. TextDrawSetProportional(Galaxy3KeyBoard[7], 1);
  1723. TextDrawSetShadow(Galaxy3KeyBoard[7], 0);
  1724. TextDrawUseBox(Galaxy3KeyBoard[7], 1);
  1725. TextDrawBoxColor(Galaxy3KeyBoard[7], -1);
  1726. TextDrawTextSize(Galaxy3KeyBoard[7], 15.000000, 15.000000);
  1727. TextDrawSetSelectable(Galaxy3KeyBoard[7], 1);
  1728.  
  1729. Galaxy3KeyBoard[8] = TextDrawCreate(596.000000, 328.000000, "9");
  1730. TextDrawAlignment(Galaxy3KeyBoard[8], 2);
  1731. TextDrawBackgroundColor(Galaxy3KeyBoard[8], 255);
  1732. TextDrawFont(Galaxy3KeyBoard[8], 2);
  1733. TextDrawLetterSize(Galaxy3KeyBoard[8], 0.390000, 1.400000);
  1734. TextDrawColor(Galaxy3KeyBoard[8], 255);
  1735. TextDrawSetOutline(Galaxy3KeyBoard[8], 0);
  1736. TextDrawSetProportional(Galaxy3KeyBoard[8], 1);
  1737. TextDrawSetShadow(Galaxy3KeyBoard[8], 0);
  1738. TextDrawUseBox(Galaxy3KeyBoard[8], 1);
  1739. TextDrawBoxColor(Galaxy3KeyBoard[8], -1);
  1740. TextDrawTextSize(Galaxy3KeyBoard[8], 15.000000, 15.000000);
  1741. TextDrawSetSelectable(Galaxy3KeyBoard[8], 1);
  1742.  
  1743. Galaxy3KeyBoard[9] = TextDrawCreate(514.000000, 352.000000, "+");
  1744. TextDrawAlignment(Galaxy3KeyBoard[9], 2);
  1745. TextDrawBackgroundColor(Galaxy3KeyBoard[9], 255);
  1746. TextDrawFont(Galaxy3KeyBoard[9], 2);
  1747. TextDrawLetterSize(Galaxy3KeyBoard[9], 0.390000, 1.400000);
  1748. TextDrawColor(Galaxy3KeyBoard[9], 255);
  1749. TextDrawSetOutline(Galaxy3KeyBoard[9], 0);
  1750. TextDrawSetProportional(Galaxy3KeyBoard[9], 1);
  1751. TextDrawSetShadow(Galaxy3KeyBoard[9], 0);
  1752. TextDrawUseBox(Galaxy3KeyBoard[9], 1);
  1753. TextDrawBoxColor(Galaxy3KeyBoard[9], -1);
  1754. TextDrawTextSize(Galaxy3KeyBoard[9], 15.000000, 15.000000);
  1755. TextDrawSetSelectable(Galaxy3KeyBoard[9], 1);
  1756.  
  1757. Galaxy3KeyBoard[10] = TextDrawCreate(555.000000, 352.000000, "0");
  1758. TextDrawAlignment(Galaxy3KeyBoard[10], 2);
  1759. TextDrawBackgroundColor(Galaxy3KeyBoard[10], 255);
  1760. TextDrawFont(Galaxy3KeyBoard[10], 2);
  1761. TextDrawLetterSize(Galaxy3KeyBoard[10], 0.390000, 1.400000);
  1762. TextDrawColor(Galaxy3KeyBoard[10], 255);
  1763. TextDrawSetOutline(Galaxy3KeyBoard[10], 0);
  1764. TextDrawSetProportional(Galaxy3KeyBoard[10], 1);
  1765. TextDrawSetShadow(Galaxy3KeyBoard[10], 0);
  1766. TextDrawUseBox(Galaxy3KeyBoard[10], 1);
  1767. TextDrawBoxColor(Galaxy3KeyBoard[10], -1);
  1768. TextDrawTextSize(Galaxy3KeyBoard[10], 15.000000, 15.000000);
  1769. TextDrawSetSelectable(Galaxy3KeyBoard[10], 1);
  1770.  
  1771. Galaxy3KeyBoard[11] = TextDrawCreate(596.000000, 352.000000, "-");
  1772. TextDrawAlignment(Galaxy3KeyBoard[11], 2);
  1773. TextDrawBackgroundColor(Galaxy3KeyBoard[11], 255);
  1774. TextDrawFont(Galaxy3KeyBoard[11], 2);
  1775. TextDrawLetterSize(Galaxy3KeyBoard[11], 0.390000, 1.400000);
  1776. TextDrawColor(Galaxy3KeyBoard[11], 255);
  1777. TextDrawSetOutline(Galaxy3KeyBoard[11], 0);
  1778. TextDrawSetProportional(Galaxy3KeyBoard[11], 1);
  1779. TextDrawSetShadow(Galaxy3KeyBoard[11], 0);
  1780. TextDrawUseBox(Galaxy3KeyBoard[11], 1);
  1781. TextDrawBoxColor(Galaxy3KeyBoard[11], -1);
  1782. TextDrawTextSize(Galaxy3KeyBoard[11], 15.000000, 15.000000);
  1783. TextDrawSetSelectable(Galaxy3KeyBoard[11], 1);
  1784.  
  1785. Galaxy3KeyBoard[12] = TextDrawCreate(514.000000, 376.000000, "CALL");
  1786. TextDrawAlignment(Galaxy3KeyBoard[12], 2);
  1787. TextDrawBackgroundColor(Galaxy3KeyBoard[12], 255);
  1788. TextDrawFont(Galaxy3KeyBoard[12], 2);
  1789. TextDrawLetterSize(Galaxy3KeyBoard[12], 0.190000, 1.400000);
  1790. TextDrawColor(Galaxy3KeyBoard[12], 255);
  1791. TextDrawSetOutline(Galaxy3KeyBoard[12], 0);
  1792. TextDrawSetProportional(Galaxy3KeyBoard[12], 1);
  1793. TextDrawSetShadow(Galaxy3KeyBoard[12], 0);
  1794. TextDrawUseBox(Galaxy3KeyBoard[12], 1);
  1795. TextDrawBoxColor(Galaxy3KeyBoard[12], 16711935);
  1796. TextDrawTextSize(Galaxy3KeyBoard[12], 15.000000, 15.000000);
  1797. TextDrawSetSelectable(Galaxy3KeyBoard[12], 1);
  1798.  
  1799. Galaxy3KeyBoard[13] = TextDrawCreate(555.000000, 376.000000, "SMS");
  1800. TextDrawAlignment(Galaxy3KeyBoard[13], 2);
  1801. TextDrawBackgroundColor(Galaxy3KeyBoard[13], 255);
  1802. TextDrawFont(Galaxy3KeyBoard[13], 2);
  1803. TextDrawLetterSize(Galaxy3KeyBoard[13], 0.230000, 1.400000);
  1804. TextDrawColor(Galaxy3KeyBoard[13], 255);
  1805. TextDrawSetOutline(Galaxy3KeyBoard[13], 0);
  1806. TextDrawSetProportional(Galaxy3KeyBoard[13], 1);
  1807. TextDrawSetShadow(Galaxy3KeyBoard[13], 0);
  1808. TextDrawUseBox(Galaxy3KeyBoard[13], 1);
  1809. TextDrawBoxColor(Galaxy3KeyBoard[13], -65281);
  1810. TextDrawTextSize(Galaxy3KeyBoard[13], 15.000000, 15.000000);
  1811. TextDrawSetSelectable(Galaxy3KeyBoard[13], 1);
  1812.  
  1813. Galaxy3KeyBoard[14] = TextDrawCreate(596.000000, 376.000000, "~<~");
  1814. TextDrawAlignment(Galaxy3KeyBoard[14], 2);
  1815. TextDrawBackgroundColor(Galaxy3KeyBoard[14], 255);
  1816. TextDrawFont(Galaxy3KeyBoard[14], 2);
  1817. TextDrawLetterSize(Galaxy3KeyBoard[14], 0.230000, 1.400000);
  1818. TextDrawColor(Galaxy3KeyBoard[14], 255);
  1819. TextDrawSetOutline(Galaxy3KeyBoard[14], 0);
  1820. TextDrawSetProportional(Galaxy3KeyBoard[14], 1);
  1821. TextDrawSetShadow(Galaxy3KeyBoard[14], 0);
  1822. TextDrawUseBox(Galaxy3KeyBoard[14], 1);
  1823. TextDrawBoxColor(Galaxy3KeyBoard[14], 255);
  1824. TextDrawTextSize(Galaxy3KeyBoard[14], 15.000000, 15.000000);
  1825. TextDrawSetSelectable(Galaxy3KeyBoard[14], 1);
  1826.  
  1827. Galaxy3KeyBoard[15] = TextDrawCreate(555.000000, 203.000000, "KEYBOARD");
  1828. TextDrawAlignment(Galaxy3KeyBoard[15], 2);
  1829. TextDrawBackgroundColor(Galaxy3KeyBoard[15], 255);
  1830. TextDrawFont(Galaxy3KeyBoard[15], 2);
  1831. TextDrawLetterSize(Galaxy3KeyBoard[15], 0.379999, 1.399999);
  1832. TextDrawColor(Galaxy3KeyBoard[15], -16776961);
  1833. TextDrawSetOutline(Galaxy3KeyBoard[15], 0);
  1834. TextDrawSetProportional(Galaxy3KeyBoard[15], 1);
  1835. TextDrawSetShadow(Galaxy3KeyBoard[15], 0);
  1836. TextDrawUseBox(Galaxy3KeyBoard[15], 1);
  1837. TextDrawBoxColor(Galaxy3KeyBoard[15], 255);
  1838. TextDrawTextSize(Galaxy3KeyBoard[15], 0.000000, 100.000000);
  1839. TextDrawSetSelectable(Galaxy3KeyBoard[15], 0);
  1840.  
  1841. Galaxy3KeyBoard[16] = TextDrawCreate(553.000000, 220.000000, "BACK");
  1842. TextDrawAlignment(Galaxy3KeyBoard[16], 2);
  1843. TextDrawBackgroundColor(Galaxy3KeyBoard[16], 255);
  1844. TextDrawFont(Galaxy3KeyBoard[16], 1);
  1845. TextDrawLetterSize(Galaxy3KeyBoard[16], 0.470000, 1.100000);
  1846. TextDrawColor(Galaxy3KeyBoard[16], -1);
  1847. TextDrawSetOutline(Galaxy3KeyBoard[16], 0);
  1848. TextDrawSetProportional(Galaxy3KeyBoard[16], 1);
  1849. TextDrawSetShadow(Galaxy3KeyBoard[16], 1);
  1850. TextDrawUseBox(Galaxy3KeyBoard[16], 1);
  1851. TextDrawBoxColor(Galaxy3KeyBoard[16], 255);
  1852. TextDrawTextSize(Galaxy3KeyBoard[16], 10.000000, 55.000000);
  1853. TextDrawSetSelectable(Galaxy3KeyBoard[16], 1);
  1854. //
  1855. Galaxy3Latitude[0] = TextDrawCreate(555.000000, 203.000000, "LATITUDE");
  1856. TextDrawAlignment(Galaxy3Latitude[0], 2);
  1857. TextDrawBackgroundColor(Galaxy3Latitude[0], 255);
  1858. TextDrawFont(Galaxy3Latitude[0], 2);
  1859. TextDrawLetterSize(Galaxy3Latitude[0], 0.379999, 1.399999);
  1860. TextDrawColor(Galaxy3Latitude[0], -16776961);
  1861. TextDrawSetOutline(Galaxy3Latitude[0], 0);
  1862. TextDrawSetProportional(Galaxy3Latitude[0], 1);
  1863. TextDrawSetShadow(Galaxy3Latitude[0], 0);
  1864. TextDrawUseBox(Galaxy3Latitude[0], 1);
  1865. TextDrawBoxColor(Galaxy3Latitude[0], 255);
  1866. TextDrawTextSize(Galaxy3Latitude[0], 0.000000, 100.000000);
  1867. TextDrawSetSelectable(Galaxy3Latitude[0], 0);
  1868.  
  1869. Galaxy3Latitude[1] = TextDrawCreate(555.000000, 238.000000, "~r~PLACE~n~~g~Los Angeles~n~~n~~r~ZONE~n~~g~GPS....");
  1870. TextDrawAlignment(Galaxy3Latitude[1], 2);
  1871. TextDrawBackgroundColor(Galaxy3Latitude[1], 255);
  1872. TextDrawFont(Galaxy3Latitude[1], 2);
  1873. TextDrawLetterSize(Galaxy3Latitude[1], 0.290000, 1.200000);
  1874. TextDrawColor(Galaxy3Latitude[1], -1);
  1875. TextDrawSetOutline(Galaxy3Latitude[1], 0);
  1876. TextDrawSetProportional(Galaxy3Latitude[1], 1);
  1877. TextDrawSetShadow(Galaxy3Latitude[1], 0);
  1878. TextDrawUseBox(Galaxy3Latitude[1], 1);
  1879. TextDrawBoxColor(Galaxy3Latitude[1], 255);
  1880. TextDrawTextSize(Galaxy3Latitude[1], 0.000000, 98.000000);
  1881. TextDrawSetSelectable(Galaxy3Latitude[1], 0);
  1882. //Music player
  1883. Galaxy3MusicPlayer[0] = TextDrawCreate(555.000000, 203.000000, "MUSIC");
  1884. TextDrawAlignment(Galaxy3MusicPlayer[0], 2);
  1885. TextDrawBackgroundColor(Galaxy3MusicPlayer[0], 255);
  1886. TextDrawFont(Galaxy3MusicPlayer[0], 2);
  1887. TextDrawLetterSize(Galaxy3MusicPlayer[0], 0.379999, 1.399999);
  1888. TextDrawColor(Galaxy3MusicPlayer[0], -16776961);
  1889. TextDrawSetOutline(Galaxy3MusicPlayer[0], 0);
  1890. TextDrawSetProportional(Galaxy3MusicPlayer[0], 1);
  1891. TextDrawSetShadow(Galaxy3MusicPlayer[0], 0);
  1892. TextDrawUseBox(Galaxy3MusicPlayer[0], 1);
  1893. TextDrawBoxColor(Galaxy3MusicPlayer[0], 255);
  1894. TextDrawTextSize(Galaxy3MusicPlayer[0], 0.000000, 100.000000);
  1895. TextDrawSetSelectable(Galaxy3MusicPlayer[0], 0);
  1896.  
  1897. Galaxy3MusicPlayer[1] = TextDrawCreate(555.000000, 239.000000, "PSY - Gangnam Style");
  1898. TextDrawAlignment(Galaxy3MusicPlayer[1], 2);
  1899. TextDrawBackgroundColor(Galaxy3MusicPlayer[1], 255);
  1900. TextDrawFont(Galaxy3MusicPlayer[1], 1);
  1901. TextDrawLetterSize(Galaxy3MusicPlayer[1], 0.260000, 0.899999);
  1902. TextDrawColor(Galaxy3MusicPlayer[1], -1);
  1903. TextDrawSetOutline(Galaxy3MusicPlayer[1], 0);
  1904. TextDrawSetProportional(Galaxy3MusicPlayer[1], 1);
  1905. TextDrawSetShadow(Galaxy3MusicPlayer[1], 1);
  1906. TextDrawUseBox(Galaxy3MusicPlayer[1], 1);
  1907. TextDrawBoxColor(Galaxy3MusicPlayer[1], 255);
  1908. TextDrawTextSize(Galaxy3MusicPlayer[1], 5.000000, 99.000000);
  1909. TextDrawSetSelectable(Galaxy3MusicPlayer[1], 1);
  1910.  
  1911. Galaxy3MusicPlayer[2] = TextDrawCreate(555.000000, 251.000000, "Eric Prydz - Pjanoo");
  1912. TextDrawAlignment(Galaxy3MusicPlayer[2], 2);
  1913. TextDrawBackgroundColor(Galaxy3MusicPlayer[2], 255);
  1914. TextDrawFont(Galaxy3MusicPlayer[2], 1);
  1915. TextDrawLetterSize(Galaxy3MusicPlayer[2], 0.260000, 0.899999);
  1916. TextDrawColor(Galaxy3MusicPlayer[2], -1);
  1917. TextDrawSetOutline(Galaxy3MusicPlayer[2], 0);
  1918. TextDrawSetProportional(Galaxy3MusicPlayer[2], 1);
  1919. TextDrawSetShadow(Galaxy3MusicPlayer[2], 1);
  1920. TextDrawUseBox(Galaxy3MusicPlayer[2], 1);
  1921. TextDrawBoxColor(Galaxy3MusicPlayer[2], 255);
  1922. TextDrawTextSize(Galaxy3MusicPlayer[2], 5.000000, 99.000000);
  1923. TextDrawSetSelectable(Galaxy3MusicPlayer[2], 1);
  1924.  
  1925. Galaxy3MusicPlayer[3] = TextDrawCreate(555.000000, 264.000000, "LMFAO - Party Rock");
  1926. TextDrawAlignment(Galaxy3MusicPlayer[3], 2);
  1927. TextDrawBackgroundColor(Galaxy3MusicPlayer[3], 255);
  1928. TextDrawFont(Galaxy3MusicPlayer[3], 1);
  1929. TextDrawLetterSize(Galaxy3MusicPlayer[3], 0.260000, 0.899999);
  1930. TextDrawColor(Galaxy3MusicPlayer[3], -1);
  1931. TextDrawSetOutline(Galaxy3MusicPlayer[3], 0);
  1932. TextDrawSetProportional(Galaxy3MusicPlayer[3], 1);
  1933. TextDrawSetShadow(Galaxy3MusicPlayer[3], 1);
  1934. TextDrawUseBox(Galaxy3MusicPlayer[3], 1);
  1935. TextDrawBoxColor(Galaxy3MusicPlayer[3], 255);
  1936. TextDrawTextSize(Galaxy3MusicPlayer[3], 5.000000, 99.000000);
  1937. TextDrawSetSelectable(Galaxy3MusicPlayer[3], 1);
  1938.  
  1939. Galaxy3MusicPlayer[4] = TextDrawCreate(555.000000, 276.000000, "Safari Duo");
  1940. TextDrawAlignment(Galaxy3MusicPlayer[4], 2);
  1941. TextDrawBackgroundColor(Galaxy3MusicPlayer[4], 255);
  1942. TextDrawFont(Galaxy3MusicPlayer[4], 1);
  1943. TextDrawLetterSize(Galaxy3MusicPlayer[4], 0.260000, 0.899999);
  1944. TextDrawColor(Galaxy3MusicPlayer[4], -1);
  1945. TextDrawSetOutline(Galaxy3MusicPlayer[4], 0);
  1946. TextDrawSetProportional(Galaxy3MusicPlayer[4], 1);
  1947. TextDrawSetShadow(Galaxy3MusicPlayer[4], 1);
  1948. TextDrawUseBox(Galaxy3MusicPlayer[4], 1);
  1949. TextDrawBoxColor(Galaxy3MusicPlayer[4], 255);
  1950. TextDrawTextSize(Galaxy3MusicPlayer[4], 5.000000, 99.000000);
  1951. TextDrawSetSelectable(Galaxy3MusicPlayer[4], 1);
  1952.  
  1953. Galaxy3MusicPlayer[5] = TextDrawCreate(555.000000, 288.000000, "Infinity");
  1954. TextDrawAlignment(Galaxy3MusicPlayer[5], 2);
  1955. TextDrawBackgroundColor(Galaxy3MusicPlayer[5], 255);
  1956. TextDrawFont(Galaxy3MusicPlayer[5], 1);
  1957. TextDrawLetterSize(Galaxy3MusicPlayer[5], 0.260000, 0.899999);
  1958. TextDrawColor(Galaxy3MusicPlayer[5], -1);
  1959. TextDrawSetOutline(Galaxy3MusicPlayer[5], 0);
  1960. TextDrawSetProportional(Galaxy3MusicPlayer[5], 1);
  1961. TextDrawSetShadow(Galaxy3MusicPlayer[5], 1);
  1962. TextDrawUseBox(Galaxy3MusicPlayer[5], 1);
  1963. TextDrawBoxColor(Galaxy3MusicPlayer[5], 255);
  1964. TextDrawTextSize(Galaxy3MusicPlayer[5], 5.000000, 99.000000);
  1965. TextDrawSetSelectable(Galaxy3MusicPlayer[5], 1);
  1966.  
  1967. Galaxy3MusicPlayer[6] = TextDrawCreate(555.000000, 300.000000, "STOP");
  1968. TextDrawAlignment(Galaxy3MusicPlayer[6], 2);
  1969. TextDrawBackgroundColor(Galaxy3MusicPlayer[6], 255);
  1970. TextDrawFont(Galaxy3MusicPlayer[6], 1);
  1971. TextDrawLetterSize(Galaxy3MusicPlayer[6], 0.260000, 0.899999);
  1972. TextDrawColor(Galaxy3MusicPlayer[6], -1);
  1973. TextDrawSetOutline(Galaxy3MusicPlayer[6], 0);
  1974. TextDrawSetProportional(Galaxy3MusicPlayer[6], 1);
  1975. TextDrawSetShadow(Galaxy3MusicPlayer[6], 1);
  1976. TextDrawUseBox(Galaxy3MusicPlayer[6], 1);
  1977. TextDrawBoxColor(Galaxy3MusicPlayer[6], 255);
  1978. TextDrawTextSize(Galaxy3MusicPlayer[6], 5.000000, 99.000000);
  1979. TextDrawSetSelectable(Galaxy3MusicPlayer[6], 1);
  1980. ////////////////////////////////////////////////////////////////////////////
  1981.  
  1982. for(new c=0; c<MAX_SPEEDCAMS; c++) {
  1983. new textlabel[50];
  1984. CreateDynamicObject(SpeedCams[c][CamObject], SpeedCams[c][SCamX], SpeedCams[c][SCamY], SpeedCams[c][SCamZ], 0.0, 0.0, 10.0);
  1985. format(textlabel, sizeof(textlabel), "Speed Limit\n%d MPH", SpeedCams[c][CamSpeed]);
  1986. CreateDynamic3DTextLabel(textlabel,COLOR_YELLOW,SpeedCams[c][SCamX], SpeedCams[c][SCamY], SpeedCams[c][SCamZ],25.0);//
  1987. }
  1988.  
  1989. EnableStuntBonusForAll(0);
  1990. new servergmtextstr[128];
  1991. format(servergmtextstr, 128, "gamemodetext %s", SERVER_GM_TEXT);
  1992. SendRconCommand(servergmtextstr); // DO NOT REMOVE THIS
  1993. new string[42];
  1994. new string1[MAX_PLAYER_NAME];
  1995. ShowPlayerMarkers(PLAYER_MARKERS_MODE_STREAMED);
  1996. DisableInteriorEnterExits();
  1997. InitTurfWars();
  1998. LoadTurfWars();
  1999. InitPaintballArenas();
  2000. LoadPaintballArenas();
  2001. InitEventPoints();
  2002. LoadEventPoints();
  2003. LoadDynamicDoors();
  2004. LoadDynamicMapIcons();
  2005. LoadHouses();
  2006. LoadBusinesses();
  2007. LoadGates();
  2008. LoadBoxer();
  2009. LoadStuff();
  2010. LoadElevatorStuff();
  2011. LoadServerStats();
  2012. LoadThePay();
  2013. LoadFamilies();
  2014. LoadPoints();
  2015. LoadcDealerships();
  2016. LoadMatsSystem();
  2017. LoadDrugSystem();
  2018.  
  2019. SetTimer("MAINTENANCE_T4",600000,1);
  2020. SetTimer("MAINTENANCE_T3",900000,1);
  2021. SetTimer("ShowHelp", 60 * 3 * 1000, 1);
  2022. SetTimer("ShowAdvert", 3600000, 1);
  2023. //SetTimer("Toll", 1000, 1); // TOLL'S CHECK
  2024.  
  2025. for(new f = 0; f < sizeof(FamilyInfo); f++)
  2026. {
  2027. for(new fv = 0; fv < MAX_GANG_VEHICLES; fv++)
  2028. {
  2029. FamilyVehicleInfo[f][fv][fvModelId] = 0;
  2030. FamilyVehicleInfo[f][fv][fvSpawnx] = 0.0;
  2031. FamilyVehicleInfo[f][fv][fvSpawny] = 0.0;
  2032. FamilyVehicleInfo[f][fv][fvSpawnz] = 0.0;
  2033. FamilyVehicleInfo[f][fv][fvSpawna] = 0.0;
  2034. FamilyVehicleInfo[f][fv][fvPaintJob] = -1;
  2035. FamilyVehicleInfo[f][fv][fvColor1] = 126;
  2036. FamilyVehicleInfo[f][fv][fvColor2] = 126;
  2037. FamilyVehicleInfo[f][fv][fvPrice] = 0;
  2038. FamilyVehicleInfo[f][fv][fvFuel] = 100.00;
  2039. FamilyVehicleInfo[f][fv][fvId] = INVALID_VEHICLE_ID;
  2040. }
  2041. }
  2042. // Automatically locks all paintball arena's
  2043. for(new i = 0; i < MAX_ARENAS; i++)
  2044. {
  2045. PaintBallArena[i][pbLocked] = 1;
  2046. }
  2047.  
  2048. LoadFamiliesHQ();
  2049. LoadMOTDs();
  2050. for(new i = 1; i < MAX_ACTIVE_REPORTS; i++)
  2051. {
  2052. ClearReport(i);
  2053. }
  2054.  
  2055. SetNameTagDrawDistance(60.0);
  2056.  
  2057. GiftAllowed = 1;
  2058. News[hTaken1] = 0; News[hTaken2] = 0; News[hTaken3] = 0; News[hTaken4] = 0; News[hTaken5] = 0;
  2059. format(string, sizeof(string), "Nothing");
  2060. strmid(News[hAdd1], string, 0, strlen(string), 255);
  2061. strmid(News[hAdd2], string, 0, strlen(string), 255);
  2062. strmid(News[hAdd3], string, 0, strlen(string), 255);
  2063. strmid(News[hAdd4], string, 0, strlen(string), 255);
  2064. strmid(News[hAdd5], string, 0, strlen(string), 255);
  2065. format(string1, sizeof(string1), "No-one");
  2066. strmid(News[hContact1], string1, 0, strlen(string1), 255);
  2067. strmid(News[hContact2], string1, 0, strlen(string1), 255);
  2068. strmid(News[hContact3], string1, 0, strlen(string1), 255);
  2069. strmid(News[hContact4], string1, 0, strlen(string1), 255);
  2070. strmid(News[hContact5], string1, 0, strlen(string1), 255);
  2071. PlayerHaul[43][pCapasity] = 100;
  2072. PlayerHaul[44][pCapasity] = 100;
  2073. PlayerHaul[45][pCapasity] = 50;
  2074. PlayerHaul[46][pCapasity] = 50;
  2075. format(objstore, sizeof(objstore), "MOLE: I got nothing, check back with me later.");
  2076. format(cbjstore, sizeof(cbjstore), "DISPATCH: There is nothing in your Vicinity, Out.");
  2077. gettime(ghour, gminute, gsecond);
  2078. FixHour(ghour);
  2079. ghour = shifthour;
  2080. SetWeather(2);
  2081. if(!realtime)
  2082. {
  2083. SetWorldTime(wtime);
  2084. gTime = wtime;
  2085. }
  2086.  
  2087. AllowInteriorWeapons(1);
  2088. //UsePlayerPedAnims();
  2089.  
  2090. // CreatedCars check
  2091. for(new i = 0; i < sizeof(CreatedCars); i++)
  2092. {
  2093. CreatedCars[i] = INVALID_VEHICLE_ID;
  2094. }
  2095. // BaitCars check
  2096. for(new i = 0; i < sizeof(BaitCars); i++)
  2097. {
  2098. BaitCars[i] = INVALID_VEHICLE_ID;
  2099. }
  2100. for(new v = 0; v < MAX_VEHICLES; v++)
  2101. {
  2102. VehicleFuel[v] = 100.0;
  2103. }
  2104. // Player Class's
  2105. for(new i = 0; i <= sizeof(Peds)-1; i++)
  2106. {
  2107. AddPlayerClass(Peds[i][0],1958.3783,1343.1572,1100.3746,269.1425,-1,-1,-1,-1,-1,-1);
  2108. }
  2109.  
  2110. //3D Text Labels
  2111. Create3DTextLabel("DOC Booking Point\ntype /arrest",COLOR_1YELLOW,1820.199,432.948,19.290,22,0);
  2112. Create3DTextLabel("CHP Arrest Point\ntype /arrest",COLOR_1YELLOW,-2064.253, -213.558, 36.320,22,0);
  2113. Create3DTextLabel("Angel Pine Booking\ntype /arrest",COLOR_1YELLOW,-2171.44,-2361.47,30.54,22,0);
  2114. Create3DTextLabel("Coastguard Booking\ntype /arrest",COLOR_1YELLOW,-1435.0679,501.4600,3.0414,22,0);
  2115. Create3DTextLabel("Coastguard Booking\ntype /arrest",COLOR_1YELLOW,-1454.9537,501.4178,18.2653,22,0);
  2116. Create3DTextLabel("Clark County Detention Center\ntype /arrest",COLOR_1YELLOW,2294.5334,2451.6362,10.7452,22,0);
  2117. Create3DTextLabel("Dillimore Booking\ntype /arrest",COLOR_1YELLOW, 844.4416, -601.0480, 18.4219,22,0);
  2118. Create3DTextLabel("CAUTION:Low Height",COLOR_1YELLOW,1528.180664,-2680.8,14.8,50,0);
  2119. Create3DTextLabel("CAUTION:Low Height",COLOR_1YELLOW,2059.4135,-2672.579,19.2,50,0);
  2120. Create3DTextLabel("Los Angeles City Hall",COLOR_1BLUE,1481.400,-1774.0,19.6,12,0);
  2121. Create3DTextLabel("LAFD is hiring! Check www.shockroleplay.net for more info",COLOR_1RED,1411.954,-1723,32,50,0);
  2122. Create3DTextLabel("The boys in blue are looking for new recruits! Apply at www.shockroleplay.net",COLOR_1YELLOW,1538.151,-1610.551,25,50,0);
  2123. Create3DTextLabel("Need a job? Check with human resources! www.shockroleplay.net",COLOR_1YELLOW,1835.211,-1836.448,25,50,0);
  2124. Create3DTextLabel("Texas Petroleum is hiring truck drivers, \n inquire @ www.shockroleplay.net",COLOR_YELLOW,1564.050,-1722.822,28.344,50,0);
  2125. Create3DTextLabel("PIZZA COON PIZZARIA:\n Delivered in 30 seconds or it's free!",COLOR_1RED,2093.800,-1787.132,21,30,0);
  2126. Create3DTextLabel("TPS Yard:\n Type /tpsjob \n /tpsinfo for help",COLOR_1YELLOW,2794.532,-2437.130,14.9,30,0);
  2127. Create3DTextLabel("Airplane Mission:\n Type /aajob \n /aainfo for help",COLOR_1BLUE,1711.3271,-2411.0510,13.6257,30,0);
  2128. Create3DTextLabel("DMV: CDL Office\n /buycdl to buy a license",COLOR_1YELLOW,-49.9631,-269.1552,6.6212,30,0);
  2129. Create3DTextLabel("KCAL-CBS2\n Type /ad to place an advertisement.",COLOR_1YELLOW,1798.5789, -1306.5524, 13.8140,30,0);
  2130. Create3DTextLabel("LA Times\n Type /ad to place an advertisement.",COLOR_1YELLOW,1386.5204, 293.0154, 20.0909,30,0);
  2131. Create3DTextLabel("Baitcar\nUse /deploybcar or /undeploy.",COLOR_1YELLOW,276.5769,110.9097,1004.6172,15.4165,133337,0);
  2132. Create3DTextLabel("Baitcar\nUse /deploybcar or /undeploy.",COLOR_1YELLOW,244.7799,185.5433,1008.1719,114.5744,22,0);
  2133. Create3DTextLabel("Holding Cells\ntype /arrest",COLOR_1YELLOW,-2240.6609,2355.2236,4.9786,22,0);
  2134. Create3DTextLabel("DMV: /enrollezpass to begin!",COLOR_1YELLOW,822.7379,4.1836,1004.1797,88.5448,0);
  2135.  
  2136. // Ammunations
  2137. Create3DTextLabel("Ammunition Shelves\ntype /buyammo",COLOR_1YELLOW,308.3719,-142.1918,1000.6021,22,0);
  2138. Create3DTextLabel("Ammunition Shelves\ntype /buyammo",COLOR_1YELLOW,285.4588,-74.0586,1001.5156,22,0);
  2139. Create3DTextLabel("Ammunition Shelves\ntype /buyammo",COLOR_1YELLOW,312.7177,-167.0215,1000.6747,22,0);
  2140. Create3DTextLabel("Ammunition Shelves\ntype /buyammo",COLOR_1YELLOW,286.2784,-107.8922,1001.5156,22,0);
  2141.  
  2142. MainMenu[0] = TextDrawCreate(250.000000, 343.000000, "~n~~n~~n~~n~~n~~n~");
  2143. TextDrawAlignment(MainMenu[0], 2);
  2144. TextDrawBackgroundColor(MainMenu[0], 255);
  2145. TextDrawFont(MainMenu[0], 1);
  2146. TextDrawLetterSize(MainMenu[0], 1.000000, 2.000000);
  2147. TextDrawColor(MainMenu[0], -16776961);
  2148. TextDrawSetOutline(MainMenu[0], 1);
  2149. TextDrawSetProportional(MainMenu[0], 1);
  2150. TextDrawUseBox(MainMenu[0], 1);
  2151. TextDrawBoxColor(MainMenu[0], 255);
  2152. TextDrawTextSize(MainMenu[0], 90.000000, 803.000000);
  2153.  
  2154. MainMenu[5] = TextDrawCreate(131.5 ,13, "Shock Roleplay");
  2155. TextDrawFont(MainMenu[5] , 3);
  2156. TextDrawLetterSize(MainMenu[5] , 1, 7);
  2157. TextDrawColor(MainMenu[5] , 0x1564F5FF);
  2158. TextDrawSetOutline(MainMenu[5] , true);
  2159. TextDrawSetProportional(MainMenu[5] , true);
  2160. TextDrawSetShadow(MainMenu[5] , 1);
  2161.  
  2162. // Top Bar
  2163. MainMenu[1] = TextDrawCreate(250.000000, -12.000000, "~n~~n~~n~~n~~n~~n~");
  2164. TextDrawAlignment(MainMenu[1], 2);
  2165. TextDrawBackgroundColor(MainMenu[1], 255);
  2166. TextDrawFont(MainMenu[1], 1);
  2167. TextDrawLetterSize(MainMenu[1], 1.000000, 2.000000);
  2168. TextDrawColor(MainMenu[1], -16776961);
  2169. TextDrawSetOutline(MainMenu[1], 1);
  2170. TextDrawSetProportional(MainMenu[1], 1);
  2171. TextDrawUseBox(MainMenu[1], 1);
  2172. TextDrawBoxColor(MainMenu[1], 255);
  2173. TextDrawTextSize(MainMenu[1], 90.000000, 918.000000);
  2174.  
  2175. // Top Colored Bar
  2176. MainMenu[2] = TextDrawCreate(729.000000, 99.000000, "_");
  2177. TextDrawBackgroundColor(MainMenu[2], 255);
  2178. TextDrawFont(MainMenu[2], 1);
  2179. TextDrawLetterSize(MainMenu[2], 50.000000, 0.099999);
  2180. TextDrawColor(MainMenu[2], -16776961);
  2181. TextDrawSetOutline(MainMenu[2], 0);
  2182. TextDrawSetProportional(MainMenu[2], 1);
  2183. TextDrawSetShadow(MainMenu[2], 1);
  2184. TextDrawUseBox(MainMenu[2], 1);
  2185. TextDrawBoxColor(MainMenu[2], 0x1564F5FF);
  2186. TextDrawTextSize(MainMenu[2], -5.000000, 1031.000000);
  2187.  
  2188. /// Bottom Colored Bar
  2189. MainMenu[3] = TextDrawCreate(729.000000, 340.000000, "_");
  2190. TextDrawBackgroundColor(MainMenu[3], 255);
  2191. TextDrawFont(MainMenu[3], 1);
  2192. TextDrawLetterSize(MainMenu[3], 50.000000, 0.099999);
  2193. TextDrawColor(MainMenu[3], -16776961);
  2194. TextDrawSetOutline(MainMenu[3], 0);
  2195. TextDrawSetProportional(MainMenu[3], 1);
  2196. TextDrawSetShadow(MainMenu[3], 1);
  2197. TextDrawUseBox(MainMenu[3], 1);
  2198. TextDrawBoxColor(MainMenu[3], 0x1564F5FF);
  2199. TextDrawTextSize(MainMenu[3], -5.000000, 1031.000000);
  2200.  
  2201. //LAPD Main Station Vehicles
  2202. LSPDVehicles[0] = AddStaticVehicleEx(596, 1602.5122, -1680.3663, 5.4630, 90.1200, 0, 1, FACTION_RESPAWN);
  2203. LSPDVehicles[1] = AddStaticVehicleEx(596, 1602.4829, -1684.0609, 5.4630, 90.1200, 0, 1, FACTION_RESPAWN);
  2204. LSPDVehicles[2] = AddStaticVehicleEx(596, 1602.5535, -1688.0438, 5.4630, 90.1200, 0, 1, FACTION_RESPAWN);
  2205. LSPDVehicles[3] = AddStaticVehicleEx(596, 1602.6227, -1692.1034, 5.4630, 90.1200, 0, 1, FACTION_RESPAWN);
  2206. LSPDVehicles[4] = AddStaticVehicleEx(596, 1602.4873, -1696.2058, 5.4630, 90.1200, 0, 1, FACTION_RESPAWN);
  2207. LSPDVehicles[5] = AddStaticVehicleEx(596, 1602.5120, -1700.2861, 5.4630, 90.1200, 0, 1, FACTION_RESPAWN);
  2208. LSPDVehicles[6] = AddStaticVehicleEx(596, 1595.6655, -1711.2139, 5.4630, 0.0000, 0, 1, FACTION_RESPAWN);
  2209. LSPDVehicles[7] = AddStaticVehicleEx(596, 1602.4758, -1704.3666, 5.4630, 90.0000, 0, 1, FACTION_RESPAWN);
  2210. LSPDVehicles[8] = AddStaticVehicleEx(596, 1591.5563, -1711.1929, 5.4630, 0.0000, 0, 1, FACTION_RESPAWN);
  2211. LSPDVehicles[9] = AddStaticVehicleEx(596, 1587.1567, -1711.0308, 5.4630, 0.0000, 0, 1, FACTION_RESPAWN);
  2212. LSPDVehicles[10] = AddStaticVehicleEx(596, 1583.3690, -1710.9269, 5.4630, 0.0000, 0, 1, FACTION_RESPAWN);
  2213. LSPDVehicles[11] = AddStaticVehicleEx(596, 1578.6202, -1711.0103, 5.4630, 0.0000, 0, 1, FACTION_RESPAWN);
  2214. LSPDVehicles[12] = AddStaticVehicleEx(598, 1574.6007, -1711.0599, 5.4630, 0.0000, 0, 1, FACTION_RESPAWN);
  2215. LSPDVehicles[13] = AddStaticVehicleEx(598, 1570.4407, -1711.0914, 5.4630, 0.0000, 0, 1, FACTION_RESPAWN);
  2216. LSPDVehicles[14] = AddStaticVehicleEx(598, 1566.0377, -1711.0865, 5.4630, 0.0000, 0, 1, FACTION_RESPAWN);
  2217. LSPDVehicles[15] = AddStaticVehicleEx(598, 1562.2946, -1711.3041, 5.4630, 0.0000, 0, 1, FACTION_RESPAWN);
  2218. LSPDVehicles[16] = AddStaticVehicleEx(490, 1558.7334, -1711.2596, 5.7731, 0.0000, 1, 1, FACTION_RESPAWN);
  2219. LSPDVehicles[17] = AddStaticVehicleEx(599, 1529.7250, -1688.2800, 5.8980, 270.0000, 0, 1, FACTION_RESPAWN);
  2220. LSPDVehicles[18] = AddStaticVehicleEx(599, 1529.6984, -1683.8052, 5.8980, 270.0000, 0, 1, FACTION_RESPAWN);
  2221. LSPDVehicles[19] = AddStaticVehicleEx(426, 1526.2618, -1644.7566, 5.4943, 180.0000, -1, -1, FACTION_RESPAWN);
  2222. LSPDVehicles[20] = AddStaticVehicleEx(426, 1530.6189, -1644.6954, 5.4943, 180.0000, -1, -1, FACTION_RESPAWN);
  2223. LSPDVehicles[21] = AddStaticVehicleEx(421, 1534.6064, -1644.5483, 5.4943, 180.0000, -1, -1, FACTION_RESPAWN);
  2224. LSPDVehicles[22] = AddStaticVehicleEx(421, 1538.6061, -1644.7013, 5.4943, 180.0000, -1, -1, FACTION_RESPAWN);
  2225. LSPDVehicles[23] = AddStaticVehicleEx(523, 1583.5237, -1680.4950, 5.3747, -60.8400, 0, 1, FACTION_RESPAWN);
  2226. LSPDVehicles[24] = AddStaticVehicleEx(523, 1583.4276, -1677.8779, 5.3747, -60.8400, 0, 1, FACTION_RESPAWN);
  2227. LSPDVehicles[26] = AddStaticVehicleEx(541, 1584.3937, -1671.6608, 5.6028, -89.6400, 0, 0, FACTION_RESPAWN); // Bullet
  2228. LSPDVehicles[27] = AddStaticVehicleEx(402, 1584.2158, -1667.7837, 5.6028, -89.6400, 0, 0, FACTION_RESPAWN); // Buffalo
  2229. LSPDVehicles[28] = AddStaticVehicleEx(528, 1543.8656, -1663.6150, 6.4303, 90.0000, 0, 1, FACTION_RESPAWN);
  2230. LSPDVehicles[29] = AddStaticVehicleEx(528, 1543.6633, -1672.0131, 6.4303, 90.0000, 0, 1, FACTION_RESPAWN);
  2231. LSPDVehicles[30] = AddStaticVehicleEx(427, 1543.5990, -1681.3265, 6.4303, 180.5453, 0, 1, FACTION_RESPAWN);
  2232. LSPDVehicles[31] = AddStaticVehicleEx(498, 1544.2075, -1656.0011, 6.1636, 91.7610, 0, 1, FACTION_RESPAWN);
  2233. LSPDVehicles[32] = AddStaticVehicleEx(596, 277.7009, -1535.2793, 24.3619, 235.9314, 0, 1, FACTION_RESPAWN);
  2234. LSPDVehicles[33] = AddStaticVehicleEx(497, 1569.6190, -1643.7563, 28.6585, 90.2414, 0, 1, FACTION_RESPAWN);
  2235. LSPDVehicles[34] = AddStaticVehicleEx(497, 1569.8668, -1657.8403, 28.6585, 90.2414, 0, 1, FACTION_RESPAWN);
  2236. LSPDVehicles[54] = AddStaticVehicleEx(560,1558.5527,-1693.5159,5.6002,180.4668,0,0, FACTION_RESPAWN); //
  2237. LSPDVehicles[25] = AddStaticVehicleEx(560,1562.7063,-1693.5046,5.5956,181.0911,0,0, FACTION_RESPAWN); //
  2238.  
  2239. //LAPD Administration/HQ Vehicles
  2240. LSPDVehicles[35] = AddStaticVehicleEx(596, 281.5859, -1529.8413, 24.3619, 235.9314, 0, 1, FACTION_RESPAWN);
  2241. LSPDVehicles[36] = AddStaticVehicleEx(596, 283.7789, -1526.5203, 24.3619, 235.9314, 0, 1, FACTION_RESPAWN);
  2242. LSPDVehicles[37] = AddStaticVehicleEx(596, 291.3855, -1545.0673, 24.3619, 414.9714, 0, 1, FACTION_RESPAWN);
  2243. LSPDVehicles[38] = AddStaticVehicleEx(596, 294.0503, -1541.0963, 24.3619, 414.9714, 0, 1, FACTION_RESPAWN);
  2244. LSPDVehicles[39] = AddStaticVehicleEx(598, 289.7881, -1517.6244, 24.3619, 235.9314, 0, 1, FACTION_RESPAWN);
  2245. LSPDVehicles[40] = AddStaticVehicleEx(598, 292.9276, -1512.9407, 24.3619, 235.9314, 0, 1, FACTION_RESPAWN);
  2246. LSPDVehicles[41] = AddStaticVehicleEx(598, 286.7833, -1521.8969, 24.3619, 235.9314, 0, 1, FACTION_RESPAWN);
  2247. LSPDVehicles[42] = AddStaticVehicleEx(599, 296.6205, -1508.3108, 24.5123, 234.6368, 0, 1, FACTION_RESPAWN);
  2248. LSPDVehicles[43] = AddStaticVehicleEx(599, 299.1129, -1504.3203, 24.5123, 235.5737, 0, 1, FACTION_RESPAWN);
  2249. LSPDVehicles[44] = AddStaticVehicleEx(490, 301.4958, -1501.0891, 24.5054, -125.3400, -1, -1, FACTION_RESPAWN);
  2250. LSPDVehicles[45] = AddStaticVehicleEx(490, 303.9569, -1497.7603, 24.4854, -125.3400, -1, -1, FACTION_RESPAWN);
  2251. LSPDVehicles[46] = AddStaticVehicleEx(426, 298.3811, -1490.6996, 24.6063, -123.3600, -1, -1, FACTION_RESPAWN);
  2252. LSPDVehicles[47] = AddStaticVehicleEx(426, 301.3723, -1487.1704, 24.6063, -123.3600, -1, -1, FACTION_RESPAWN);
  2253. LSPDVehicles[48] = AddStaticVehicleEx(426, 304.7082, -1482.4991, 24.6063, -123.3600, -1, -1, FACTION_RESPAWN);
  2254. LSPDVehicles[51] = AddStaticVehicleEx(523, 272.7154, -1532.5793, 24.6602, -123.2400, 0, 1, FACTION_RESPAWN);
  2255. LSPDVehicles[52] = AddStaticVehicleEx(523, 274.4780, -1530.5676, 24.6602, -123.2400, 0, 1, FACTION_RESPAWN);
  2256. LSPDVehicles[53] = AddStaticVehicleEx(601, 1544.5815, -1667.8574, 5.6494, 91.6244, 1, 1, FACTION_RESPAWN); // LAPDSWATTANK
  2257.  
  2258. for(new x;x<sizeof(LSPDVehicles);x++)
  2259. {
  2260. format(string, sizeof(string), "XMT %d", LSPDVehicles[x]);
  2261. SetVehicleNumberPlate(LSPDVehicles[x], string);
  2262. SetVehicleToRespawn(LSPDVehicles[x]);
  2263. Vehicle_Armor(LSPDVehicles[x]);
  2264.  
  2265. }
  2266. //LASD Vehicles
  2267. SASDVehicles[0] = AddStaticVehicleEx(597, 1395.0437, 392.6350, 19.7461, -113.6200, 0, 1, FACTION_RESPAWN); //Mont CVPI
  2268. SASDVehicles[1] = AddStaticVehicleEx(597, 1396.5731, 396.0917, 19.7461, -113.6200, 0, 1, FACTION_RESPAWN); //Mont CVPI
  2269. SASDVehicles[2] = AddStaticVehicleEx(597, 1397.9890, 399.2710, 19.7461, -113.6200, 0, 1, FACTION_RESPAWN); //Mont CVPI
  2270. SASDVehicles[3] = AddStaticVehicleEx(597, 1399.3369, 402.6563, 19.7461, -113.6200, 0, 1, FACTION_RESPAWN); //Mont CVPI
  2271. SASDVehicles[4] = AddStaticVehicleEx(597, 1400.8210, 405.7381, 19.7461, -113.6200, 0, 1, FACTION_RESPAWN); //Mont CVPI
  2272. SASDVehicles[5] = AddStaticVehicleEx(597, 1402.4045, 408.9838, 19.7461, -113.6200, 0, 1, FACTION_RESPAWN); //Mont CVPI
  2273. SASDVehicles[6] = AddStaticVehicleEx(597, 1403.5869, 412.2379, 19.6461, -113.6200, 0, 1, FACTION_RESPAWN); //Mont CVPI
  2274. SASDVehicles[7] = AddStaticVehicleEx(599, 1392.6907, 385.2490, 19.7509, -113.1000, 0, 1, FACTION_RESPAWN); //Mont Rancher
  2275. SASDVehicles[8] = AddStaticVehicleEx(599, 1394.0419, 388.6700, 19.7509, -113.1000, 0, 1, FACTION_RESPAWN); //Mont Rancher
  2276. SASDVehicles[9] = AddStaticVehicleEx(597, -2165.3738, -2389.0315, 30.6600, 52.3800, 0, 1, FACTION_RESPAWN); //AP CVPI
  2277. SASDVehicles[10] = AddStaticVehicleEx(597, -2158.6355, -2394.4170, 30.6600, 52.3800, 0, 1, FACTION_RESPAWN); //AP CVPI
  2278. SASDVehicles[11] = AddStaticVehicleEx(599, -2152.4739, -2399.2922, 30.6600, 52.3800, 0, 1, FACTION_RESPAWN); //AP Rancher
  2279. SASDVehicles[12] = AddStaticVehicleEx(597, 2266.9304, -82.7490, 26.2161, 180.8193, 1, 1, FACTION_RESPAWN); //sdsubcar1 pal
  2280. SASDVehicles[13] = AddStaticVehicleEx(597, 2262.9102, -82.7385 ,26.2149, 179.4337, 1, 1, FACTION_RESPAWN); //sdsubcar2 pal
  2281. SASDVehicles[14] = AddStaticVehicleEx(597, 2259.3047, -82.7660, 26.2124, 180.0096, 1, 1, FACTION_RESPAWN); //sdsubcar3 pal
  2282. SASDVehicles[15] = AddStaticVehicleEx(597, 2256.0344, -82.6308, 26.2243, 178.7604, 1, 1, FACTION_RESPAWN); //sdsubcar4
  2283. SASDVehicles[16] = AddStaticVehicleEx(597, 2252.3960, -82.5430, 26.2164, 178.3290, 1, 1, FACTION_RESPAWN); //sdsubcar5
  2284. SASDVehicles[17] = AddStaticVehicleEx(541, 2248.5264, -82.2177, 26.1229, 179.6241, 1, 31, FACTION_RESPAWN); //sdsubtraffic1
  2285. SASDVehicles[18] = AddStaticVehicleEx(523, 2272.3840, -77.6441, 26.1434, 206.1863, 1, 1, FACTION_RESPAWN); //sdsubbike1
  2286. SASDVehicles[19] = AddStaticVehicleEx(523, 2274.5095, -77.2993, 26.1446, 209.4313, 1, 1, FACTION_RESPAWN); //sdsubbike2
  2287. SASDVehicles[21] = AddStaticVehicleEx(426, 1387.8176, 375.0797, 19.6000, -113.0600, 1, 1, FACTION_RESPAWN); //LASD Wash
  2288. SASDVehicles[22] = AddStaticVehicleEx(490, 1389.8597, 378.1888, 19.7900, -113.4600, 0, 0, FACTION_RESPAWN); //LASD FBI Rancher
  2289. SASDVehicles[23] = AddStaticVehicleEx(490, 1391.3521, 381.6837, 19.7900, -113.4600, 1, 1, FACTION_RESPAWN); //LASD FBI Rancher
  2290. SASDVehicles[24] = AddStaticVehicleEx(427,862.9105,-582.9099,18.4231,180.6883,0,1, FACTION_RESPAWN); // WST Field Office Dillimore
  2291. SASDVehicles[25] = AddStaticVehicleEx(528,851.6684,-589.8539,18.0073,269.4362,0,0, FACTION_RESPAWN); // WST Field Office Dillimore
  2292. SASDVehicles[26] = AddStaticVehicleEx(490,859.0073,-580.3212,18.2248,181.4819,0,0, FACTION_RESPAWN); // WST Field Office Dillimore
  2293. SASDVehicles[27] = AddStaticVehicleEx(601,851.9493,-585.1282,17.8548,270.9071,0,0, FACTION_RESPAWN); // WST Field Office Dillimore
  2294. SASDVehicles[28] = AddStaticVehicleEx(490,867.2743,-580.7343,18.1454,180.1300,0,0, FACTION_RESPAWN); // WST Field Office Dillimore
  2295. SASDVehicles[29] = AddStaticVehicleEx(430,1342.1711,546.0899,-0.2602,332.1136,1,1, FACTION_RESPAWN); // LASD PREDATOR
  2296. SASDVehicles[30] = AddStaticVehicleEx(497,1379.3512,390.2412,30.9883,65.3833,0,1, FACTION_RESPAWN); // LASD CHOPPER
  2297. SASDVehicles[31] = AddStaticVehicleEx(426,1386.5867,372.2816,19.4136,248.1358,0,0, FACTION_RESPAWN); //LASD Premier
  2298. SASDVehicles[32] = AddStaticVehicleEx(597,1405.1544,415.5483,19.4498,246.1382,0,1, FACTION_RESPAWN); //Mont CVPI
  2299.  
  2300. for(new x;x<sizeof(SASDVehicles);x++)
  2301. {
  2302. format(string, sizeof(string), "XMT %d", SASDVehicles[x]);
  2303. SetVehicleNumberPlate(SASDVehicles[x], string);
  2304. SetVehicleToRespawn(SASDVehicles[x]);
  2305. Vehicle_Armor(SASDVehicles[x]);
  2306. }
  2307.  
  2308. /*
  2309. // CHP San Francisco
  2310. CHPVehicles[0] = AddStaticVehicleEx(597, -2093.7178, -191.0599, 35.8554, -179.9999, 1, 1, FACTION_RESPAWN);*/
  2311.  
  2312.  
  2313. /*for(new x;x<sizeof(CHPVehicles);x++)
  2314. {
  2315. format(string, sizeof(string), "XMT %d", CHPVehicles[x]);
  2316. SetVehicleNumberPlate(CHPVehicles[x], string);
  2317. SetVehicleToRespawn(CHPVehicles[x]);
  2318. Vehicle_Armor(CHPVehicles[x]);
  2319. }
  2320. */
  2321.  
  2322. LVMPDVehicles[0] = AddStaticVehicleEx(523,2316.8291,2431.8015,2.8460,0.2270,0,1, FACTION_RESPAWN); // bike
  2323. LVMPDVehicles[1] = AddStaticVehicleEx(523,2312.1108,2431.3230,2.8459,359.8454,0,1, FACTION_RESPAWN); // bike
  2324. LVMPDVehicles[2] = AddStaticVehicleEx(523,2307.5464,2431.2332,2.8448,0.7579,0,1, FACTION_RESPAWN); // bike
  2325. LVMPDVehicles[3] = AddStaticVehicleEx(482,2303.3762,2431.5039,3.2574,0.5586,1,1, FACTION_RESPAWN); // bike
  2326. LVMPDVehicles[4] = AddStaticVehicleEx(482,2299.0862,2431.2952,3.2567,1.2311,1,1, FACTION_RESPAWN); // bike
  2327. LVMPDVehicles[5] = AddStaticVehicleEx(598,2314.5068,2500.3311,3.0894,90.4147,0,1, FACTION_RESPAWN); // lvmpd
  2328. LVMPDVehicles[6] = AddStaticVehicleEx(598,2314.4424,2495.2290,3.0916,89.4886,0,1, FACTION_RESPAWN); // lvmpd
  2329. LVMPDVehicles[7] = AddStaticVehicleEx(598,2314.7432,2490.2883,3.0900,89.4540,0,1, FACTION_RESPAWN); // lvmpd
  2330. LVMPDVehicles[8] = AddStaticVehicleEx(598,2314.6384,2485.1479,3.0872,89.5391,0,1, FACTION_RESPAWN); // lvmpd
  2331. LVMPDVehicles[9] = AddStaticVehicleEx(598,2314.8057,2480.0708,3.0914,90.0157,0,1, FACTION_RESPAWN); // lvmpd
  2332. LVMPDVehicles[10] = AddStaticVehicleEx(598,2314.7422,2475.1772,3.0890,90.3413,0,1, FACTION_RESPAWN); // lvmpd
  2333. LVMPDVehicles[11] = AddStaticVehicleEx(598,2315.1487,2470.2100,3.0883,89.5799,0,1, FACTION_RESPAWN); // lvmpd
  2334. LVMPDVehicles[12] = AddStaticVehicleEx(598,2315.3875,2465.3242,3.0906,90.1289,0,1, FACTION_RESPAWN); // lvmpd
  2335. LVMPDVehicles[13] = AddStaticVehicleEx(598,2315.0117,2460.3296,3.0898,89.6310,0,1, FACTION_RESPAWN); // lvmpd
  2336. LVMPDVehicles[14] = AddStaticVehicleEx(598,-2226.2461,2347.6958,4.6967,132.6084,0,1, FACTION_RESPAWN); // lvmpd
  2337. LVMPDVehicles[15] = AddStaticVehicleEx(596,2240.1934,2437.4646,2.9190,270.0053,0,1, FACTION_RESPAWN); // sup
  2338. LVMPDVehicles[16] = AddStaticVehicleEx(596,2240.1138,2442.2949,2.9186,269.5179,0,1, FACTION_RESPAWN); // sup
  2339. LVMPDVehicles[17] = AddStaticVehicleEx(596,2240.1309,2447.1189,2.9207,270.5671,0,1, FACTION_RESPAWN); // sup
  2340. LVMPDVehicles[18] = AddStaticVehicleEx(596,2239.9160,2451.7859,2.9198,269.1991,0,1, FACTION_RESPAWN); // sup
  2341. LVMPDVehicles[19] = AddStaticVehicleEx(596,2239.7363,2456.7424,2.9207,270.9293,0,1, FACTION_RESPAWN); // sup
  2342. LVMPDVehicles[20] = AddStaticVehicleEx(421,2263.8169,2474.5330,3.0794,0.8641,-1,0, FACTION_RESPAWN); // Washington
  2343. LVMPDVehicles[21] = AddStaticVehicleEx(426,2281.2502,2474.4063,2.9405,359.9793,252,0, FACTION_RESPAWN); // Premier
  2344. LVMPDVehicles[22] = AddStaticVehicleEx(427,2297.9951,2464.7036,3.6657,269.5100,0,0, FACTION_RESPAWN); // enforcer
  2345. LVMPDVehicles[23] = AddStaticVehicleEx(528,2297.9187,2460.5100,3.6654,270.6606,0,0, FACTION_RESPAWN); // fbi truck
  2346. LVMPDVehicles[24] = AddStaticVehicleEx(601,2297.9258,2451.5359,3.0322,270.2767,0,0, FACTION_RESPAWN); // swat truck
  2347. LVMPDVehicles[25] = AddStaticVehicleEx(599,2277.2253,2430.9368,3.2727,359.7866,159,159, FACTION_RESPAWN); // RU
  2348. LVMPDVehicles[26] = AddStaticVehicleEx(599,2272.8579,2431.1475,3.2750,0.2614,0,0, FACTION_RESPAWN); // RU
  2349. LVMPDVehicles[27] = AddStaticVehicleEx(599,2268.4656,2430.8171,3.2730,0.1973,1,1, FACTION_RESPAWN); // RU
  2350. LVMPDVehicles[28] = AddStaticVehicleEx(599,-2229.0217,2350.5071,5.0232,131.8190,159,159, FACTION_RESPAWN); // RU
  2351. LVMPDVehicles[29] = AddStaticVehicleEx(599,-1399.9640,2659.7749,55.6888,90.4543,1,1, FACTION_RESPAWN); // LQ RU
  2352. LVMPDVehicles[30] = AddStaticVehicleEx(525,-1400.3010,2656.5032,55.2444,90.3262,0,0, FACTION_RESPAWN); // LQ Tow
  2353. LVMPDVehicles[31] = AddStaticVehicleEx(424,-1400.3423,2653.4668,55.4685,90.5240,0,1, FACTION_RESPAWN); // LQ BF Injection
  2354. LVMPDVehicles[32] = AddStaticVehicleEx(598,-210.7168,999.3846,19.4716,90.2944,0,1, FACTION_RESPAWN); // FC PATROL
  2355. LVMPDVehicles[33] = AddStaticVehicleEx(598,-210.8142,995.8851,19.4025,89.1256,0,1, FACTION_RESPAWN); // FC PATROL
  2356. LVMPDVehicles[34] = AddStaticVehicleEx(599,-226.2149,999.3721,19.5985,269.7609,159,159, FACTION_RESPAWN); // FC RU
  2357. LVMPDVehicles[35] = AddStaticVehicleEx(490,2240.4866,2461.3718,3.1981,268.8636,254,0, FACTION_RESPAWN); // FBI
  2358. LVMPDVehicles[36] = AddStaticVehicleEx(490,2239.8267,2470.9985,3.1986,269.7411,252,0, FACTION_RESPAWN); // FBI
  2359. LVMPDVehicles[37] = AddStaticVehicleEx(497,2272.5657,2446.3489,47.0886,359.8480,0,1, FACTION_RESPAWN); // Air
  2360. LVMPDVehicles[38] = AddStaticVehicleEx(585,2277.1479,2474.4661,2.9035,1.3692,-1,0, FACTION_RESPAWN); // Emperor
  2361. LVMPDVehicles[39] = AddStaticVehicleEx(426,2268.1123,2473.8384,2.9431,358.9903,254,0, FACTION_RESPAWN); // Premier
  2362. LVMPDVehicles[40] = AddStaticVehicleEx(522,2294.6145,2431.7131,2.8422,358.9326,1,1, FACTION_RESPAWN); // LV NRG1
  2363. LVMPDVehicles[41] = AddStaticVehicleEx(522,2290.3950,2431.3381,2.8448,0.5648,1,1, FACTION_RESPAWN); // LV NRG2
  2364. LVMPDVehicles[42] = AddStaticVehicleEx(430,2296.2490,518.9266,-0.3202,89.9799,159,200, FACTION_RESPAWN); // LV PREDATOR
  2365. LVMPDVehicles[43] = AddStaticVehicleEx(402,2255.3027,2431.2046,3.1050,0.6625,0,0, FACTION_RESPAWN); // LV BUFFALO
  2366. LVMPDVehicles[44] = AddStaticVehicleEx(560,2259.7241,2431.2720,2.9789,0.2614,254,0, FACTION_RESPAWN); // LV SULTAN
  2367. LVMPDVehicles[45] = AddStaticVehicleEx(541,2250.7708,2431.3105,2.8665,359.2409,0,0, FACTION_RESPAWN); // LV Bullet
  2368. LVMPDVehicles[46] = AddStaticVehicleEx(525,2285.8611,2431.3269,3.3400,0.2259,1,0, FACTION_RESPAWN); // LV Tow
  2369. LVMPDVehicles[47] = AddStaticVehicleEx(528,1162.6317,1334.0083,10.7782,90.0919,0,0, FACTION_RESPAWN); // SWAT BASE Vehicle
  2370. LVMPDVehicles[48] = AddStaticVehicleEx(427,1162.7438,1321.9484,11.0026,88.0022,0,0, FACTION_RESPAWN); // SWAT Base Vehicle
  2371. LVMPDVehicles[49] = AddStaticVehicleEx(601,1162.0996,1310.3654,10.5025,87.9195,0,0, FACTION_RESPAWN); // SWAT Base Vehicle
  2372. LVMPDVehicles[50] = AddStaticVehicleEx(402,-227.341,992.616, 19.4580,269.7609,0,0, FACTION_RESPAWN); // FC Buffalo
  2373. LVMPDVehicles[51] = AddStaticVehicleEx(457,-2244.641,2371.340,4.920,131.8190,0,1, FACTION_RESPAWN); // Bayside Caddy
  2374.  
  2375.  
  2376. for(new x;x<sizeof(LVMPDVehicles);x++)
  2377. {
  2378. format(string, sizeof(string), "EX %d", LVMPDVehicles[x]);
  2379. SetVehicleNumberPlate(LVMPDVehicles[x], string);
  2380. SetVehicleToRespawn(LVMPDVehicles[x]);
  2381. Vehicle_Armor(LVMPDVehicles[x]);
  2382. }
  2383.  
  2384. RepairVehicles[0] = AddStaticVehicleEx(552,966.1342,2081.3970,11.1489,182.3128,-1,-1, 600); // utility
  2385. RepairVehicles[1] = AddStaticVehicleEx(552,960.2251,2082.0066,11.1417,182.2623,-1,-1, 600); // utility
  2386. RepairVehicles[2] = AddStaticVehicleEx(552,937.2469,2082.2974,11.1462,179.9500,-1,-1, 600); // utility
  2387. RepairVehicles[3] = AddStaticVehicleEx(552,930.5206,2081.9119,11.1331,180.9785,-1,-1, 600); // utility
  2388. RepairVehicles[4] = AddStaticVehicleEx(552,930.1100,2063.4319,11.1455,269.6574,-1,-1, 600); // utility
  2389.  
  2390. for(new x;x<sizeof(RepairVehicles);x++)
  2391. {
  2392. SetVehicleToRespawn(RepairVehicles[x]);
  2393. Vehicle_Armor(RepairVehicles[x]);
  2394. }
  2395.  
  2396. /* //MPSVehicles (LAPD Sub Station SWAT)
  2397. MPSVehicles[0] = AddStaticVehicleEx(528, 1736.8130, -2061.1709, 14.0150, 270.0000, 0, 1, FACTION_RESPAWN);
  2398.  
  2399. for(new x;x<sizeof(MPSVehicles);x++)
  2400. {
  2401. format(string, sizeof(string), "XMT %d", MPSVehicles[x]);
  2402. SetVehicleNumberPlate(MPSVehicles[x], string);
  2403. SetVehicleToRespawn(MPSVehicles[x]);
  2404. Vehicle_Armor(MPSVehicles[x]);
  2405. }
  2406. */
  2407.  
  2408. //LAFD Vehicles
  2409. FDSAVehicles[0] = AddStaticVehicleEx(416,1751.950,-1792.000,13.3719000,180.00,-1,-1,FACTION_RESPAWN);//FD HQ AMBO
  2410. FDSAVehicles[1] = AddStaticVehicleEx(416,1751.9509,-1782.02,13.3719,180.0,-1,-1,FACTION_RESPAWN);//FD HQ AMBO
  2411. FDSAVehicles[2] = AddStaticVehicleEx(416,1751.95,-1772.0,13.3719,180.0,-1,-1,FACTION_RESPAWN);//FD HQ AMBO
  2412. FDSAVehicles[3] = AddStaticVehicleEx(416,1757.95,-1772.0,13.3719,180.0,-1,-1,FACTION_RESPAWN);//FD HQ AMBO
  2413. FDSAVehicles[4] = AddStaticVehicleEx(416,1757.9498,-1782.04,13.3719,180.0,-1,-1,FACTION_RESPAWN);//FD HQ AMBO
  2414. FDSAVehicles[5] = AddStaticVehicleEx(416,1757.95,-1792.0,13.3719,180.0,-1,-1,FACTION_RESPAWN);//FD HQ AMBO
  2415. FDSAVehicles[6] = AddStaticVehicleEx(407,1763.95,-1774.0,13.7435,180.0,-1,-1,FACTION_RESPAWN);//FD HQ ENG
  2416. FDSAVehicles[7] = AddStaticVehicleEx(544,1769.95,-1774.0,13.7435,180.0,-1,-1,FACTION_RESPAWN);//FD HQ LADDR
  2417. FDSAVehicles[8] = AddStaticVehicleEx(433,1769.95,-1789.0,13.8282,180.0,-1,-1,FACTION_RESPAWN);//FD HQ HZMT
  2418. FDSAVehicles[9] = AddStaticVehicleEx(407,1763.95,-1789.0,13.7435,180.0,-1,-1,FACTION_RESPAWN);//FD HQ ENG
  2419. FDSAVehicles[10] = AddStaticVehicleEx(563,1861.7485,-2395.5029,14.2453,175.5802,1,3,FACTION_RESPAWN); //LAX-Raindance
  2420. FDSAVehicles[11] = AddStaticVehicleEx(407,2525.79,-1531.63,24.25,00,3,3,FACTION_RESPAWN); //Engine-EastCentral
  2421. FDSAVehicles[12] = AddStaticVehicleEx(544,2529.78,-1531.63,24.25,00,3,3,FACTION_RESPAWN); //Ladder-EastCentral
  2422. FDSAVehicles[13] = AddStaticVehicleEx(416,2534.06,-1531.63,24.25,00,3,3,FACTION_RESPAWN); //Ambulance-EastCentral
  2423. FDSAVehicles[14] = AddStaticVehicleEx(490,52.2386,-181.1844,1.6481,176.2079,3,3,FACTION_RESPAWN); // Blueberry FD BatChief
  2424. FDSAVehicles[15] = AddStaticVehicleEx(407,46.8349,-185.2818,1.9552,176.7585,3,3,FACTION_RESPAWN); // Blueberry FD Engine
  2425. FDSAVehicles[16] = AddStaticVehicleEx(544,47.4979,-174.8549,1.9476,175.8579,3,3,FACTION_RESPAWN); // Blueberry FD Ladder
  2426. FDSAVehicles[17] = AddStaticVehicleEx(416,56.9252,-186.8114,1.6872,177.8921,3,3,FACTION_RESPAWN); // Blueberry FD Ambo
  2427. FDSAVehicles[18] = AddStaticVehicleEx(407,1770.0471,2075.4705,11.1967,180.0029,6,6,FACTION_RESPAWN); // CCFD Engine
  2428. FDSAVehicles[19] = AddStaticVehicleEx(544,1763.6932,2075.5103,11.0756,181.0034,6,6,FACTION_RESPAWN); // CCFD Ladder
  2429. FDSAVehicles[20] = AddStaticVehicleEx(416,1757.1957,2075.0164,10.8046,180.4741,6,6,FACTION_RESPAWN); // CCFD Amb
  2430. FDSAVehicles[21] = AddStaticVehicleEx(416,1750.7147,2074.9468,10.8001,180.1486,6,6,FACTION_RESPAWN); // CCFD Amb
  2431. FDSAVehicles[22] = AddStaticVehicleEx(433,1775.4882,2073.4307,11.2579,179.5696,6,6,FACTION_RESPAWN); // CCFD Heavy Rescue
  2432. FDSAVehicles[23] = AddStaticVehicleEx(490,1730.0631,2078.5068,10.8194,271.1577,6,6,FACTION_RESPAWN); // CCFD Chief SUV
  2433. FDSAVehicles[24] = AddStaticVehicleEx(563,1756.5839,2092.5190,21.3021,179.3897,6,6,FACTION_RESPAWN); // CCFD Helo
  2434.  
  2435. for(new x;x<sizeof(FDSAVehicles);x++)
  2436. {
  2437. format(string, sizeof(string), "XMT %d", FDSAVehicles[x]);
  2438. SetVehicleNumberPlate(FDSAVehicles[x], string);
  2439. SetVehicleToRespawn(FDSAVehicles[x]);
  2440. }
  2441.  
  2442. DOCVehicles[0] = AddStaticVehicleEx(482, 1773.2225, 431.4340, 19.9480, 263.8967, 1, 1, FACTION_RESPAWN); //DOC Transport Van
  2443. DOCVehicles[1] = AddStaticVehicleEx(482, 1773.5078, 434.7086, 19.9480, 263.8967, 1, 1, FACTION_RESPAWN); //DOC Transport Van
  2444. DOCVehicles[2] = AddStaticVehicleEx(482, 1773.9214, 437.8687, 19.9480, 263.8967, 1, 1, FACTION_RESPAWN); //DOC Transport Van
  2445. DOCVehicles[3] = AddStaticVehicleEx(482, 1774.2458, 441.4607, 19.9480, 263.8967, 1, 1, FACTION_RESPAWN); //DOC Transport Van
  2446. DOCVehicles[4] = AddStaticVehicleEx(482, 1774.7023, 444.8827, 19.9480, 263.8967, 1, 1, FACTION_RESPAWN); //DOC Transport Van
  2447. DOCVehicles[5] = AddStaticVehicleEx(482, 1775.1699, 448.3742, 19.9480, 263.8967, 1, 1, FACTION_RESPAWN); //DOC Transport Van
  2448. DOCVehicles[6] = AddStaticVehicleEx(482, 1775.4734, 451.6997, 19.9480, 263.8967, 1, 1, FACTION_RESPAWN); //DOC Transport Van
  2449. DOCVehicles[7] = AddStaticVehicleEx(487, 1847.8795, 426.2486, 28.9548, 355.5588, 0, 1, FACTION_RESPAWN);//DOC Maverick
  2450.  
  2451. for(new x;x<sizeof(DOCVehicles);x++)
  2452. {
  2453. format(string, sizeof(string), "XMT %d", DOCVehicles[x]);
  2454. SetVehicleNumberPlate(DOCVehicles[x], string);
  2455. SetVehicleToRespawn(DOCVehicles[x]);
  2456. }
  2457.  
  2458. TruckerVehicles[0] = AddStaticVehicleEx(414, 2518.1860, -2111.6328, 13.5628, 0.0000, -1, -1, 1200);
  2459. TruckerVehicles[1] = AddStaticVehicleEx(414, 2512.2454, -2111.6426, 13.5628, 0.0000, -1, -1, 1200);
  2460. TruckerVehicles[2] = AddStaticVehicleEx(414, 2506.0576, -2111.4666, 13.5628, 0.0000, -1, -1, 1200);
  2461. TruckerVehicles[3] = AddStaticVehicleEx(414, 2500.0459, -2111.6516, 13.5628, 0.0000, -1, -1, 1200);
  2462. TruckerVehicles[4] = AddStaticVehicleEx(456, 2484.9758, -2112.2786, 13.5628, 0.0000, -1, -1, 1200);
  2463. TruckerVehicles[5] = AddStaticVehicleEx(456, 2477.3127, -2112.8386, 13.5628, 0.0000, -1, -1, 1200);
  2464. TruckerVehicles[6] = AddStaticVehicleEx(456, 2469.3245, -2112.9670, 13.5628, 0.0000, -1, -1, 1200);
  2465. TruckerVehicles[7] = AddStaticVehicleEx(456, 2462.3108, -2112.9363, 13.5628, 0.0000, -1, -1, 1200);
  2466. TruckerVehicles[8] = AddStaticVehicleEx(456, 2454.5662, -2112.9326, 13.5628, 0.0000, -1, -1, 1200);
  2467. TruckerVehicles[9] = AddStaticVehicleEx(414,2455.6548,-2078.9712,13.6407,180.9476,-1, -1, 1200);
  2468. TruckerVehicles[10] = AddStaticVehicleEx(414,2460.7488,-2079.4539,13.6406,179.4788,-1, -1, 1200);
  2469. TruckerVehicles[11] = AddStaticVehicleEx(414,2466.0388,-2079.2517,13.6406,180.5432,-1, -1, 1200);
  2470. TruckerVehicles[12] = AddStaticVehicleEx(414,2471.0835,-2078.9070,13.6407,178.3993,-1, -1, 1200);
  2471. TruckerVehicles[13] = AddStaticVehicleEx(456,2478.5776,-2078.4651,13.7200,179.4983,-1, -1, 1200);
  2472. TruckerVehicles[14] = AddStaticVehicleEx(456,2485.5674,-2077.0874,13.7203,179.3109,-1, -1, 1200);
  2473. TruckerVehicles[15] = AddStaticVehicleEx(456,2492.6018,-2077.0247,13.7203,179.7272,-1, -1, 1200);
  2474. TruckerVehicles[16] = AddStaticVehicleEx(456,2509.3184,-2074.6724,13.7206,178.9307,-1, -1, 1200);
  2475. TruckerVehicles[17] = AddStaticVehicleEx(456,2522.8118,-2076.8308,13.7200,180.2656,-1, -1, 1200);
  2476. TruckerVehicles[18] = AddStaticVehicleEx(456,2532.0828,-2075.4890,13.7206,180.5280,-1, -1, 1200);
  2477.  
  2478. for(new x;x<sizeof(TruckerVehicles);x++)
  2479. {
  2480. format(string, sizeof(string), "Truck %d", TruckerVehicles[x]);
  2481. SetVehicleNumberPlate(TruckerVehicles[x], string);
  2482. SetVehicleToRespawn(TruckerVehicles[x]);
  2483. }
  2484.  
  2485. BankVehicles[0] = AddStaticVehicleEx(428,2509.4954,2493.6458,10.9442,90.3693,223,1, 600); //
  2486. BankVehicles[1] = AddStaticVehicleEx(428,2508.2637,2499.0632,10.9450,89.7106,223,1, 600); //
  2487. BankVehicles[2] = AddStaticVehicleEx(428,2509.0645,2508.7512,10.9422,90.6289,223,1, 600); //
  2488. BankVehicles[3] = AddStaticVehicleEx(428,1542.6086,-1024.1860,24.0305,343.6036,1,3, 600); // labrinks
  2489. BankVehicles[4] = AddStaticVehicleEx(428,1546.9899,-1025.3708,24.0302,343.7522,1,3, 600); // labrinks
  2490. BankVehicles[5] = AddStaticVehicleEx(428,1551.1394,-1027.1367,24.0295,344.5570,1,3, 600); // labrinks
  2491. BankVehicles[6] = AddStaticVehicleEx(428,1558.3331,-1012.1339,24.0309,181.2181,1,3, 600); // labrinks
  2492. BankVehicles[7] = AddStaticVehicleEx(428,1562.7538,-1011.7735,24.0315,181.9679,1,3, 600); // labrinks
  2493. BankVehicles[8] = AddStaticVehicleEx(428,2509.4587,2512.6633,10.9450,89.2554,223,1, 600); //
  2494. BankVehicles[9] = AddStaticVehicleEx(428,2509.0498,2516.9409,10.9442,90.0224,223,1, 600); //
  2495. BankVehicles[10] = AddStaticVehicleEx(428,2507.6768,2526.3748,10.9463,90.5124,223,1, 600); //
  2496. BankVehicles[11] = AddStaticVehicleEx(428,2509.6135,2530.1604,10.9456,91.4065,223,1, 600); //
  2497. BankVehicles[12] = AddStaticVehicleEx(428,2510.1467,2533.8896,10.9429,90.0351,223,1, 600); //
  2498. BankVehicles[13] = AddStaticVehicleEx(428,2510.2339,2537.7402,10.9446,89.6511,223,1, 600); //
  2499.  
  2500. for(new x;x<sizeof(BankVehicles);x++)
  2501. {
  2502. format(string, sizeof(string), "BRINKS %d", BankVehicles[x]);
  2503. SetVehicleNumberPlate(BankVehicles[x], string);
  2504. SetVehicleToRespawn(BankVehicles[x]);
  2505. }
  2506.  
  2507. LATRUCKVehicles[0] = AddStaticVehicleEx(514,2783.10,-2335.60,14.30,090.00000000,0,0,1200); //PETROL_TRK
  2508. LATRUCKVehicles[1] = AddStaticVehicleEx(584,2797.10,-2335.60,14.30,090.00000000,0,0,1200); //FUEL_TANKR
  2509. LATRUCKVehicles[2] = AddStaticVehicleEx(514,2783.10,-2339.60,14.30,090.00000000,0,0,1200); //PETROL_TRK
  2510. LATRUCKVehicles[3] = AddStaticVehicleEx(584,2797.10,-2339.60,14.30,090.00000000,0,0,1200); //FUEL_TANKR
  2511. LATRUCKVehicles[4] = AddStaticVehicleEx(514,2783.10,-2344.00,14.30,090.00000000,0,0,1200); //PETROL_TRK
  2512. LATRUCKVehicles[5] = AddStaticVehicleEx(584,2797.10,-2344.00,14.30,090.00000000,0,0,1200); //FUEL_TANKR
  2513. LATRUCKVehicles[6] = AddStaticVehicleEx(403,2783.14,-2349.30,14.30,090.00000000,0,0,1200); //LINERUNNER
  2514. LATRUCKVehicles[7] = AddStaticVehicleEx(584,2794.10,-2349.30,14.30,090.00000000,0,0,1200); //DUMPR_TRAILER
  2515. LATRUCKVehicles[8] = AddStaticVehicleEx(403,2783.14,-2353.50,14.30,090.00000000,0,0,1200); //LINERUNNER
  2516. LATRUCKVehicles[9] = AddStaticVehicleEx(584,2794.10,-2353.50,14.30,090.00000000,0,0,1200); //DUMPR_TRAILER
  2517. LATRUCKVehicles[10] = AddStaticVehicleEx(403,2783.14,-2357.80,14.30,090.00000000,0,0,1200); //LINERUNNER
  2518. LATRUCKVehicles[11] = AddStaticVehicleEx(584,2794.10,-2357.80,14.30,090.00000000,0,0,1200); //DUMPR_TRAILER
  2519. LATRUCKVehicles[12] = AddStaticVehicleEx(403,2774.30,-2399.10,14.30,090.00000000,0,0,1200); //LINERUNNER
  2520. LATRUCKVehicles[13] = AddStaticVehicleEx(584,2787.30,-2399.10,14.30,090.00000000,0,0,1200); //ARTC1_TRAILER
  2521. LATRUCKVehicles[14] = AddStaticVehicleEx(530,2772.30,-2486.50,14.30,090.00000000,6,6,1200); //FORKLIFT
  2522. LATRUCKVehicles[15] = AddStaticVehicleEx(530,2772.30,-2408.18,14.30,090.00000000,6,6,1200); //FORKLIFT
  2523.  
  2524. for(new x;x<sizeof(LATRUCKVehicles);x++)
  2525. {
  2526. format(string, sizeof(string), "TPS %d", LATRUCKVehicles[x]);
  2527. SetVehicleNumberPlate(LATRUCKVehicles[x], string);
  2528. SetVehicleToRespawn(LATRUCKVehicles[x]);
  2529. }
  2530.  
  2531. PizzaVehicles[0] = AddStaticVehicleEx(448,2122.8818,-1784.8313,12.9865,357.3705,3,6,1200); //Pizzaboy
  2532. PizzaVehicles[1] = AddStaticVehicleEx(448,2121.8069,-1784.8348,12.9868,359.6706,3,6,1200); //Pizzaboy
  2533. PizzaVehicles[2] = AddStaticVehicleEx(448,2120.8711,-1784.7803,12.9865,1.9413,3,6,1200); //Pizzaboy
  2534. PizzaVehicles[3] = AddStaticVehicleEx(448,2119.9238,-1784.7810,12.9867,2.1237,3,6,1200); //Pizzaboy
  2535. PizzaVehicles[4] = AddStaticVehicleEx(448,2118.8479,-1784.7194,12.9847,0.2240,3,6,1200); //Pizzaboy
  2536. PizzaVehicles[5] = AddStaticVehicleEx(448,2115.3745,-1784.7493,12.9872,2.3877,3,6,1200); //Pizzaboy
  2537. PizzaVehicles[6] = AddStaticVehicleEx(448,2114.2935,-1784.7489,12.9858,0.3588,3,6,1200); //Pizzaboy
  2538. PizzaVehicles[7] = AddStaticVehicleEx(448,2113.1179,-1784.7390,12.9866,0.3676,3,6,1200); //Pizzaboy
  2539. PizzaVehicles[8] = AddStaticVehicleEx(448,2112.0313,-1784.7681,12.9854,0.3948,3,6,1200); //Pizzaboy
  2540. PizzaVehicles[9] = AddStaticVehicleEx(448,2110.9023,-1784.7622,12.9869,2.4935,3,6,1200); //Pizzaboy
  2541. PizzaVehicles[10] = AddStaticVehicleEx(448,-1713.02709961,1367.94238281,6.85771942,45.00000000,3,6,1200); //Pizzaboy
  2542. PizzaVehicles[11] = AddStaticVehicleEx(448,-1713.83740234,1367.19580078,6.85771942,45.00000000,3,6,1200); //Pizzaboy
  2543.  
  2544. for(new x;x<sizeof(PizzaVehicles);x++)
  2545. {
  2546. format(string, sizeof(string), "Pizza %d", PizzaVehicles[x]);
  2547. SetVehicleNumberPlate(PizzaVehicles[x], string);
  2548. SetVehicleToRespawn(PizzaVehicles[x]);
  2549. }
  2550.  
  2551. FedexVehicles[0] = AddStaticVehicleEx(611,-2100.4934,-258.6371,35.3883,91.2002,1,3,1200); //
  2552.  
  2553.  
  2554. for(new x;x<sizeof(FedexVehicles);x++)
  2555. {
  2556. format(string, sizeof(string), "Fedex %d", FedexVehicles[x]);
  2557. SetVehicleNumberPlate(FedexVehicles[x], string);
  2558. SetVehicleToRespawn(FedexVehicles[x]);
  2559. }
  2560. MiningVehicles[1] = AddStaticVehicleEx(455, -2237.0242, -2299.6655, 31.0200, -125.4600, 0, 0, 1000);
  2561. MiningVehicles[2] = AddStaticVehicleEx(455, -2240.0525, -2303.4050, 31.0200, -125.1600, 0, 0, 1000);
  2562. MiningVehicles[3] = AddStaticVehicleEx(455, -2243.3643, -2307.3711, 31.0200, -123.9000, 0, 0, 1000);
  2563. MiningVehicles[4] = AddStaticVehicleEx(455, -2231.6133, -2322.6799, 31.0200, 321.9009, 0, 0, 1000);
  2564. MiningVehicles[5] = AddStaticVehicleEx(455, -2227.5955, -2325.6470, 31.0200, 320.8547, 0, 0, 1000);
  2565. MiningVehicles[6] = AddStaticVehicleEx(455, -2223.9680, -2328.4819, 31.0200, 320.8547, 0, 0, 1000);
  2566. MiningVehicles[7] = AddStaticVehicleEx(455, -1867.4951, -1706.5906, 22.9615, 125.2800, 2, 2, 1000);
  2567. MiningVehicles[8] = AddStaticVehicleEx(455, -1864.7203, -1709.9952, 22.4504, 125.2800, 2, 2, 1000);
  2568. MiningVehicles[9] = AddStaticVehicleEx(455, -1860.7719, -1715.5792, 22.3463, 125.2800, 2, 2, 1000);
  2569. MiningVehicles[10] = AddStaticVehicleEx(455, -1858.0350, -1719.4507, 22.3463, 125.2800, 2, 2, 1000);
  2570. MiningVehicles[11] = AddStaticVehicleEx(455, -1855.4243, -1723.2144, 22.3463, 125.2800, 2, 2, 1000);
  2571. MiningVehicles[12] = AddStaticVehicleEx(455, -1847.2366, -1723.0840, 22.3463, 125.2800, 2, 2, 1000);
  2572.  
  2573. for(new x;x<sizeof(MiningVehicles);x++)
  2574. {
  2575. format(string, sizeof(string), "AP %d", MiningVehicles[x]);
  2576. SetVehicleNumberPlate(MiningVehicles[x], string);
  2577. SetVehicleToRespawn(MiningVehicles[x]);
  2578. }
  2579.  
  2580. /*PublicWorkingVehicles[0] = AddStaticVehicleEx(408,1096.59960938,-1184.59960938,18.60000038,181.99951172,6,14,FACTION_RESPAWN); //Trashmaster
  2581. PublicWorkingVehicles[1] = AddStaticVehicleEx(552,1109.90002441,-1226.39941406,16.00000000,0.00000000,6,1,FACTION_RESPAWN); //Utility
  2582. PublicWorkingVehicles[2] = AddStaticVehicleEx(552,1099.39941406,-1226.39941406,16.00000000,0.00000000,6,1,FACTION_RESPAWN); //Utility
  2583. PublicWorkingVehicles[3] = AddStaticVehicleEx(611,1120.29980469,-1249.39941406,15.69999981,91.99951172,6,3,FACTION_RESPAWN); //Utility Trailer
  2584. PublicWorkingVehicles[4] = AddStaticVehicleEx(611,1120.19995117,-1246.90002441,15.69999981,91.99951172,6,3,FACTION_RESPAWN); //Utility Trailer
  2585. PublicWorkingVehicles[5] = AddStaticVehicleEx(611,1120.09960938,-1244.39941406,15.69999981,91.99951172,6,3,FACTION_RESPAWN); //Utility Trailer
  2586. PublicWorkingVehicles[6] = AddStaticVehicleEx(408,1090.39941406,-1217.79980469,18.60000038,0.00000000,6,3,FACTION_RESPAWN); //Trashmaster
  2587. PublicWorkingVehicles[7] = AddStaticVehicleEx(408,1094.39941406,-1217.79980469,18.60000038,0.00000000,6,3,FACTION_RESPAWN); //Trashmaster
  2588. PublicWorkingVehicles[8] = AddStaticVehicleEx(408,1098.39941406,-1217.79980469,18.60000038,0.00000000,6,3,FACTION_RESPAWN); //Trashmaster
  2589. PublicWorkingVehicles[9] = AddStaticVehicleEx(552,1102.89941406,-1226.39941406,16.00000000,0.00000000,6,1,FACTION_RESPAWN); //Utility
  2590. PublicWorkingVehicles[10] = AddStaticVehicleEx(552,1106.39941406,-1226.39941406,16.00000000,0.00000000,6,1,FACTION_RESPAWN); //Utility
  2591. PublicWorkingVehicles[11] = AddStaticVehicleEx(408,1110.30004883,-1218.09997559,18.89999962,0.00000000,6,3,FACTION_RESPAWN); //Trashmaster
  2592. PublicWorkingVehicles[12] = AddStaticVehicleEx(408,1106.29980469,-1218.09960938,18.89999962,0.00000000,6,3,FACTION_RESPAWN); //Trashmaster
  2593. */
  2594. for(new x;x<sizeof(PublicWorkingVehicles);x++)
  2595. {
  2596. format(string, sizeof(string), "PW %d", PublicWorkingVehicles[x]);
  2597. SetVehicleNumberPlate(PublicWorkingVehicles[x], string);
  2598. SetVehicleToRespawn(PublicWorkingVehicles[x]);
  2599. }
  2600.  
  2601. GovVehicles[0] = AddStaticVehicleEx(586,1602.2655,-1839.0823,13.0188,271.4543,0,0,FACTION_RESPAWN); // GovWayferer1
  2602. GovVehicles[1] = AddStaticVehicleEx(586,1602.1984,-1835.7455,12.9531,270.4611,0,0,FACTION_RESPAWN); // GovWay2
  2603. GovVehicles[2] = AddStaticVehicleEx(586,1601.9794,-1826.5923,12.9867,271.5574,0,0,FACTION_RESPAWN); // GovWay3
  2604. GovVehicles[3] = AddStaticVehicleEx(586,1601.9652,-1823.0924,12.9638,270.6830,0,0,FACTION_RESPAWN); // GovWay4
  2605. GovVehicles[4] = AddStaticVehicleEx(489,1598.8970,-1791.0238,13.4960,271.6004,6,1,FACTION_RESPAWN); // GovRancher1
  2606. GovVehicles[5] = AddStaticVehicleEx(489,1598.9940,-1802.4347,13.5193,270.0388,6,1,FACTION_RESPAWN); // GovRancher2
  2607. GovVehicles[6] = AddStaticVehicleEx(507,1636.4825,-1801.9740,13.3479,90.9541,0,0,FACTION_RESPAWN); // GovElegant1
  2608. GovVehicles[7] = AddStaticVehicleEx(507,1635.5497,-1811.7119,13.3500,91.7476,0,0,FACTION_RESPAWN); // GovElegant2
  2609. GovVehicles[8] = AddStaticVehicleEx(507,1603.3915,-1830.9034,13.3155,270.2781,0,0,FACTION_RESPAWN); // GovElegant3
  2610. GovVehicles[9] = AddStaticVehicleEx(422,1598.6246,-1817.2870,13.4077,268.7696,6,1,FACTION_RESPAWN); // GovBobcat1
  2611. GovVehicles[10] = AddStaticVehicleEx(422,1598.5198,-1811.9299,13.4033,269.8454,6,1,FACTION_RESPAWN); // GovBobcat2
  2612. GovVehicles[11] = AddStaticVehicleEx(525,1595.7672,-1783.8558,13.4590,269.2599,6,1,FACTION_RESPAWN); // GovTow1
  2613. GovVehicles[12] = AddStaticVehicleEx(525,1595.6888,-1778.7573,13.5624,268.9982,6,1,FACTION_RESPAWN); // GovTow2
  2614. GovVehicles[13] = AddStaticVehicleEx(409,1540.9812,-1798.7356,13.5182,269.6541,0,0,FACTION_RESPAWN); // GovLimo1
  2615. GovVehicles[14] = AddStaticVehicleEx(507,1541.8489,-1793.2859,13.3714,269.3855,0,0,FACTION_RESPAWN); // GovCityElegant1
  2616. GovVehicles[15] = AddStaticVehicleEx(507,1541.8208,-1804.7521,13.3722,269.9054,0,0,FACTION_RESPAWN); // GovCityElegant2
  2617. GovVehicles[16] = AddStaticVehicleEx(405,1541.5081,-1809.5717,13.4219,270.0887,0,0,FACTION_RESPAWN); // GovCitySent1
  2618. GovVehicles[17] = AddStaticVehicleEx(405,1541.6069,-1788.7228,13.4219,270.7268,0,0,FACTION_RESPAWN); // GovCitySent2
  2619. GovVehicles[18] = AddStaticVehicleEx(579,1532.1204,-1821.9775,13.6209,180.7262,0,0,FACTION_RESPAWN); // GovHuntley
  2620. GovVehicles[19] = AddStaticVehicleEx(579,1525.2954,-1821.8112,13.6197,180.8361,0,0,FACTION_RESPAWN); // GovHuntley
  2621. GovVehicles[20] = AddStaticVehicleEx(409,1421.4451,-1797.7723,13.5172,89.9963,0,0,FACTION_RESPAWN); // GovStretch2
  2622. GovVehicles[21] = AddStaticVehicleEx(507,1420.4371,-1803.5629,13.3708,89.5956,0,0,FACTION_RESPAWN); // GovCityElegant3
  2623. GovVehicles[22] = AddStaticVehicleEx(507,1420.3140,-1792.2101,13.3712,90.0258,0,0,FACTION_RESPAWN); // GovCityElegant4
  2624. GovVehicles[23] = AddStaticVehicleEx(405,1420.6246,-1787.9091,13.4219,89.8963,0,0,FACTION_RESPAWN); // GovCitySent3
  2625. GovVehicles[24] = AddStaticVehicleEx(405,1420.6865,-1807.4854,13.4219,90.2040,0,0,FACTION_RESPAWN); // GovCitySent4
  2626.  
  2627. for(new x;x<sizeof(GovVehicles);x++)
  2628. {
  2629. format(string, sizeof(string), "GOV %d", GovVehicles[x]);
  2630. SetVehicleNumberPlate(GovVehicles[x], string);
  2631. SetVehicleToRespawn(GovVehicles[x]);
  2632. }
  2633. /*
  2634. LAJSVehicles[0] = AddStaticVehicleEx(421,1361.8010,-1658.8020,13.1889,270.9047,0,0,FACTION_RESPAWN); // CourtWashington1
  2635.  
  2636. for(new x;x<sizeof(LAJSVehicles);x++)
  2637. {
  2638. format(string, sizeof(string), "LAJS %d", LAJSVehicles[x]);
  2639. SetVehicleNumberPlate(LAJSVehicles[x], string);
  2640. SetVehicleToRespawn(LAJSVehicles[x]);
  2641. }*/
  2642. //Bus Vehicles
  2643. AddStaticVehicleEx(431,1172.5,-1795.5,13.1,0.0, -1, -1, 1200);//Bus
  2644. AddStaticVehicleEx(431,1182.1,-1795.9,13.1,0.0, -1, -1, 1200);//Bus
  2645. AddStaticVehicleEx(456,2795.2,-2417.8,13.4,90.8,-1,-1,1200);//Yankee
  2646.  
  2647. //taxi faction LS
  2648. AddStaticVehicleEx(438, 1742.3293, -1858.7557, 13.50, 90.0000, 6,6, 300);
  2649. AddStaticVehicleEx(438, 1762.3344, -1858.6918, 13.50, 90.0000, 6,6, 300);
  2650. AddStaticVehicleEx(438, 1793.0625, -1865.4860, 13.50, 0.1200, 6,6, 300);
  2651. AddStaticVehicleEx(438, 1797.2573, -1865.4481, 13.50, 0.1200, 6,6, 300);
  2652. AddStaticVehicleEx(438, 1802.2211, -1865.5364, 13.50, 0.1200, 6,6, 300);
  2653. AddStaticVehicleEx(438, 1807.6232, -1865.5741, 13.50, 0.1200, 6,6, 300);
  2654. AddStaticVehicleEx(438, 1751.2969, -1850.2454, 13.50, 270.0000, 6,6, 300);
  2655. AddStaticVehicleEx(438, 1770.3195, -1850.0568, 13.50, 270.0000, 6,6, 300);
  2656. AddStaticVehicleEx(438, 1789.5166, -1850.1920, 13.50, 270.0000, 6,6, 300);
  2657. AddStaticVehicleEx(438, 1802.6343, -1850.1647, 13.50, 270.0000, 6,6, 300);
  2658. AddStaticVehicleEx(438, 1776.0635, -1858.8933, 13.50, 90.0000, 6,6, 300);
  2659. AddStaticVehicleEx(420, 1804.8622, -1931.6886, 13.50, 0.0000, 6,6, 300);
  2660. AddStaticVehicleEx(420, 1797.1229, -1931.8307, 13.50, 0.0000, 6,6, 300);
  2661. AddStaticVehicleEx(438, 1793.2616, -1931.7616, 13.50, 0.0000, 6,6, 300);
  2662. AddStaticVehicleEx(420, 1788.8236, -1931.6399, 13.50, 0.0000, 6,6, 300);
  2663. AddStaticVehicleEx(438, 1784.2297, -1931.7141, 13.50, 0.0000, 6,6, 300);
  2664. AddStaticVehicleEx(420, 1779.9065, -1931.7610, 13.50, 0.0000, 6,6, 300);
  2665. AddStaticVehicleEx(420, 1777.4500, -1921.5249, 13.50, 270.0000, 6,6, 300);
  2666. AddStaticVehicleEx(438, 1777.4972, -1917.1622, 13.50, 270.0000, 6,6, 300);
  2667. AddStaticVehicleEx(420, 1777.3914, -1912.6975, 13.50, 270.0000, 6,6, 300);
  2668. AddStaticVehicleEx(438, 1777.3497, -1907.4670, 13.50, 270.0000, 6,6, 300);
  2669. AddStaticVehicleEx(420, 1777.4591, -1902.1052, 13.50, 270.0000, 6,6, 300);
  2670. AddStaticVehicleEx(438, 1777.4844, -1896.4081, 13.50, 270.0000, 6,6, 300);
  2671. AddStaticVehicleEx(420, 1777.6259, -1890.6628, 13.50, 270.0000, 6,6, 300);
  2672.  
  2673. // Taxi Job LV
  2674. AddStaticVehicleEx(420,1717.0343,1438.2968,10.5191,356.1099,1,1, 600); // LVTAXI1
  2675. AddStaticVehicleEx(420,1717.0173,1425.1869,10.4128,3.2735,1,1, 600); // LVTAXI2
  2676. AddStaticVehicleEx(420,1718.7737,1413.2200,10.4143,11.1718,1,1, 600); // LVTAXI3
  2677. AddStaticVehicleEx(420,1731.0400,1487.5699,10.5902,345.6580,1,1, 600); // LVTAXI4
  2678. AddStaticVehicleEx(420,1734.4893,1500.2185,10.5865,348.5026,1,1, 600); // LVTAXI5
  2679. AddStaticVehicleEx(409,1708.2509,1411.4148,10.3623,190.5996,0,0, 600); // LVLIMO1
  2680. AddStaticVehicleEx(409,1714.6813,1387.2805,10.3608,197.0353,0,0, 600); // LVLIMO2
  2681.  
  2682. //Fox11
  2683. AddStaticVehicleEx(582, 769.1678, -1335.2841, 13.5568, 180.0000, 0, 0, 1200);//Fox-11 E350 Live Van
  2684. AddStaticVehicleEx(582, 763.5619, -1335.0713, 13.5568, 180.0000, 0, 0, 1200);//Fox-11 E350 Live Van
  2685. AddStaticVehicleEx(582, 758.2188, -1335.1149, 13.5568, 180.0000, 0, 0, 1200);//Fox-11 E350 Live Van
  2686. AddStaticVehicleEx(400, 752.6475, -1334.9272, 13.5568, 180.0000, 0, 0, 1200);//Fox-11 SUV
  2687. AddStaticVehicleEx(400, 747.2724, -1334.8280, 13.6992, 180.0000, 0, 0, 1200);//Fox-11 SUV
  2688. AddStaticVehicleEx(488, 742.0439, -1369.6482, 25.9606, 180.0000, 0, 0, 1200);//Fox-11 Chopper
  2689. AddStaticVehicleEx(582,-77.2969,1076.7104,19.8645,0.7096,0,0, 1200); // News Van FC
  2690. AddStaticVehicleEx(582,-80.5870,1076.8145,19.8646,0.6297,0,0, 1200); // News Van FC
  2691.  
  2692. // LS Trucking Job Trailers
  2693. AddStaticVehicleEx(435, -237.8810, -192.0891, 2.0000, 180.0000, -1, -1, 1200);
  2694. AddStaticVehicleEx(435, -234.7733, -192.1153, 2.0000, 180.0000, -1, -1, 1200);
  2695. AddStaticVehicleEx(435, -231.4498, -192.0560, 2.0000, 180.0000, -1, -1, 1200);
  2696. AddStaticVehicleEx(435, -228.2089, -192.0575, 2.0000, 180.0000, -1, -1, 1200);
  2697. AddStaticVehicleEx(435, -224.9315, -192.0635, 2.0000, 180.0000, -1, -1, 1200);
  2698. AddStaticVehicleEx(435, -221.6733, -192.0609, 2.0000, 180.0000, -1, -1, 1200);
  2699. AddStaticVehicleEx(591, -218.3264, -192.0445, 2.0000, 180.0000, -1, -1, 1200);
  2700. AddStaticVehicleEx(591, -215.0659, -192.0049, 2.0000, 180.0000, -1, -1, 1200);
  2701. AddStaticVehicleEx(591, -211.9254, -191.9642, 2.0000, 180.0000, -1, -1, 1200);
  2702. AddStaticVehicleEx(591, -208.6875, -191.9754, 2.0000, 180.0000, -1, -1, 1200);
  2703. AddStaticVehicleEx(591, -205.3846, -191.9453, 2.0000, 180.0000, -1, -1, 1200);
  2704. AddStaticVehicleEx(591, -202.0421, -191.9456, 2.0000, 180.0000, -1, -1, 1200);
  2705. AddStaticVehicleEx(450, -180.0000, -201.3580, 2.0000, 90.0000, -1, -1, 1200);
  2706. AddStaticVehicleEx(450, -180.0000, -204.7523, 2.0000, 90.0000, -1, -1, 1200);
  2707. AddStaticVehicleEx(450, -180.0000, -208.1910, 2.0000, 90.0000, -1, -1, 1200);
  2708. AddStaticVehicleEx(450, -180.0000, -211.7559, 2.0000, 90.0000, -1, -1, 1200);
  2709. AddStaticVehicleEx(450, -180.0000, -215.1991, 2.0000, 90.0000, -1, -1, 1200);
  2710. AddStaticVehicleEx(450, -180.0000, -218.6164, 2.0000, 90.0000, -1, -1, 1200);
  2711. AddStaticVehicleEx(584, -179.0000, -222.8467, 2.0000, 90.0000, -1, -1, 1200);
  2712. AddStaticVehicleEx(584, -179.0000, -226.4298, 2.0000, 90.0000, -1, -1, 1200);
  2713. AddStaticVehicleEx(584, -179.0000, -230.0197, 2.0000, 90.0000, -1, -1, 1200);
  2714. AddStaticVehicleEx(584, -179.0000, -233.6152, 2.0000, 90.0000, -1, -1, 1200);
  2715. AddStaticVehicleEx(584, -179.0000, -237.1661, 2.0000, 90.0000, -1, -1, 1200);
  2716. AddStaticVehicleEx(584, -179.0000, -240.8501, 2.0000, 90.0000, -1, -1, 1200);
  2717. AddStaticVehicleEx(591, -149.2531, -321.8601, 2.0000, 180.0000, -1, -1, 1200);
  2718. AddStaticVehicleEx(591, -145.9626, -321.8345, 2.0000, 180.0000, -1, -1, 1200);
  2719. AddStaticVehicleEx(591, -142.2729, -321.8528, 2.0000, 180.0000, -1, -1, 1200);
  2720. AddStaticVehicleEx(450, -139.0390, -321.9391, 1.8000, 180.0000, -1, -1, 1200);
  2721. AddStaticVehicleEx(450, -135.7805, -321.8737, 1.8000, 180.0000, -1, -1, 1200);
  2722. AddStaticVehicleEx(450, -132.4320, -321.9745, 1.8000, 180.0000, -1, -1, 1200);
  2723. AddStaticVehicleEx(584, -128.9839, -322.6087, 2.5481, 180.0000, -1, -1, 1200);
  2724. AddStaticVehicleEx(584, -125.7735, -322.7313, 2.5481, 180.0000, -1, -1, 1200);
  2725. AddStaticVehicleEx(584, -122.6628, -322.6660, 2.5481, 180.0000, -1, -1, 1200);
  2726. AddStaticVehicleEx(435, -119.4386, -322.2122, 2.0000, 180.0000, -1, -1, 1200);
  2727. AddStaticVehicleEx(435, -116.3818, -322.2130, 2.0000, 180.0000, -1, -1, 1200);
  2728. AddStaticVehicleEx(435, -113.3553, -322.2310, 2.0000, 180.0000, -1, -1, 1200);
  2729. AddStaticVehicleEx(435, -2104.9597, -99.8576, 35.8321, 90.5494, -1, -1, 1200);
  2730. AddStaticVehicleEx(435, -2104.9451, -104.2798, 35.8321, 90.5494, -1, -1, 1200);
  2731. AddStaticVehicleEx(435, -2104.9194, -108.4615, 35.8321, 90.5494, -1, -1, 1200);
  2732. AddStaticVehicleEx(435, -2104.9888, -95.5760, 35.8321, 90.5494, -1, -1, 1200);
  2733. AddStaticVehicleEx(450, -2102.0923, -112.7763, 35.8331, 91.0243, -1, -1, 1200);
  2734. AddStaticVehicleEx(450, -2102.1433, -117.2660, 35.8331, 91.0243, -1, -1, 1200);
  2735. AddStaticVehicleEx(450, -2102.1587, -121.6699, 35.8331, 91.0243, -1, -1, 1200);
  2736. AddStaticVehicleEx(584, -2102.0137, -125.5330, 35.8331, 91.0243, -1, -1, 1200);
  2737. AddStaticVehicleEx(584, -2101.9023, -129.4281, 35.8331, 91.0243, -1, -1, 1200);
  2738. AddStaticVehicleEx(584, -2101.7195, -133.3056, 35.8331, 91.0243, -1, -1, 1200);
  2739. AddStaticVehicleEx(584, -2101.7383, -137.3997, 35.8331, 91.0243, -1, -1, 1200);
  2740.  
  2741. // VIP garage
  2742. VIPVehicles[0] = AddStaticVehicleEx(411,-4365.93212891,839.28680420,986.18029785,0.00000000,-1,-1,1200); //Infernus
  2743. VIPVehicles[1] = AddStaticVehicleEx(429,-4370.52832031,840.57843018,986.13031006,0.00000000,-1,-1,1200); //Banshee
  2744. VIPVehicles[2] = AddStaticVehicleEx(451,-4374.41894531,840.36810303,986.14465332,0.00000000,-1,-1,1200); //Turismo
  2745. VIPVehicles[3] = AddStaticVehicleEx(559,-4382.43701172,840.60235596,986.13439941,0.00000000,-1,-1,1200); //Jester
  2746. VIPVehicles[4] = AddStaticVehicleEx(560,-4386.68066406,841.29382324,986.18530273,0.00000000,-1,-1,1200); //Sultan
  2747. VIPVehicles[5] = AddStaticVehicleEx(603,-4390.54345703,841.60748291,986.38299561,0.00000000,-1,-1,1200); //Phoenix
  2748. VIPVehicles[6] = AddStaticVehicleEx(480,-4394.61035156,841.88873291,986.23028564,0.00000000,-1,-1,1200); //Comet
  2749. VIPVehicles[7] = AddStaticVehicleEx(506,-4399.16455078,842.31146240,986.17242432,0.00000000,-1,-1,1200); //Super GT
  2750. VIPVehicles[8] = AddStaticVehicleEx(587,-4402.89990234,842.34979248,986.19030762,0.00000000,-1,-1,1200); //Euros
  2751. VIPVehicles[9] = AddStaticVehicleEx(522,-4393.28417969,875.69360352,986.04071045,0.00000000,-1,-1,1200); //NRG-500
  2752. VIPVehicles[10] = AddStaticVehicleEx(522,-4389.04248047,875.41735840,986.04071045,0.00000000,-1,-1,1200); //NRG-500
  2753. VIPVehicles[11] = AddStaticVehicleEx(522,-4385.04980469,875.21435547,986.04071045,0.00000000,-1,-1,1200); //NRG-500
  2754. VIPVehicles[12] = AddStaticVehicleEx(522,-4381.05761719,875.00488281,986.04071045,0.00000000,-1,-1,1200); //NRG-500
  2755. VIPVehicles[13] = AddStaticVehicleEx(471, 3280.7095, 2442.9839, 8.2683, 84.8412, -1, -1, 1000); //VIP Island Quads
  2756. VIPVehicles[14] = AddStaticVehicleEx(471, 3278.8127, 2441.6733, 8.2683, 84.8412, -1, -1, 1000); //VIP Island Quads
  2757. VIPVehicles[15] = AddStaticVehicleEx(471, 3277.0383, 2440.2605, 8.2683, 84.8412, -1, -1, 1000); //VIP Island Quads
  2758.  
  2759. for(new x;x<sizeof(VIPVehicles);x++)
  2760. {
  2761. format(string, sizeof(string), "VIP %d", VIPVehicles[x]);
  2762. SetVehicleNumberPlate(VIPVehicles[x], string);
  2763. SetVehicleToRespawn(VIPVehicles[x]);
  2764. }
  2765.  
  2766. //RR Vehicles
  2767. OPGVehicles[0] = AddStaticVehicleEx(525,830.44,-609.45,16.24,0.0,1, 0,FACTION_RESPAWN); //Dillimore OPGTow
  2768. OPGVehicles[1] = AddStaticVehicleEx(440,814.489,-609.570,16.159,0.0,4,4,FACTION_RESPAWN); //Dillimore OPGBattery
  2769. OPGVehicles[2] = AddStaticVehicleEx(525,1367.580,477.667,20.5,180,1, 0,FACTION_RESPAWN); //Palomino OPG Tow
  2770. OPGVehicles[3] = AddStaticVehicleEx(525,1362.374,480.309,20.5,180,1, 0,FACTION_RESPAWN); //Palomino OPG Tow
  2771. OPGVehicles[4] = AddStaticVehicleEx(440,1405.30,459.77,20.03,155,4,4,FACTION_RESPAWN); //Palomino OPG Battery
  2772. OPGVehicles[5] = AddStaticVehicleEx(525, 2184.4001, -2708.1721, 13.6323, 270.0000, 1, 0,FACTION_RESPAWN);
  2773. OPGVehicles[6] = AddStaticVehicleEx(525, 2184.4001, -2712.1721, 13.6323, 270.0000, 1, 0,FACTION_RESPAWN);
  2774. OPGVehicles[7] = AddStaticVehicleEx(525, 2184.4001, -2716.1721, 13.6323, 270.0000, 1, 0,FACTION_RESPAWN);
  2775. OPGVehicles[8] = AddStaticVehicleEx(525, 2184.4001, -2720.1721, 13.6323, 270.0000, 1, 0,FACTION_RESPAWN);
  2776. OPGVehicles[9] = AddStaticVehicleEx(525, 2184.4001, -2724.1721, 13.6323, 270.0000, 1, 0,FACTION_RESPAWN);
  2777. OPGVehicles[10] = AddStaticVehicleEx(525, 2184.4001, -2728.1721, 13.6323, 270.0000, 1, 0,FACTION_RESPAWN);
  2778. OPGVehicles[11] = AddStaticVehicleEx(578, 2188.5432, -2755.7512, 13.9383, 270.0000, 1, 0,FACTION_RESPAWN);
  2779. OPGVehicles[12] = AddStaticVehicleEx(578, 2188.5432, -2751.7512, 13.9383, 270.0000, 1, 0,FACTION_RESPAWN);
  2780. OPGVehicles[13] = AddStaticVehicleEx(578, 2188.5432, -2747.7512, 13.9383, 270.0000, 1, 0,FACTION_RESPAWN);
  2781. OPGVehicles[14] = AddStaticVehicleEx(578, 2188.5432, -2743.7512, 13.9383, 270.0000, 1, 0,FACTION_RESPAWN);
  2782. OPGVehicles[15] = AddStaticVehicleEx(578, 2188.5432, -2739.7512, 13.9383, 270.0000, 1, 0,FACTION_RESPAWN);
  2783. OPGVehicles[16] = AddStaticVehicleEx(578, 2188.5432, -2735.7512, 13.9383, 270.0000, 1, 0,FACTION_RESPAWN);
  2784. OPGVehicles[17] = AddStaticVehicleEx(525, 2184.7065, -2731.8191, 13.6323, 270.0000, 1, 0,FACTION_RESPAWN);
  2785. OPGVehicles[18] = AddStaticVehicleEx(440, 2164.3567, -2654.6001, 13.6522, 180.0000, 4, 4,FACTION_RESPAWN);
  2786. OPGVehicles[19] = AddStaticVehicleEx(440, 2171.5613, -2654.6001, 13.6522, 180.0000, 4, 4,FACTION_RESPAWN);
  2787. OPGVehicles[20] = AddStaticVehicleEx(440, 2178.6035, -2654.6001, 13.6522, 180.0000, 4, 4,FACTION_RESPAWN);
  2788. OPGVehicles[21] = AddStaticVehicleEx(440, 2186.2097, -2654.6001, 13.6522, 180.0000, 4, 4,FACTION_RESPAWN);
  2789. OPGVehicles[22] = AddStaticVehicleEx(440, 2193.1892, -2654.6001, 13.6522, 180.0000, 4, 4,FACTION_RESPAWN);
  2790. OPGVehicles[23] = AddStaticVehicleEx(525,-1886.4869,-1682.3724,21.6139,182.2884,1,0,FACTION_RESPAWN); //
  2791. OPGVehicles[24] = AddStaticVehicleEx(525,-1893.1865,-1693.1965,21.6348,272.0487,1,0,FACTION_RESPAWN); //
  2792. OPGVehicles[25] = AddStaticVehicleEx(525,-1903.6427,-1693.3993,21.6208,270.3766,1,0,FACTION_RESPAWN); //
  2793. OPGVehicles[26] = AddStaticVehicleEx(440,-1905.8475,-1700.6620,21.8662,183.4097,4,4,FACTION_RESPAWN); //
  2794. OPGVehicles[27] = AddStaticVehicleEx(440,-1916.4368,-1701.2325,21.8670,188.0927,4,4,FACTION_RESPAWN); //
  2795. /*OPGVehicles[28] = AddStaticVehicleEx(525, -2058.4746, 146.0984, 28.6799, 180.0000, 1, 0, 2400);
  2796. OPGVehicles[29] = AddStaticVehicleEx(525, -2054.6692, 145.9887, 28.6799, 180.0000, 1, 0, 2400);
  2797. OPGVehicles[30] = AddStaticVehicleEx(525, -2050.4924, 145.9717, 28.6799, 180.0000, 1, 0, 2400);
  2798. OPGVehicles[31] = AddStaticVehicleEx(525, -2046.6600, 146.0047, 28.6799, 180.0000, 1, 0, 2400);
  2799. OPGVehicles[32] = AddStaticVehicleEx(440, -2056.4031, 127.9545, 29.2851, 0.0000, 4, 4, 2400);
  2800. OPGVehicles[33] = AddStaticVehicleEx(440, -2053.4785, 127.9315, 29.2851, 0.0000, 4, 4, 2400);
  2801. OPGVehicles[34] = AddStaticVehicleEx(578, -2049.4915, 126.0115, 29.0154, 0.0000, 1, 0, 2400);*/
  2802. OPGVehicles[28] = AddStaticVehicleEx(525,683.8093,1721.6152,7.0414,310.3954,228,228,FACTION_RESPAWN); // rr LV tow 1
  2803. OPGVehicles[29] = AddStaticVehicleEx(525,681.4193,1723.1219,7.0548,311.1453,228,228,FACTION_RESPAWN); // rr LV tow 2
  2804. OPGVehicles[30] = AddStaticVehicleEx(440,679.5579,1724.8976,7.1125,310.6292,228,228,FACTION_RESPAWN); // rr LV bat
  2805. OPGVehicles[31] = AddStaticVehicleEx(440,678.1196,1727.1155,7.1081,310.1683,228,228,FACTION_RESPAWN); // rr LV bat
  2806. OPGVehicles[32] = AddStaticVehicleEx(525, 1703.7144, 1804.1824, 11.2948,-180.0,228,228,FACTION_RESPAWN);
  2807. OPGVehicles[33] = AddStaticVehicleEx(525, 1708.2125, 1804.3134, 11.2948,-180.0,228,228,FACTION_RESPAWN);
  2808. OPGVehicles[34] = AddStaticVehicleEx(525, 1712.4015, 1804.3152, 11.2948,-180.0,228,228,FACTION_RESPAWN);
  2809. OPGVehicles[35] = AddStaticVehicleEx(525, 1716.7523, 1804.5513, 11.2948,-180.0,228,228,FACTION_RESPAWN);
  2810. OPGVehicles[36] = AddStaticVehicleEx(440, 1723.8704, 1814.4298, 11.1900,-180.0,228,228,FACTION_RESPAWN);
  2811. OPGVehicles[37] = AddStaticVehicleEx(440, 1727.9497, 1814.4462, 11.1900,-180.0,228,228,FACTION_RESPAWN);
  2812. OPGVehicles[38] = AddStaticVehicleEx(440, 1731.9346, 1814.3533, 11.1900,-180.0,228,228,FACTION_RESPAWN);
  2813.  
  2814. for(new x;x<sizeof(OPGVehicles);x++)
  2815. {
  2816. format(string, sizeof(string), "RR %d", OPGVehicles[x]);
  2817. SetVehicleNumberPlate(OPGVehicles[x], string);
  2818. SetVehicleToRespawn(OPGVehicles[x]);
  2819. }
  2820. /* //Public Works
  2821. PWVehicles[0] = AddStaticVehicleEx(486,1096.59960938,-1184.59960938,18.60000038,181.99951172,6,14,FACTION_RESPAWN); //Dozer
  2822. PWVehicles[1] = AddStaticVehicleEx(552,1109.90002441,-1226.39941406,16.00000000,0.00000000,6,1,FACTION_RESPAWN); //Utility
  2823. PWVehicles[2] = AddStaticVehicleEx(552,1099.39941406,-1226.39941406,16.00000000,0.00000000,6,1,FACTION_RESPAWN); //Utility
  2824. PWVehicles[3] = AddStaticVehicleEx(611,1120.29980469,-1249.39941406,15.69999981,91.99951172,6,3,FACTION_RESPAWN); //Utility Trailer
  2825. PWVehicles[4] = AddStaticVehicleEx(611,1120.19995117,-1246.90002441,15.69999981,91.99951172,6,3,FACTION_RESPAWN); //Utility Trailer
  2826. PWVehicles[5] = AddStaticVehicleEx(611,1120.09960938,-1244.39941406,15.69999981,91.99951172,6,3,FACTION_RESPAWN); //Utility Trailer
  2827. PWVehicles[6] = AddStaticVehicleEx(455,1102.40002441,-1217.50000000,18.45299339,0.00000000,6,3,FACTION_RESPAWN); //Flatbed
  2828. PWVehicles[7] = AddStaticVehicleEx(578,1085.19995117,-1194.90002441,18.79999924,180.00000000,6,1,FACTION_RESPAWN); //DFT-30
  2829. PWVehicles[8] = AddStaticVehicleEx(578,1089.79980469,-1194.89941406,18.79999924,180.00000000,6,1,FACTION_RESPAWN); //DFT-30
  2830. PWVehicles[9] = AddStaticVehicleEx(455,1111.79992676,-1195.00000000,18.60000038,180.00000000,6,3,FACTION_RESPAWN); //Flatbed
  2831. PWVehicles[10] = AddStaticVehicleEx(524,1110.30004883,-1218.09997559,18.89999962,0.00000000,6,3,FACTION_RESPAWN); //Cement Truck
  2832. PWVehicles[11] = AddStaticVehicleEx(530,1084.00000000,-1230.40002441,15.60000038,270.00000000,6,1,FACTION_RESPAWN); //Forklift
  2833. PWVehicles[12] = AddStaticVehicleEx(574,1095.59960938,-1224.19921875,15.60000038,90.00000000,6,26,FACTION_RESPAWN); //Sweeper
  2834. PWVehicles[13] = AddStaticVehicleEx(417,1131.40002441,-1224.30004883,25.29999924,0.00000000,-1,-1,FACTION_RESPAWN); //Leviathan
  2835. PWVehicles[14] = AddStaticVehicleEx(574,1095.59960938,-1226.50000000,15.60000038,90.00000000,6,26,FACTION_RESPAWN); //Sweeper
  2836. PWVehicles[15] = AddStaticVehicleEx(574,1095.59960938,-1228.80004883,15.60000038,90.00000000,6,26,FACTION_RESPAWN); //Sweeper
  2837. PWVehicles[16] = AddStaticVehicleEx(530,1084.00000000,-1232.19995117,15.60000038,270.00000000,6,1,FACTION_RESPAWN); //Forklift
  2838. PWVehicles[17] = AddStaticVehicleEx(524,1106.29980469,-1218.09960938,18.89999962,0.00000000,6,3,FACTION_RESPAWN); //Cement Truck
  2839. PWVehicles[18] = AddStaticVehicleEx(408,1090.39941406,-1217.79980469,18.60000038,0.00000000,6,3,FACTION_RESPAWN); //Trashmaster
  2840. PWVehicles[19] = AddStaticVehicleEx(408,1094.39941406,-1217.79980469,18.60000038,0.00000000,6,3,FACTION_RESPAWN); //Trashmaster
  2841. PWVehicles[20] = AddStaticVehicleEx(408,1098.39941406,-1217.79980469,18.60000038,0.00000000,6,3,FACTION_RESPAWN); //Trashmaster
  2842. PWVehicles[21] = AddStaticVehicleEx(455,1107.19921875,-1195.00000000,18.60000038,180.00000000,6,3,FACTION_RESPAWN); //Flatbed
  2843. PWVehicles[22] = AddStaticVehicleEx(552,1102.89941406,-1226.39941406,16.00000000,0.00000000,6,1,FACTION_RESPAWN); //Utility
  2844. PWVehicles[23] = AddStaticVehicleEx(552,1106.39941406,-1226.39941406,16.00000000,0.00000000,6,1,FACTION_RESPAWN); //Utility
  2845. PWVehicles[24] = AddStaticVehicleEx(422,1087.80004883,-1249.09997559,15.89999962,0.00000000,6,3,FACTION_RESPAWN); //Bobcat
  2846. PWVehicles[25] = AddStaticVehicleEx(486,-1885.424, -209.390, 18.609,0.0,6,3,FACTION_RESPAWN); // SF Dozer
  2847. PWVehicles[26] = AddStaticVehicleEx(552,-1860.6936,-216.2394,18.0787,359.5742,6,1, FACTION_RESPAWN); // SF Utility
  2848. PWVehicles[27] = AddStaticVehicleEx(552,-1864.6418,-216.2516,18.0789,0.5594,6,1, FACTION_RESPAWN); // SF Utility
  2849. PWVehicles[28] = AddStaticVehicleEx(524,-1869.1368,-215.5036,19.3141,0.1646,6,3, FACTION_RESPAWN); // SF Cement
  2850. PWVehicles[29] = AddStaticVehicleEx(574,-1867.0168,-197.0606,18.1252,179.4708,6,3, FACTION_RESPAWN); // SF Sweep
  2851. PWVehicles[30] = AddStaticVehicleEx(408,-1853.5216,-189.8576,18.8859,180.4069,6,3, FACTION_RESPAWN); // SF Trash
  2852.  
  2853. for(new x;x<sizeof(PWVehicles);x++)
  2854. {
  2855. format(string, sizeof(string), "XMT %d", PWVehicles[x]);
  2856. SetVehicleNumberPlate(PWVehicles[x], string);
  2857. SetVehicleToRespawn(PWVehicles[x]);
  2858. } */
  2859.  
  2860. //Warehouse Job Vehicles
  2861. AddStaticVehicleEx(499, -2252.0552, 2284.8250, 5.1000, 90.0000, 179, 0, 600);
  2862. AddStaticVehicleEx(499, -2252.1487, 2291.2935, 5.1000, 90.0000, 179, 0, 600);
  2863. AddStaticVehicleEx(499, -2252.0823, 2297.0801, 5.1000, 90.0000, 179, 0, 600);
  2864. AddStaticVehicleEx(499, -2252.0693, 2303.2429, 5.1000, 90.0000, 179, 0, 600);
  2865. AddStaticVehicleEx(499, -2252.0481, 2309.0654, 5.1000, 90.0000, 179, 0, 600);
  2866. AddStaticVehicleEx(499, -2251.9172, 2315.1470, 5.1000, 90.0000, 179, 0, 600);
  2867. AddStaticVehicleEx(499, -2252.1177, 2321.0474, 5.1000, 90.0000, 179, 0, 600);
  2868. AddStaticVehicleEx(499, -2252.0989, 2327.0488, 5.1000, 90.0000, 179, 0, 600);
  2869. AddStaticVehicleEx(499, -2251.9048, 2332.9294, 5.1000, 90.0000, 179, 0, 600);
  2870. AddStaticVehicleEx(499, -2252.0210, 2339.0754, 5.1000, 90.0000, 179, 0, 600);
  2871. AddStaticVehicleEx(499, -2271.6257, 2336.1287, 5.1000, 270.0000, 179, 0, 600);
  2872. AddStaticVehicleEx(499, -2271.7141, 2330.1072, 5.1000, 270.0000, 179, 0, 600);
  2873. AddStaticVehicleEx(499, -2271.5840, 2324.2458, 5.1000, 270.0000, 179, 0, 600);
  2874. AddStaticVehicleEx(499, -2271.3125, 2318.1074, 5.1000, 270.0000, 179, 0, 600);
  2875. AddStaticVehicleEx(499, -2271.4722, 2312.1848, 5.1000, 270.0000, 179, 0, 600);
  2876. AddStaticVehicleEx(499, -2271.5115, 2306.2637, 5.1000, 270.0000, 179, 0, 600);
  2877. AddStaticVehicleEx(499, -2271.3723, 2300.4231, 5.1000, 270.0000, 179, 0, 600);
  2878. AddStaticVehicleEx(499, -2271.2712, 2294.2415, 5.1000, 270.0000, 179, 0, 600);
  2879.  
  2880. /* Load Toll Gates
  2881. AddTollGate(3578, -793.83, 470.97, 20.55, -793.83, 470.97, 29.55, 0.0, 0.0, 15.00, random(300)); // Thomas Norman
  2882. AddTollGate(3578, -785.66, 473.19, 20.55, -785.66, 473.19, 29.55, 0.0, 0.0, 15.00, random(300)); // Thomas Norman
  2883. AddTollGate(3578, -1665.07, 552.46, 30.98, -1665.07, 552.46, 37.98, 0.0, 0.0, -47.00, random(300)); // I-127
  2884. AddTollGate(3578, -1658.95, 545.84, 30.98, -1658.95, 545.84, 37.98, 0.0, 0.0, -47.00, random(300)); // I-127
  2885. */
  2886. //======NOT USED VEHICLES BELOW=======
  2887. /*for(new x;x<sizeof(FBIVehicles);x++)
  2888. {
  2889. format(string, sizeof(string), "FBI %d", FBIVehicles[x]);
  2890. SetVehicleNumberPlate(FBIVehicles[x], string);
  2891. SetVehicleToRespawn(FBIVehicles[x]);
  2892. } */
  2893.  
  2894. /*BurgerVehicles[1] = AddStaticVehicleEx(462,-2328.4380,983.8900,50.2873,11.3476,6,6,0); //
  2895.  
  2896. for(new x;x<sizeof(BurgerVehicles);x++)
  2897. {
  2898. format(string, sizeof(string), "XMT %d", BurgerVehicles[x]);
  2899. SetVehicleNumberPlate(BurgerVehicles[x], string);
  2900. SetVehicleToRespawn(BurgerVehicles[x]);
  2901. }*/
  2902.  
  2903. //Coastguard Cars
  2904. /*CoastGuardVehicles[0] = AddStaticVehicleEx(500,-1528.7372,455.8304,7.1505,89.9769,1,3,FACTION_RESPAWN); // CGRancher1
  2905. for(new x;x<sizeof(CoastGuardVehicles);x++)
  2906. {
  2907. format(string, sizeof(string), "USCG %d", CoastGuardVehicles[x]);
  2908. SetVehicleNumberPlate(CoastGuardVehicles[x], string);
  2909. SetVehicleToRespawn(CoastGuardVehicles[x]);
  2910. }*/
  2911.  
  2912. for(new h = 0; h < sizeof(FamilyInfo); h++)
  2913. {
  2914. if(FamilyInfo[h][FamilyUSafe] > 0)
  2915. {
  2916. FamilyInfo[h][FamilyPickup] = CreateDynamicPickup(1239, 23, FamilyInfo[h][FamilySafe][0], FamilyInfo[h][FamilySafe][1], FamilyInfo[h][FamilySafe][2]);
  2917. }
  2918. if(FamilyInfo[h][FamilyEntrance][0] != 0.0 && FamilyInfo[h][FamilyEntrance][1] != 0.0)
  2919. {
  2920. FamilyInfo[h][FamilyEntrancePickup] = CreateDynamicPickup(1318, 23, FamilyInfo[h][FamilyEntrance][0], FamilyInfo[h][FamilyEntrance][1], FamilyInfo[h][FamilyEntrance][2]);
  2921. format(string, sizeof(string), "%s", FamilyInfo[h][FamilyName]);
  2922. FamilyInfo[h][FamilyEntranceText] = CreateDynamic3DTextLabel(string,COLOR_YELLOW,FamilyInfo[h][FamilyEntrance][0], FamilyInfo[h][FamilyEntrance][1], FamilyInfo[h][FamilyEntrance][2]+0.6,4.0);
  2923. }
  2924. LoadGangVehicles(h);
  2925. }
  2926. for(new h = 0; h < sizeof(Points); h++)
  2927. {
  2928. if(Points[h][Type] == 3)
  2929. {
  2930. format(string, sizeof(string), " POT AVAILABLE: %d/1000.", Points[h][Stock]);
  2931. Points[h][TextLabel] = CreateDynamic3DTextLabel(string, COLOR_YELLOW, Points[h][Pointx], Points[h][Pointy], Points[h][Pointz], 4.0);
  2932. Points[h][CratePoint] = 1;
  2933. }
  2934. else if(Points[h][Type] == 4)
  2935. {
  2936. format(string, sizeof(string), " CRACK AVAILABLE: %d/500.", Points[h][Stock]);
  2937. Points[h][TextLabel] = CreateDynamic3DTextLabel(string, COLOR_YELLOW, Points[h][Pointx], Points[h][Pointy], Points[h][Pointz], 4.0);
  2938. Points[h][CratePoint] = 2;
  2939. }
  2940. CreateDynamicPickup(1239, 23, Points[h][Pointx], Points[h][Pointy], Points[h][Pointz]);
  2941. }
  2942. new text_info[128];
  2943. for(new d = 0; d < sizeof(CarDealershipInfo); d++)
  2944. {
  2945. if(CarDealershipInfo[d][cdEntranceX] != 0.0 && CarDealershipInfo[d][cdEntranceY] != 0.0)
  2946. {
  2947. CarDealershipInfo[d][cdPickupID] = CreateDynamicPickup(1239, 1, CarDealershipInfo[d][cdEntranceX], CarDealershipInfo[d][cdEntranceY], CarDealershipInfo[d][cdEntranceZ]);
  2948. if(CarDealershipInfo[d][cdOwned])
  2949. {
  2950. format(text_info, sizeof(text_info),"Car Dealership %s\nOwner: %s\nRadius: %.1f\nID: %d", CarDealershipInfo[d][cdMessage], CarDealershipInfo[d][cdOwner], CarDealershipInfo[d][cdRadius], d);
  2951. CarDealershipInfo[d][cdTextLabel] = CreateDynamic3DTextLabel(text_info,COLOR_GREEN,CarDealershipInfo[d][cdEntranceX], CarDealershipInfo[d][cdEntranceY], CarDealershipInfo[d][cdEntranceZ]+0.75,3.0,INVALID_PLAYER_ID,INVALID_VEHICLE_ID,1);
  2952. }
  2953. else
  2954. {
  2955. format(text_info, sizeof(text_info),"Car Dealership %s For Sale\nPrice: %d\nRadius: %.1f\nID: %d", CarDealershipInfo[d][cdMessage], CarDealershipInfo[d][cdPrice], CarDealershipInfo[d][cdRadius], d);
  2956. CarDealershipInfo[d][cdTextLabel] = CreateDynamic3DTextLabel(text_info,COLOR_RED,CarDealershipInfo[d][cdEntranceX], CarDealershipInfo[d][cdEntranceY], CarDealershipInfo[d][cdEntranceZ]+0.75,3.0,INVALID_PLAYER_ID,INVALID_VEHICLE_ID,1);
  2957. }
  2958. }
  2959. for(new v = 0; v < MAX_DEALERSHIPVEHICLES; v++)
  2960. {
  2961. if (CarDealershipInfo[d][cdVehicleModel][v] != 0)
  2962. {
  2963. new carcreated = CreateVehicleEx(CarDealershipInfo[d][cdVehicleModel][v], CarDealershipInfo[d][cdVehicleSpawnX][v], CarDealershipInfo[d][cdVehicleSpawnY][v], CarDealershipInfo[d][cdVehicleSpawnZ][v], CarDealershipInfo[d][cdVehicleSpawnAngle][v], 0, 0, 6);
  2964. format(text_info, sizeof(text_info), "%s For Sale\nPrice: %d", GetVehicleName(carcreated), CarDealershipInfo[d][cdVehicleCost][v]);
  2965. CarDealershipInfo[d][cdVehicleLabel][v] = CreateDynamic3DTextLabel(text_info,COLOR_LIGHTBLUE,0.0, 0.0, 0.0,8.0,INVALID_PLAYER_ID,carcreated);
  2966. CarDealershipInfo[d][cdVehicleId][v] = carcreated;
  2967. }
  2968. }
  2969. }
  2970.  
  2971. for(new v=0; v<MAX_VEHICLES; v++)
  2972. {
  2973. Gas[v] = 100.0;
  2974. }
  2975.  
  2976. // Advertisement points
  2977. CreatePickup(1239, 23, 646.549377, -1348.272338, 13.546875, -1); // Advertisement spot (LS)
  2978. CreatePickup(1239, 23, -2240.405761, 239.212402, 35.320312, -1); // Advertisement spot (SF)
  2979. //CreatePickup(1239, 23, x, y, z, -1); // Advertisement spot (LV)
  2980. CreateDynamic3DTextLabel("Advertisement Point \nType /ad to put up an advertisement",COLOR_YELLOW,646.549377, -1348.272338, 13.546875+0.6,10.0); // Advertisement spot (LS)
  2981. CreateDynamic3DTextLabel("Advertisement Point \nType /ad to put up an advertisement",COLOR_YELLOW,-2240.405761, 239.212402, 35.320312+0.6,10.0); // Advertisement spot (SF)
  2982.  
  2983. CreateDynamic3DTextLabel("Supreme Court\nCell Number\n#1",COLOR_NOOSE,1315.0146,-1726.6338,-72.6484+0.6,10.0);
  2984. CreateDynamic3DTextLabel("Supreme Court\nCell Number\n#2",COLOR_NOOSE,1319.3326,-1726.6136,-72.6484+0.6,10.0);
  2985. CreateDynamic3DTextLabel("Supreme Court\nCell Number\n#3",COLOR_NOOSE,1323.4989,-1726.6036,-72.6484+0.6,10.0);
  2986.  
  2987. // OVG Audio Stream VIP
  2988. CreateDynamic3DTextLabel("SRP Radio DJ Booth\nCurrently Playing: SRP Radio",COLOR_YELLOW,1452.4380,-1576.7020,13.5469+0.6,20.0);
  2989.  
  2990. // Warehouse Worker (San Fierro) points
  2991. CreatePickup(1239, 23,-2280.0576,2287.8992,4.6535,-1); // Warehouse job spot (Bayside)
  2992. CreatePickup(1239, 23,-2286.9758,2282.3188,4.6535,-1); // Warehouse load spot (Bayside)
  2993. //CreatePickup(1239, 23, 2101.7676,-1885.9995,13.5469, -1); // Warehouse informaton (LS)
  2994. //CreatePickup(1239, 23,-2280.0259,2291.4087,4.6535,-1); // Warehouse information (Bayside)
  2995. CreateDynamic3DTextLabel("Warehouse Worker \nType /join to become one",COLOR_LIGHTBLUE,-2280.0576,2287.8992,4.99+0.6,10.0); // Warehouse job spot (SF)
  2996. CreateDynamic3DTextLabel("Load Point \nType /loadmats to deliver a materials package",COLOR_LIGHTBLUE,-2286.9758, 2282.3188, 4.99+0.6,10.0); // Warehouse load spot (SF)
  2997.  
  2998. // Brinks Bank Delivery
  2999. CreatePickup(1239, 23, 2520.6016,2447.6489,10.9427, -1); // Pickup Point (LV)
  3000. CreateDynamic3DTextLabel("Brinks Depot\nType /loadcar to start",COLOR_LIGHTBLUE,2520.6016,2447.6489,10.9427+0.6,10.0); // Pickup Point (LV)
  3001. CreatePickup(1239, 23, 2507.9602,2504.1355,10.8203, -1); // Get Job Point (LV)
  3002. CreateDynamic3DTextLabel("Brinks Worker\nType /join to become one",COLOR_LIGHTBLUE,2507.9602,2504.1355,10.8203+0.6,10.0); // Get Job Point (LV)
  3003. CreatePickup(1239, 23, 1433.0181,-962.2107,36.3097, -1); // Pickup Point (LA)
  3004. CreateDynamic3DTextLabel("Brinks Depot\nType /loadcar to start",COLOR_LIGHTBLUE,1433.0181,-962.2107,36.3097+0.6,10.0); // Pickup Point (LA)
  3005. CreatePickup(1239, 23, 1433.4060,-968.4258,37.3931, -1); // Get Job Point (LA)
  3006. CreateDynamic3DTextLabel("Brinks Worker\nType /join to become one",COLOR_LIGHTBLUE,1433.4060,-968.4258,37.3931+0.6,10.0); // Get Job Point (LA)
  3007.  
  3008. // Garbageman && Utility Man
  3009. CreatePickup(1239, 23, 1095.6921,-1194.8772,18.0845, -1); // Get Job Point (LA)
  3010. CreateDynamic3DTextLabel("Garbageman\nType /join to become one",COLOR_LIGHTBLUE,1095.6921,-1194.8772,18.0845+0.6,10.0); // Get Job Point (LA)
  3011.  
  3012. CreatePickup(1239, 23, 1099.3604,-1195.0002,18.0808, -1); // Get Job Point (LA)
  3013. CreateDynamic3DTextLabel("Utilityman\nType /join to become one",COLOR_LIGHTBLUE,1099.3604,-1195.0002,18.0808+0.6,10.0); // Get Job Point (LA)
  3014.  
  3015. // Repairman
  3016. CreatePickup(1239, 23, 981.3501,2082.9370,10.8203, -1); // /getrepair Point (LV)
  3017. CreateDynamic3DTextLabel("Repair Shop\nType /getrepair to work",COLOR_LIGHTBLUE,981.3501,2082.9370,10.8203+0.6,10.0); // /getrepair Point (LV)
  3018. CreatePickup(1239, 23, 979.1214,2083.2048,10.8203, -1); // Get Job Point (LV)
  3019. CreateDynamic3DTextLabel("Repairman\nType /join to become one",COLOR_LIGHTBLUE,979.1214,2083.2048,10.8203+0.6,10.0); // Get Job Point (LV)
  3020.  
  3021. // Angel Pine (Los Santos) car insurance points
  3022. CreatePickup(1239, 23, -1584.3499,-2718.8491,48.5391, -1); // Gate point
  3023. CreatePickup(1239, 23, -1577.4004,-2707.4563,48.5391, -1); // Fix point
  3024. CreateDynamic3DTextLabel("Fix Point\nType /fixmycar to fix your vehicle",COLOR_YELLOW,-1577.4004,-2707.4563,48.5391+0.6,10.0); // Car insurance spot (LS)
  3025.  
  3026. CreatePickup(1239, 23, 2203.9895,2491.5774,10.4609, -1); // Fix point
  3027. CreateDynamic3DTextLabel("Fix Point\nType /fixmycar to fix your vehicle",COLOR_YELLOW,2203.9895,2491.5774,10.4609+0.6,10.0); // Car insurance spot (LV)
  3028.  
  3029. CreatePickup(1239, 23, 2636.5225,1073.2427,10.4676, -1); // Fix point
  3030. CreateDynamic3DTextLabel("Fix Point\nType /fixmycar to fix your vehicle",COLOR_YELLOW,2636.5225,1073.2427,10.4676+0.6,10.0); // Car insurance spot (LV East)
  3031.  
  3032. CreatePickup(1239, 23, 1393.3931,464.7138,20.1521, -1); // Fix point
  3033. CreateDynamic3DTextLabel("Fix Point\nType /fixmycar to fix your vehicle",COLOR_YELLOW,1393.3931,464.7138,20.1521+0.6,10.0); // Car insurance spot (LA County LASD)
  3034.  
  3035. // Angel Pine Mining (Angel Pine) points
  3036. CreatePickup(1239, 23, -2202.3633,-2339.7974,30.6250, -1); // Mining job spot (AP)
  3037. CreateDynamic3DTextLabel("Angel Pine Miner \nType /join to become one",COLOR_LIGHTRED,-2202.3633,-2339.7974,30.6250+0.6,10.0); // Mining job spot text (AP)
  3038.  
  3039. // Drug Smuggler (Los Santos) points
  3040. CreatePickup(1239, 23, 325.6044,1123.5282,1083.8828, -1); // Drug house informaton (LS)
  3041. CreatePickup(1239, 23, 2076.4624,-2046.4349,13.5469, -1); // Drug smuggler /getcrate spot (LS)
  3042. CreateDynamic3DTextLabel("Load Point \nType /getcrate to load a drugs crate",COLOR_LIGHTRED,2076.4624,-2046.4349,13.5469+0.6,10.0); // Drug smuggler /getcrate spot (LS)
  3043.  
  3044. // LV Pickups
  3045. CreatePickup(1239, 23, 2128.8589, 650.1796, 11.4609, -1); // Drug Dealer Job
  3046. CreatePickup(1239, 23, 2478.7542, 1022.1125, 10.8203, -1); // Lawyer Job
  3047. CreatePickup(1239, 23, 829.2385, 860.3727, 12.4540, -1); // Craftsman Job
  3048. CreatePickup(1239, 23, 2177.0498, 925.1132, 11.0995, -1); // Arms Dealer Job
  3049. CreatePickup(1239, 23, 229.4008, 168.7817, 1003.0234, -1); // Private Investigator Job
  3050. CreatePickup(1239, 23, 770.9471, -77.7359, 1000.6563, -1); // Body Guard Job
  3051. CreatePickup(1239, 23, 693.6890, 1967.0238, 5.5391, -1); // Whore Job
  3052. CreatePickup(1230, 23, 534.2360, 913.0679, -42.9609, -1); //Materials Pickup LV
  3053.  
  3054. // LV Drug Dens
  3055. CreatePickup(1239, 23, 2641.0522,58.7879,323.2010, -1);
  3056. CreateDynamic3DTextLabel("Drug Den \nType /getseeds",COLOR_YELLOW,2641.0522,58.7879,323.2010+0.6,10.0);
  3057. CreatePickup(1239, 23, -941.9512,1418.7169,30.1448, -1);
  3058. CreateDynamic3DTextLabel("Drug Den \nType /getseeds",COLOR_YELLOW,-941.9512,1418.7169,30.1448+0.6,10.0);
  3059. CreatePickup(1239, 23, -674.5008,2698.6504,71.0330, -1);
  3060. CreateDynamic3DTextLabel("Drug Den \nType /getseeds",COLOR_YELLOW,-674.5008,2698.6504,71.0330+0.6,10.0);
  3061.  
  3062. // Pickups
  3063. CreatePickup(1239, 23, 301.042633, 178.700408, 1007.171875, -1); // Detective job (SF)
  3064. CreatePickup(1239, 23, -2089.344970, 87.800231, 35.320312, -1); // Drug Dealer job (SF)
  3065. CreatePickup(1239, 23, 2107.5869,-1785.0497,13.3870, -1); // Pizza Boy job (LS)
  3066. CreatePickup(1239, 23, 2099.2761,-1804.8387,13.5547, -1); // Pizza Boy job Pickup (LS)
  3067. CreatePickup(1239, 23, 833.60, 3.23, 1004.17, -1); // /paymytickets point
  3068. CreatePickup(1239, 23, -4429.944824, 905.032470, 987.078186, -1); // VIP Garage Travel
  3069. CreatePickup(1239, 23, 2102.71,-103.97,2.28, -1); // Matrun 3
  3070. CreatePickup(1239, 23,-1816.528686,-179.502624,9.398437, -1); // Matrun 4 (pickup)
  3071. CreatePickup(1239, 23,-2344.4546,989.7565,50.7029, -1); // Pizza Coon SF #1
  3072. CreatePickup(1239, 23, -1981.2365, 134.1870, 27.1870, -1); // Taxi Job SF #1
  3073. CreatePickup(1239, 23, 2565.346191, 1403.409790, 7699.584472, -1);// VIP ph changing station.
  3074. //CreatePickup(1239, 23, 701.7953,-519.8322,16.3348, -1); //Rental Icon
  3075. CreatePickup(1239, 23, 757.3734,5.7227,1000.7012, -1); // Train Pos
  3076. CreatePickup(1230, 23, 2105.4258,-1886.2653,13.5469, -1); //Materials Pickup
  3077. CreatePickup(1239, 23, 758.43,-78.0,1000.65, -1); // Train Pos (MALL GYM)
  3078. CreatePickup(1239, 23, 293.6505,188.3670,1007.1719, -1); //FBI
  3079. CreatePickup(1239, 23, 1147.9441,-1202.8629,19.5069, -1); //Drug Smuggler
  3080. CreatePickup(1240, 23, 1179.4012451172,-1331.5632324219,2423.0461425781, -1);// /healme//Old Healme: 2103.4998,2824.2568,-16.1672
  3081. CreatePickup(1239, 23, 1169.7209472656,-1348.3218994141,2423.0461425781, -1);// /Old Insurance: 2086.4915,2826.7122,-16.1744
  3082. CreatePickup(1247, 23, -2171.44, -2361.47, 30.54,-1); //Angel Pine Arrest Point
  3083. CreatePickup(1247, 23, 295.9513,-1540.6786,24.5938, -1); // FBI Arrest
  3084. CreatePickup(1247, 23, -2064.253, -213.558, 35.320, -1); // CHP Arrest Pt SF
  3085. CreatePickup(1247, 23, 844.4416, -601.0480, 18.4219, -1); // CHP Arrest Pt SF
  3086. CreatePickup(1247, 23, 1573.1972,-1624.48,12.8,-1);//LAPD EXTRA DROP OFF
  3087. CreatePickup(1247, 23, -101.431, -1817.625, 1.8, -1); // LASD Arrest Roof
  3088. CreatePickup(1247, 23, 292.7859,-1530.6685,76.5391, -1); // FBI Arrest Roof
  3089. CreatePickup(1247, 23, -800.397094, -1877.925903, 11.668975, -1); // NOOSE Arrest
  3090. CreatePickup(1247, 23, -1408.7196,2627.7852,55.9932, -1); // Tierra Robada Arrest
  3091. CreatePickup(1247, 23, -1606.307861, 673.740539, -5.242187, -1); // SFPD Arrest
  3092. CreatePickup(1247, 23, 1528.4888,-1677.7632,5.8906, -1); // LSPD Arrest
  3093. CreatePickup(1247, 23, 1820.199,432.948,19.290, -1); // DOC Arrest
  3094. CreatePickup(1247, 23, 680.2208,-1546.9856,14.8516, -1); // LSPD Arrest
  3095. CreatePickup(1247, 23, 1991.7953,-2321.2532,13.5469, -1); // Deliver Arrest
  3096. CreatePickup(1247, 23, -2240.6609,2355.2236,4.9786, -1); // Bayside Arrest
  3097. CreatePickup(1210, 23, -71.419654846191,1360.4097900391,1080.2185058594, -1); //Hitman Pickup
  3098. CreatePickup(1247, 23, -214.0644,979.3775,18.8952, -1); // FC Arrest
  3099. CreatePickup(1247, 23, -205.5576,1861.6444,13.1406, -1); // NG /ndeliver
  3100. CreatePickup(1247, 23, 2334.65, 566.84, 7.78, -1); // Coastguard Building Arrest
  3101. CreatePickup(1247, 23, 2182.20, 530.32, 1.19, -1); // Coastguard Dock Arrest
  3102. CreatePickup(1247, 23, 611.96, -587.25, 17.22, -1); // Arrest Dillimore
  3103. CreatePickup(1247, 23, 2273.5300,-79.6400,26.05, -1); // LASD Arrest Palomino
  3104. CreatePickup(1247, 23, 1407.2700,419.8500,19.59, -1); // LASD Arrest Montgomery
  3105. CreatePickup(1247, 23, 329.4400,-50.5800,0.97, -1); // LASD Arrest Blueberry
  3106. CreatePickup(1247, 23, 1733.8361,-2056.5571,13.5785, -1); // SASD Arrest LV
  3107. CreatePickup(1247, 23, 2294.5334,2451.6362,10.7452, -1); // LVMPD Arrest
  3108. CreatePickup(1247, 23, 1384.0507,-1688.8254,13.5341, -1); // Warrant Arrest
  3109. CreatePickup(1240, 23, -1514.7850,2528.2227,56.0297, -1);// Deliverpt (TIERRA ROBADA)
  3110. CreatePickup(1240, 23, 1142.4733,-1326.3633,13.6259, -1);// Deliverpt
  3111. CreatePickup(1240, 23, 2027.0599,-1410.6870,16.9922, -1);// Deliverpt
  3112. CreatePickup(1240, 23, 1227.2339,306.4730,19.7028, -1);// Deliverpt
  3113. CreatePickup(1240, 23, -325.4840,1063.5975,19.7990, -1);// Deliverpt FC
  3114. CreatePickup(1240, 23, -2695.5725,639.4147,14.4531, -1); // Deliverpt
  3115. CreatePickup(1240, 23, 1165.1564,-1368.8240,26.6502, -1);// Deliverpt
  3116. CreatePickup(1240, 23, 2024.5742,-1382.7844,48.3359, -1);// Deliverpt
  3117. CreatePickup(1240, 23, 1233.3384,316.4022,24.7578, -1);// Deliverpt
  3118. CreatePickup(1240, 23, 325.4840,1063.5975,19.7990, -1);// Deliverpt
  3119. CreatePickup(1240, 23, -2656.0339,615.2567,66.0938, -1);// Deliverpt
  3120. CreatePickup(1240, 23, 1608.6509,1767.3022,37.3125, -1);// Deliverpt LV Roof
  3121. CreatePickup(1240, 23, 1607.9885,1824.6393,10.7452, -1);// Deliverpt LV
  3122. CreatePickup(1239, 23, 366.54, 159.09, 1008.38, -1); // LICENSES @ CITY HALL
  3123. CreatePickup(1239, 23, -1854.9646, -1561.6967, 21.3500, -1);//Getacid point
  3124. CreatePickup(1239, 23, 333.0822, 1120.1993, 1089.2824, -1); // Cook Meth point
  3125.  
  3126. // Set in virtual worlds
  3127. CreateDynamic3DTextLabel("/SE \nTo open your locker.", COLOR_DBLUE, 354.37, 173.91, 1008.38+0.6, 10.0, INVALID_PLAYER_ID, INVALID_VEHICLE_ID, 0, 20041, 3, -1);
  3128. CreateDynamic3DTextLabel("/LASD\nTo open your locker.", COLOR_DBLUE, 327.232757, 306.817230, 999.148437+0.6, 10.0, INVALID_PLAYER_ID, INVALID_VEHICLE_ID, 0, 4, 5, -1); // SASD in Fort Carson
  3129. CreateDynamic3DTextLabel("/ndeliver\nNational Guard Arrest Point", COLOR_DBLUE, -205.5576,1861.6444,13.1406, 20.0, _, _, 1, 0, 0, _, 20.0);
  3130.  
  3131. // FDSA text label for different virtual worlds
  3132. CreateDynamic3DTextLabel("/LAFD\nTo open your locker.", COLOR_DBLUE, 224.1081,-15.4069,1032.7316, 10.0, INVALID_PLAYER_ID, INVALID_VEHICLE_ID, 0, 0, 1, -1); // <<<<<<<<<
  3133. CreateDynamic3DTextLabel("/LAFD\nTo open your locker.", COLOR_DBLUE, 1188.5157470703,-1350.9741210938, 2423.2648925781+0.6, 10.0, INVALID_PLAYER_ID, INVALID_VEHICLE_ID, 0, 1, 1, -1); // Hospital
  3134. CreateDynamic3DTextLabel("/LAFD\nTo open your locker.", COLOR_DBLUE, 1188.5157470703,-1350.9741210938, 2423.2648925781+0.6, 10.0, INVALID_PLAYER_ID, INVALID_VEHICLE_ID, 0, 2, 1, -1); // Hospital
  3135. CreateDynamic3DTextLabel("/LAFD\nTo open your locker.", COLOR_DBLUE, 1188.5157470703,-1350.9741210938, 2423.2648925781+0.6, 10.0, INVALID_PLAYER_ID, INVALID_VEHICLE_ID, 0, 3, 1, -1); // Hospital
  3136. CreateDynamic3DTextLabel("/LAFD\nTo open your locker.", COLOR_DBLUE, 1188.5157470703,-1350.9741210938, 2423.2648925781+0.6, 10.0, INVALID_PLAYER_ID, INVALID_VEHICLE_ID, 0, 4, 1, -1); // Hospital
  3137. CreateDynamic3DTextLabel("/LAFD\nTo open your locker.", COLOR_DBLUE, 1188.5157470703,-1350.9741210938, 2423.2648925781+0.6, 10.0, INVALID_PLAYER_ID, INVALID_VEHICLE_ID, 0, 5, 1, -1); // Hospital
  3138. CreateDynamic3DTextLabel("/LAFD\nTo open your locker.", COLOR_DBLUE, 1188.5157470703,-1350.9741210938, 2423.2648925781+0.6, 10.0, INVALID_PLAYER_ID, INVALID_VEHICLE_ID, 0, 6, 1, -1); // Hospital
  3139. CreateDynamic3DTextLabel("/LAFD\nTo open your locker.", COLOR_DBLUE, 1188.5157470703,-1350.9741210938, 2423.2648925781+0.6, 10.0, INVALID_PLAYER_ID, INVALID_VEHICLE_ID, 0, 7, 1, -1); // Hospital
  3140. CreateDynamic3DTextLabel("/LAFD\nTo open your locker.", COLOR_DBLUE, 1188.5157470703,-1350.9741210938, 2423.2648925781+0.6, 10.0, INVALID_PLAYER_ID, INVALID_VEHICLE_ID, 0, 8, 1, -1); // Hospital
  3141. CreateDynamic3DTextLabel("/LAFD\nTo open your locker.", COLOR_DBLUE, 1188.5157470703,-1350.9741210938, 2423.2648925781+0.6, 10.0, INVALID_PLAYER_ID, INVALID_VEHICLE_ID, 0, 9, 1, -1); // Hospital
  3142. CreateDynamic3DTextLabel("/LAFD\nTo open your locker.", COLOR_DBLUE, 1188.5157470703,-1350.9741210938, 2423.2648925781+0.6, 10.0, INVALID_PLAYER_ID, INVALID_VEHICLE_ID, 0, 10, 1, -1); // Hospital
  3143.  
  3144. // Tierra Robada lockers
  3145. CreateDynamic3DTextLabel("/trlocker\nTo open your locker.", COLOR_DBLUE, 354.37, 173.91, 1008.38+0.6, 10.0, INVALID_PLAYER_ID, INVALID_VEHICLE_ID, 0, 99, 3, -1); // Tierra Robada Capitol Building (City Hall)
  3146. CreateDynamic3DTextLabel("/trlocker\nTo open your locker.", COLOR_DBLUE, 327.232757, 306.817230, 999.148437+0.6, 10.0, INVALID_PLAYER_ID, INVALID_VEHICLE_ID, 0, 99, 5, -1); // Tierra Robada Armed Forces HQ
  3147. CreateDynamic3DTextLabel("/trlocker\nTo open your locker.", COLOR_DBLUE, 1188.5157470703,-1350.9741210938, 2423.2648925781+0.6, 10.0, INVALID_PLAYER_ID, INVALID_VEHICLE_ID, 0, 99, 1, -1); // Tierra Robada Emergency Services HQ
  3148. CreateDynamic3DTextLabel("/trlocker\nTo open your locker.", COLOR_DBLUE, -2031.335083, -114.719253, 1035.171875+0.6, 10.0, INVALID_PLAYER_ID, INVALID_VEHICLE_ID, 0, 99, 3, -1); // Tierra Robada Diplomatic Corps HQ
  3149.  
  3150. // NOOSE lockers
  3151. CreateDynamic3DTextLabel("/noose\nTo open your locker.",COLOR_NOOSE,-761.904663, 2575.887451, 10016.670898+0.6,4.0);
  3152. CreateDynamic3DTextLabel("/noose\nTo open your locker.",COLOR_NOOSE,-757.500488, 2575.700927, 10016.677734+0.6,4.0);
  3153.  
  3154. // General text labels
  3155. CreateDynamic3DTextLabel("All Saints Plaza Parking Garage\nType /enter with your vehicle to enter",COLOR_YELLOW,1218.69,-1425.01,13.15+0.6,25.0);
  3156. CreateDynamic3DTextLabel("Club VIP Parking\nType /enter with your vehicle to enter",COLOR_YELLOW,1814.6857,-1559.2028,13.4834+0.4,15.0);
  3157. CreateDynamic3DTextLabel("Beach Parking Garage\nType /enter with your vehicle to enter",COLOR_YELLOW,660.42,-1794.45,12.94+0.6,25.0);
  3158. CreateDynamic3DTextLabel("Gym Parking Garage\nType /enter with your vehicle to enter",COLOR_YELLOW,2273.4026,-1724.3064,13.5469+0.6,25.0);
  3159. CreateDynamic3DTextLabel("Courthouse Parking Garage\nType /enter with your vehicle to enter",COLOR_YELLOW,1418.5190,-1663.8959,13.5395+0.6,25.0);
  3160. CreateDynamic3DTextLabel("To pay your tickets or\nrelease your cars, type /dmvmenu\n To pay speed camera tickets, type /paytickets",COLOR_YELLOW,833.60, 3.23, 1004.17+0.6,4.0);//
  3161. CreateDynamic3DTextLabel("Type /deploybcar to deploy a baitcar\nType /undeploy to return the baitcar",COLOR_YELLOW,-2058.1296,570.9920,1173.0511+0.6,4.0);// ???
  3162. CreateDynamic3DTextLabel("Type /deploybcar to deploy a baitcar\nType /undeploy to return the baitcar",COLOR_YELLOW,244.7799,185.5433,1008.1719+0.6,4.0);//LVMPD
  3163. CreateDynamic3DTextLabel("Type /deploybcar to deploy a baitcar\nType /undeploy to return the baitcar",COLOR_YELLOW,278.24, 110.55, 1003.61+0.6,4.0);//LAPD
  3164. CreateDynamic3DTextLabel("To change your number type /vipnum",COLOR_YELLOW,2549.548095, 1404.047729, 7699.584472+0.6,4.0);//
  3165. CreateDynamic3DTextLabel("Type /travel\nTo exit the VIP garage with your vehicle",COLOR_YELLOW,-4429.944824, 905.032470, 987.078186+0.5,13.0);// VIP garage travel
  3166. CreateDynamic3DTextLabel("/viplocker\nTo open the VIP locker.",COLOR_YELLOW,2555.747314, 1404.106079, 7699.584472+0.6,4.0);/// VIP locker room
  3167. CreateDynamic3DTextLabel("/getgift\nTo reach inside.",COLOR_YELLOW,2546.611572, 1403.323608, 7700.768066,8.0);/// VIP Lounge
  3168. CreateDynamic3DTextLabel("/doc\nTo open your locker.",COLOR_DBLUE,298.1291809082,-74.630012512207,1001.515625+0.6,4.0);///ng
  3169. CreateDynamic3DTextLabel("/FBI\nTo open your locker.",COLOR_DBLUE,310.3679,-1537.5204,-45.1338+0.6,4.0);///fbi
  3170. CreateDynamic3DTextLabel("/coastguard or /wp\nTo open your locker.",COLOR_DBLUE,2106.0317,2809.0493,-15.9556+0.6,4.0);///Coastguard Lockers
  3171. CreateDynamic3DTextLabel("/LAFD\nTo open your locker.",COLOR_DBLUE,413.79, 2536.79, 10.00+0.6,4.0);///FDSA Sub Station
  3172. CreateDynamic3DTextLabel("/docgear\nTo open the DOC locker.",COLOR_DBLUE,1864.123,-1718.838,5206.186+0.6,4.0);///SFPD (SF)
  3173. CreateDynamic3DTextLabel("/LASD\nTo open your locker.",COLOR_DBLUE,2525.9009,-1655.4312,562.8000+0.6,4.0);///LASD
  3174. CreateDynamic3DTextLabel("/SANEWS\nTo open your locker.",COLOR_DBLUE,621.7416,-8.3904,1102.7633+0.6,4.0);///SANEWS
  3175. /////////////////// ARREST POINTS ////////////////////////
  3176. CreateDynamic3DTextLabel("/arrest",COLOR_DBLUE,-101.431, -1817.625, 2.287+0.6,4.0);///arrest(LASD)
  3177. CreateDynamic3DTextLabel("/arrest",COLOR_DBLUE,-800.397094, -1877.925903, 11.668975+0.6,4.0);///arrest(NOOSE)
  3178. CreateDynamic3DTextLabel("/arrest",COLOR_DBLUE,1573.1972, -1624.48, 12.8,4.0);//Arrest(LAPD
  3179. CreateDynamic3DTextLabel("/arrest",COLOR_DBLUE,-1408.7196,2627.7852,55.9932+0.6,4.0);///arrest(Tierra Robada)
  3180. CreateDynamic3DTextLabel("/arrest",COLOR_DBLUE,-1606.307861, 673.740539, -5.242187+0.6,4.0);///arrest(SFPD)
  3181. CreateDynamic3DTextLabel("/arrest",COLOR_DBLUE,611.96, -587.25, 17.25+0.6,4.0);///arrest(LASD) Dillimore
  3182. CreateDynamic3DTextLabel("/arrest",COLOR_DBLUE,2273.53, -79.64, 26.05+0.6,4.0);///arrest(LASD) Palomino
  3183. CreateDynamic3DTextLabel("/arrest",COLOR_DBLUE,1407.27, 419.85, 19.59+0.6,4.0);///arrest(LASD) Montgomery
  3184. CreateDynamic3DTextLabel("/arrest",COLOR_DBLUE,329.44, -50.58, 0.97+0.6,4.0);///arrest(LASD) Blueberry
  3185. CreateDynamic3DTextLabel("/arrest",COLOR_DBLUE,295.9513,-1540.6786,24.5938+0.6,4.0);///arrest(FBI)
  3186. CreateDynamic3DTextLabel("/arrest",COLOR_DBLUE,292.7859,-1530.6685,76.5391+0.6,4.0);///arrest(FBI ROOF)
  3187. CreateDynamic3DTextLabel("/arrest",COLOR_DBLUE,1528.4888,-1677.7632,5.8906+0.6,4.0);///arrest(LAPD)
  3188. CreateDynamic3DTextLabel("/arrest",COLOR_DBLUE,2294.5334,2451.6362,10.7452+0.6,4.0);///arrest(LVMPD)
  3189. CreateDynamic3DTextLabel("/arrest",COLOR_DBLUE, 680.2208,-1546.9856,14.8516+0.6,4.0);//Arrest(LAPD)
  3190. CreateDynamic3DTextLabel("/arrest",COLOR_DBLUE,-214.0644,979.3775,18.8952+0.6,4.0);///arrest(FC)
  3191. CreateDynamic3DTextLabel("/arrest",COLOR_DBLUE,2334.65, 566.84, 7.78+0.6,4.0);///Coastguard Building Arrest
  3192. CreateDynamic3DTextLabel("/arrest",COLOR_DBLUE,2182.20, 530.32, 1.19+0.6,4.0);///Coastguard Dock Arrest
  3193. CreateDynamic3DTextLabel("/arrest",COLOR_DBLUE,2182.20, 530.32, 1.19+0.6,4.0);///Deliverpt
  3194. //CreateDynamic3DTextLabel("/arrest",COLOR_DBLUE,1379.0077,-274.9919,1.9850+0.6,4.0);///SFPD Water Patrol
  3195. CreateDynamic3DTextLabel("/arrest",COLOR_DBLUE,598.5661,-607.9127,-14.9744+0.6,4.0);///Arrest(LASD)
  3196. CreateDynamic3DTextLabel("/arrest",COLOR_DBLUE,1733.8361,-2056.5571,13.5785,4.0);///Arrest(LASD)
  3197. CreateDynamic3DTextLabel("/warrantarrest",COLOR_DBLUE,1384.0507,-1688.8254,13.5341+0.6,4.0);///Arrest(warrant)
  3198. /////////////////////////// DELIVERPT POINTS ////////////////////////////////
  3199. CreateDynamic3DTextLabel("/deliverpt",COLOR_LIGHTRED,-1514.7850,2528.2227,56.0297+0.6,4.0);///Deliverpt (TIERRA ROBADA)
  3200. CreateDynamic3DTextLabel("/deliverpt",COLOR_LIGHTRED,1142.4733,-1326.3633,13.6259+0.6,4.0);///Deliverpt
  3201. CreateDynamic3DTextLabel("/deliverpt",COLOR_LIGHTRED,2027.0599,-1410.6870,16.9922+0.6,4.0);///Deliverpt
  3202. CreateDynamic3DTextLabel("/deliverpt",COLOR_LIGHTRED,1227.2339,306.4730,19.7028+0.6,4.0);///Deliverpt
  3203. CreateDynamic3DTextLabel("/deliverpt",COLOR_LIGHTRED,-325.4840,1063.5975,19.7990+0.6,4.0);///Deliverpt FC
  3204. CreateDynamic3DTextLabel("/deliverpt",COLOR_LIGHTRED,1165.1564,-1368.8240,26.6502+0.6,4.0);///Deliverpt
  3205. CreateDynamic3DTextLabel("/deliverpt",COLOR_LIGHTRED,2024.5742,-1382.7844,48.3359+0.6,4.0);///Deliverpt
  3206. CreateDynamic3DTextLabel("/deliverpt",COLOR_LIGHTRED,1233.3384,316.4022,24.7578+0.6,4.0);///Deliverpt
  3207. CreateDynamic3DTextLabel("/deliverpt",COLOR_LIGHTRED,-2656.0339,615.2567,66.0938+0.6,4.0);///Deliverpt
  3208. CreateDynamic3DTextLabel("/deliverpt",COLOR_LIGHTRED,1608.6509,1767.3022,37.3125+0.6,4.0);///Deliverpt
  3209. CreateDynamic3DTextLabel("/deliverpt",COLOR_LIGHTRED,1607.9885,1824.6393,10.7452+0.6,4.0);///Deliverpt
  3210. CreateDynamic3DTextLabel("Emergency Room\n/deliverpt",COLOR_DBLUE,-2695.5725,639.4147,14.4531+0.6,4.0);///Deliverpt
  3211. CreateDynamic3DTextLabel("/deliver",COLOR_DBLUE,1991.7953,-2321.2532,13.5469+0.6,4.0);// Deliver
  3212. CreateDynamic3DTextLabel("/healme \nTo cure your disease",COLOR_DBLUE,1179.4012451172,-1331.5632324219,2423.0461425781+0.6,4.0);// /healme
  3213. CreateDynamic3DTextLabel("/buyinsurance \n To buy insurance",COLOR_DBLUE,1169.7209472656,-1348.3218994141,2423.0461425781+0.6,4.0);// Insurance
  3214. CreateDynamic3DTextLabel("/buyinsurance \n To buy insurance",COLOR_DBLUE,2785.586914, 2400.224853, 1240.531127+0.6,8.0);// Insurance
  3215. CreateDynamic3DTextLabel("Type /getmats to purchase material packages", COLOR_YELLOW,2105.4258,-1886.2653,13.5469+0.5,8.0);//GETMATS
  3216. CreateDynamic3DTextLabel("Type /getmats to purchase material packages", COLOR_YELLOW,534.2360,913.0679,-42.9609+0.5,8.0);//GETMATS LV
  3217. CreateDynamic3DTextLabel("/vipgetmats \n Get mats without doing the run!", COLOR_YELLOW,3275.2490, 2491.4558, 11.9506+0.5,8.0);//VIPGETMATS
  3218. CreateDynamic3DTextLabel("/vipgunstore \n VIP's can buy Guns Here!", COLOR_YELLOW,3250.1533, 2430.4336, 6.8330+0.5,8.0);//VIPGunstore
  3219. CreateDynamic3DTextLabel("Type /getpizza from a Pizzaboy \nto get pizzas for delivery!",COLOR_YELLOW,2099.2761,-1804.8387,13.5547,4.0); //getpizza
  3220. CreateDynamic3DTextLabel("Type /getdelivery from a Burger Shot \nto get orders for delivery!",COLOR_YELLOW,-2344.4546,989.7565,50.7029+0.5,4.0); //getdelivery SF1
  3221. CreateDynamic3DTextLabel("Type /getlicense to \nacquire a license.",COLOR_YELLOW,366.54,159.09,1008.38+0.5,8.0);// Licenses.
  3222. //CreateDynamic3DTextLabel("Type /registerplate to\nchange your license plate.",COLOR_YELLOW,366.54,159.09,1008.38+1,8.0);// Licenses.
  3223. CreateDynamic3DTextLabel("/buyclothes\n To change your skin.",COLOR_YELLOW,208.8970,-100.3289,1005.2578,8.0);
  3224. CreateDynamic3DTextLabel("/buyclothes\n To change your skin.",COLOR_YELLOW,206.5429,-41.2313,1001.8047,8.0);
  3225. CreateDynamic3DTextLabel("/buyclothes\n To change your skin.",COLOR_YELLOW,209.3064,-8.3033,1005.2109,8.0);
  3226. CreateDynamic3DTextLabel("/buyclothes\n To change your skin.",COLOR_YELLOW,159.6771,-83.2866,1001.8120,8.0);
  3227. CreateDynamic3DTextLabel("/buyclothes\n To change your skin.",COLOR_YELLOW,206.4552,-163.0903,1000.5234,8.0);
  3228. CreateDynamic3DTextLabel("/buytoys\n To buy some accessories.",COLOR_YELLOW,206.3253,-100.3268,1005.2578,8.0);
  3229. CreateDynamic3DTextLabel("/buytoys\n To buy some accessories.",COLOR_YELLOW,201.0413,-40.1616,1001.8047,8.0);
  3230. CreateDynamic3DTextLabel("/buytoys\n To buy some accessories.",COLOR_YELLOW,206.3963,-8.2122,1001.2109,8.0);
  3231. CreateDynamic3DTextLabel("/buytoys\n To buy some accessories.",COLOR_YELLOW,162.7706,-83.2726,1001.8047,8.0);
  3232. CreateDynamic3DTextLabel("/buytoys\n To buy some accessories.",COLOR_YELLOW,2787.095947, 2390.353027, 1240.531127+0.6,4.0); // Gold+ VIP Room
  3233. CreateDynamic3DTextLabel("/buytoys\n To buy some accessories.",COLOR_YELLOW,202.6777,-163.0623,1000.5306,8.0);
  3234. CreateDynamic3DTextLabel("/cookmeth\n To start cooking the meth.",COLOR_YELLOW, 333.0822, 1120.1993, 1089.2824,8.0);// Meth Interior
  3235. CreateDynamic3DTextLabel("/getacid\n to purchase Liters of acid", COLOR_YELLOW,-1854.9646,-1561.6967,21.7500,8.0);// Get Acid thingy
  3236. //////////////////// GAS STATIONS ////////////////////////////
  3237. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,1595.5406, 2198.0520, 10.3863,12.0);
  3238. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,2202.0649, 2472.6697, 10.5677,12.0);
  3239. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,2115.1929, 919.9908, 10.5266,12.0);
  3240. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,2640.7209, 1105.9565, 10.5274,12.0);
  3241. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,608.5971, 1699.6238, 6.9922,12.0);
  3242. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,618.4878, 1684.5792, 6.9922,12.0);
  3243. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,2146.3467, 2748.2893, 10.5245,12.0);
  3244. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,-1679.4595, 412.5129, 6.9973,12.0);
  3245. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,-1327.5607, 2677.4316, 49.8093,12.0);
  3246. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,-1470.0050, 1863.2375, 32.3521,12.0);
  3247. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,-2409.2200, 976.2798, 45.2969,12.0);
  3248. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,-2244.1396, -2560.5833, 31.9219,12.0);
  3249. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,1937.4293, -1773.1865, 13.3828,12.0);
  3250. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,-91.3854, -1169.9175, 2.4213,12.0);
  3251. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,1383.4221, 462.5385, 20.1506,12.0);
  3252. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,660.4590, -565.0394, 16.3359,12.0);
  3253. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,1381.7206, 459.1907, 20.3452,12.0);
  3254. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,-1605.7156, -2714.4573, 48.5335,12.0);
  3255. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,1882.2546,-2393.9824,16.5144,20.0);
  3256. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,1386.5360,-271.5511,-0.4857,20.0);
  3257. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,2017.3016,-229.9219,-0.2183,20.0);
  3258. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,279.1325,1940.4025,17.6406,10.0);
  3259. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,2464.0559,-39.4331,26.4762,10.0);
  3260. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,217.8744,-149.4237,1.5686,10.0);
  3261. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,21.7868,-2647.8154,40.4627,10.0);
  3262. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,-2029.6356,156.5112,28.8283,10.0);
  3263. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,1557.7166,-1610.7390,12.8536,10.0);
  3264. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,1886.372,-2283.015, 13.546,25.0);
  3265. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,-2018.8501,-161.0294,35.4880,20.0);
  3266. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,-1152.7191,-136.6198,14.1440,30.0);
  3267. CreateDynamic3DTextLabel("{33AA33}Gas Station\n {FFFF00}Type '/refuel' to refill your vehicle's tank.",COLOR_YELLOW,-2323.3120,2361.6733,4.6784,30.0);
  3268.  
  3269. ///////////////////// TURN IN POINTS /////////////////////
  3270. CreateDynamic3DTextLabel("/turnin",COLOR_DBLUE, 240.8950, 112.7382, 1003.2188,4.0);///turnin(LAPD)
  3271. CreatePickup(1247, 23, 240.8950, 112.7382, 1003.2188, -1); // LAPD Turnin
  3272. CreateDynamic3DTextLabel("/turnin",COLOR_DBLUE, 2531.3040, -1659.8525,562.8000,4.0);///turnin(LASD)
  3273. CreatePickup(1247, 23, 2531.3040, -1659.8525, 562.8000, -1); // LASD Turnin
  3274. CreateDynamic3DTextLabel("/turnin",COLOR_DBLUE, 234.9487, 165.0764, 1003.0300,4.0);///turnin(LVMPD)
  3275. CreatePickup(1247, 23, 234.9487, 165.0764, 1003.0300, -1); // LVMPD Turnin
  3276.  
  3277.  
  3278.  
  3279.  
  3280. //Toll Booths - Steve Smith
  3281. new Float:TBX, Float:TBZ;
  3282. // LA - LV on the I25
  3283. TollBooths[0] = CreateDynamicObject(968,1752.0000000,533.3994100,26.8000000,359.9560000,88.6930000,161.2570000); //object(barrierturn) (nbl)
  3284. GetDynamicObjectRot(TollBooths[0], TBX, OriginalRotation[0], TBZ);
  3285. TollBooths[1] = CreateDynamicObject(968,1752.3000500,533.2999900,26.8000000,359.9590000,88.6960000,340.2890000); //object(barrierturn) (nbr)
  3286. GetDynamicObjectRot(TollBooths[1], TBX, OriginalRotation[1], TBZ);
  3287. TollBooths[2] = CreateDynamicObject(968,1731.8000500,529.5999800,27.3000000,359.9560000,88.6930000,341.2040000); //object(barrierturn) (sbl)
  3288. GetDynamicObjectRot(TollBooths[2], TBX, OriginalRotation[2], TBZ);
  3289. TollBooths[3] = CreateDynamicObject(968,1731.5000000,529.7000100,27.3000000,359.9560000,88.6930000,161.2610000); //object(barrierturn) (sbr)
  3290. GetDynamicObjectRot(TollBooths[3], TBX, OriginalRotation[3], TBZ);
  3291. // Constitution Bridge
  3292. TollBooths[4] = CreateDynamicObject(968, 421.34, 615.01, 18.91, 0.00, 270.00, 214.97); //Barrier (Closed)
  3293. GetDynamicObjectRot(TollBooths[4], TBX, OriginalRotation[4], TBZ);
  3294. TollBooths[5] = CreateDynamicObject(968, 420.09, 614.15, 18.91, 0.00, 90.00, 214.97); //Barrier (Closed)
  3295. GetDynamicObjectRot(TollBooths[5], TBX, OriginalRotation[5], TBZ);
  3296. // Gateway Bridge
  3297. TollBooths[6] = CreateDynamicObject(968, -136.34, 488.91, 11.29, -5.50, 270.00, -13.70); //Barrier (Closed)
  3298. GetDynamicObjectRot(TollBooths[6], TBX, OriginalRotation[6], TBZ);
  3299. TollBooths[7] = CreateDynamicObject(968, -135.65, 488.73, 11.35, -5.50, 90.00, -13.70); //Barrier (Closed)
  3300. GetDynamicObjectRot(TollBooths[7], TBX, OriginalRotation[7], TBZ);
  3301.  
  3302. // Paintball Arena
  3303. CreateDynamic3DTextLabel("Paintball Rooms\n\nType /joinarena to choose rooms",COLOR_YELLOW,1294.5062,-1445.0599,0.4403+0.5,6.0);
  3304.  
  3305. // SANews Broadcast
  3306. SANews3DText = CreateDynamic3DTextLabel(string,COLOR_LIGHTBLUE,632.7400,-14.2350,1108.2181,8.0);
  3307. UpdateSANewsBroadcast();
  3308.  
  3309. // Buildings 3D labels
  3310. CreateDynamic3DTextLabel("Press F (enter) to go inside.",COLOR_YELLOW,1568.5718,-1691.0177,5.8906+0.6,4.0); //LAPD Garage enter
  3311. CreateDynamic3DTextLabel("Press F (enter) to go inside.",COLOR_YELLOW,1564.8464,-1666.1444,28.3956+0.6,4.0); //LAPD Roof enter
  3312. CreateDynamic3DTextLabel("Impound Yard \nType /impound to impound a vehicle",COLOR_YELLOW,1647.4847,-1839.7803,13.5443+0.6,5.0); //LA Impound Point Text
  3313. CreatePickup(1239, 23, 1647.4847,-1839.7803,13.5443, -1); // LA Impound Point Icon
  3314. CreateDynamic3DTextLabel("Impound Yard \nType /impound to impound a vehicle",COLOR_YELLOW,797.7496,-617.0283,16.3359+0.6,5.0); //Dillimore Impound Text
  3315. CreatePickup(1239, 23, 797.7496,-617.0283,16.3359, -1); // Dillimore Impound Icon
  3316. CreateDynamic3DTextLabel("Impound Yard \nType /impound to impound a vehicle",COLOR_YELLOW,2412.3098,-1425.6677,23.9836+0.6,5.0); //LS Impound Not Used Text
  3317. CreatePickup(1239, 23, 2412.3098,-1425.6677,23.9836, -1); // LS Impound Not Used Icon
  3318. CreateDynamic3DTextLabel("Impound Yard \nType /impound to impound a vehicle",COLOR_YELLOW,2093.221,-2723.953,13.135+0.6,5.0); // RR Impound Text
  3319. CreatePickup(1239, 23, 2093.221,-2723.953,13.135, -1); // RR Impound Icon
  3320. CreateDynamic3DTextLabel("Impound Yard \nType /impound to impound a vehicle",COLOR_YELLOW,1354.5469,363.1523,19.8893+0.6,5.0); // Montgomery Impound Point Text
  3321. CreatePickup(1239, 23,1354.5469,363.1523,19.8893, -1); // Montgomery Impound Point Icon
  3322. CreateDynamic3DTextLabel("Impound Yard \nType /impound to impound a vehicle",COLOR_YELLOW,1395.00,456.00,20.10+0.6,5.0); // Montgomery Impound Point Text #2
  3323. CreatePickup(1239, 23,1395.00,456.00,20.10, -1); // Montgomery Impound Point Icon #2
  3324. CreateDynamic3DTextLabel("Impound Yard \nType /impound to impound a vehicle",COLOR_YELLOW,1237.8187,177.8407,20.3382+0.6,5.0); // PIE St Impound Text
  3325. CreatePickup(1239, 23,1237.8187,177.8407,20.3382, -1); // LV Impound Central
  3326. CreateDynamic3DTextLabel("SF Impound Yard \nType /impound to impound a vehicle",COLOR_YELLOW,1745.7527,1816.9185,11.5726+0.6,5.0); // LV Central Impound Text
  3327. CreatePickup(1239, 23,1745.7527,1816.9185,11.5726, -1); // LV Central Impound Point Icon
  3328. CreateDynamic3DTextLabel("Impound Yard \nType /impound to impound a vehicle",COLOR_YELLOW,662.5532,1696.8132,7.1875+0.6,5.0); // LV Impound
  3329. CreatePickup(1239, 23, 662.5532,1696.8132,7.1875, -1); // LV Impound
  3330. CreateDynamic3DTextLabel("Impound Yard \nType /impound to impound a vehicle",COLOR_YELLOW,2241.6765,2439.4819,10.8203+0.6,5.0); // LVMPD Impound
  3331. CreatePickup(1239, 23, 2241.6765,2439.4819,10.8203, -1); // LVMPD Impound
  3332. CreateDynamic3DTextLabel("Type /getmats to purchase material packages",COLOR_YELLOW,-1816.528686, -179.502624, 9.398437+0.6,5.0);
  3333. CreateDynamic3DTextLabel("Name Change Point \nType /changename to change your name",COLOR_YELLOW,1154.7295,-1440.2323,15.7969+0.6,18.0); // Namechange at mall
  3334. CreatePickup(1239, 23,-2144.409, -103.948, 36.00, -1); // SF CDL Job
  3335. CreateDynamic3DTextLabel("CDL Truck Job \n Type /sftruckjob to begin",COLOR_YELLOW,-2144.409, -103.948, 36.59+0.6,5.0);
  3336. CreatePickup(1239,23,-2280.27, 751.46, 1069.00,-1); //Radio Shack Store
  3337. CreateDynamic3DTextLabel("Radio Shack \n Type /radioshack to begin",COLOR_YELLOW,-2280.27,751.46,1069.6+0.6,5.0);//Radio Shack
  3338. CreatePickup(1239,23,374.176, -67.494, 1001.507,-1); //Burger Shot
  3339. CreateDynamic3DTextLabel("Burger Shot \n Type /burgershot to purchase",COLOR_YELLOW,374.176,-67.494,1002.0+0.6,5.0);//BS
  3340. CreatePickup(1239,23,-2156.4575, -2450.4802, 1030.6741,-1); //CluckNBell
  3341. CreateDynamic3DTextLabel("Cluck N'Bell \n Type /clucknbell to purchase",COLOR_YELLOW,-2156.4575,-2450.4802,1031.0741+0.6,5.0);//CNB
  3342. CreatePickup(1239,23,1690.9829,1448.1918,10.7659,-1); // LV Taxi Job
  3343.  
  3344. // LV Jobs
  3345. CreateDynamic3DTextLabel("Drug Dealer Job \nType /join to become one",COLOR_RED,2128.8589,650.1796,11.4609+0.5,4.0);// Drug Dealer
  3346. CreateDynamic3DTextLabel("Lawyer Job \nType /join to become one",COLOR_RED,2478.7542,1022.1125,10.8203+0.5,4.0);// Lawyer
  3347. CreateDynamic3DTextLabel("Craftsman Job \nType /join to become one",COLOR_RED,829.2385,860.3727,12.4540+0.5,4.0);// Craftsman
  3348. CreateDynamic3DTextLabel("Arms Dealer Job \nType /join to become one",COLOR_RED,2177.0498,925.1132,11.0995+0.5,4.0);// Arms Dealer
  3349. CreateDynamic3DTextLabel("Private Investigator Job \nType /join to become one",COLOR_RED,229.4008,168.7817,1003.0234+0.5,4.0);// Private Investigator
  3350. CreateDynamic3DTextLabel("Body Guard Job \nType /join to become one",COLOR_RED,770.9471,-77.7359,1000.6563+0.5,4.0);// Bodyguard
  3351. CreateDynamic3DTextLabel("Whore Job \nType /join to become one",COLOR_RED,693.6890,1967.0238,5.5391+0.5,4.0);// Whore
  3352.  
  3353. /* Job's 3D Text */
  3354. CreateDynamic3DTextLabel("Private Investigator Job \nType /join to become one",COLOR_RED,251.99, 117.36, 1003.22+0.5,4.0);// Detective Job (LS)
  3355. CreateDynamic3DTextLabel("Private Investigator \nType /join to become one",COLOR_RED,301.042633, 178.700408, 1007.171875+0.5,4.0);// Detective Job (SF)
  3356. CreateDynamic3DTextLabel("Arms Dealer Job \nType /join to become one",COLOR_RED,1366.4325,-1275.2096,13.5469+0.5,4.0);// Gun Job
  3357. CreateDynamic3DTextLabel("Arms Dealer Job \nType /join to become one",COLOR_RED,-2623.333984, 209.235931, 4.684767+0.5,4.0);// Gun Job
  3358. CreateDynamic3DTextLabel("Drug Dealer Job \nType /join to become one",COLOR_RED,2166.3772,-1675.3829,15.0859+0.5,4.0);// Drug Dealer (LS)
  3359. //CreateDynamic3DTextLabel("Drug Dealer Job \nType /join to become one",COLOR_RED,-2089.344970, 87.800231, 35.320312+0.5,4.0);// Drug Dealer (SF)
  3360. CreateDynamic3DTextLabel("Bodyguard Job \nType /join to become one",COLOR_RED,2226.1716,-1718.1792,13.5165+0.5,4.0);// Bodyguard (LS)
  3361. //CreateDynamic3DTextLabel("Bodyguard Job \nType /join to become one",COLOR_RED,-2269.256103, -158.054321, 35.320312+0.5,4.0);// Bodyguard (SF)
  3362. CreateDynamic3DTextLabel("Lawyer Job \nType /join to become one",COLOR_RED,1380.8955,-1088.6808,27.3844+0.5,4.0);// Lawyer
  3363. CreateDynamic3DTextLabel("Taxi Job \nType /join to become one",COLOR_RED,1741.6218,-1863.6486,13.5748+0.5,4.0);// Taxi Driver (LS)
  3364. CreateDynamic3DTextLabel("Taxi Job \nType /join to become one",COLOR_RED,1690.9829,1448.1918,10.7659+0.5,4.0);// Taxi Driver (LV)
  3365. //CreateDynamic3DTextLabel("Taxi Job \nType /join to become one",COLOR_RED,-1981.144775, 133.063293, 27.687500+0.5,4.0);// Taxi Driver (SF)
  3366. //CreateDynamic3DTextLabel("Bodyguard Job \nType /join to become one",COLOR_RED,1224.13, 267.98, 19.55+0.5,4.0);// Bodyguard (Montgomery)
  3367. // CreateDynamic3DTextLabel("Mechanic Job \nType /join to become one",COLOR_RED,-2032.601928, 143.866592, 28.835937+0.5,4.0);// Mechanic (SF)
  3368. CreateDynamic3DTextLabel("Whore Job \nType /join to become one",COLOR_RED,1215.1304,-11.8431,1000.9219+0.5,4.0);// Whore
  3369. CreateDynamic3DTextLabel("Boxer Job \nType /join to become one",COLOR_RED,766.0804,14.5133,1000.7004+0.5,4.0);// Boxer
  3370. CreateDynamic3DTextLabel("Boxer Job \nType /join to become one",COLOR_RED,758.98,-60.32,1000.78+0.5,4.0);// Boxer2
  3371. CreateDynamic3DTextLabel("Drug Smuggler Job \nType /join to become one",COLOR_RED,1147.9441,-1202.8629,19.5069,4.0);// Drug Smuggler
  3372. CreateDynamic3DTextLabel("Bodyguard Job \nType /join to become one",COLOR_RED,1099.73,-1504.67,15.800+0.5,4.0);// Bodyguard (MALL GYM)
  3373. CreateDynamic3DTextLabel("Craftsman Job \nType /join to become one",COLOR_RED,2097.9077,-1885.6401,13.4832+0.5,4.0);// Craftsman (MATSPICKUP LS)
  3374. CreateDynamic3DTextLabel("Bartender Job \nType /join to become one",COLOR_RED,502.6696,-11.6603,1000.6797+0.5,4.0);// Bartender (Alhambra)
  3375. CreateDynamic3DTextLabel("Trucker Job \nType /join to become one",COLOR_RED,2453.7036,-2117.8679,13.5469+0.5,4.0);// Trucker Job (LS)
  3376. CreateDynamic3DTextLabel("Pizza Boy Job \nType /join to become one",COLOR_RED,2107.5869,-1785.0497,13.3870+0.5,4.0);// Pizza Boy Job (LS)
  3377. //CreateDynamic3DTextLabel("Pizza Boy Job \nType /join to become one",COLOR_RED,2107.5869,-1785.0497,13.3870+0.5,4.0);// Pizza Boy Job (LS)
  3378. CreateDynamic3DTextLabel("Taxi Job \nType /join to become one",COLOR_RED,-1981.2365,134.1870,27.1870+0.5,4.0);// Taxi Job SF
  3379. CreateDynamic3DTextLabel("Fedex Job \nType /join to become one",COLOR_RED,-2178.6050,-219.6252,36.515+0.5,4.0);// Fedex Job (SF)
  3380. CreateDynamic3DTextLabel("Chop Shop \nType /dumpstolen to sell",COLOR_RED,2117.8098,950.6194,10.6677+0.5,4.0);// Stolen Car Chop Shop (LV)
  3381. CreatePickup(1239,23,2117.8098,950.6194,10.6677,-1); // LV Chop Shop
  3382.  
  3383. SFPDGate1 = CreateDynamicObject(975,1862.400024,-1706.406982,5202.585937,0.00000000,0.00000000,0.00000000); //Prison Interior Outer//CLOSE
  3384. SFPDGate2 = CreateDynamicObject(971,1854.050048,-1725.452148,5201.0,0.00000000,0.00000000,270.00000000); //Prison Interior Inner//CLOSE
  3385. SFPDGate3 = CreateDynamicObject(980,1820.8,409.721893,20.10,0.00000000,0.00000000,34.0000000); //Prison Gate Exterior // CLOSE
  3386. SFPDGate4 = CreateDynamicObject(2990,1765.92,407.07, 22.22,0.00,0.00,-96.00);// Prison Gate Exterior
  3387. SFPDGate5 = CreateDynamicObject(971,-1631.12,688.14,9.39,0.00,0.00,0.00);//San Francisco Police Station Gate CLOSEDup
  3388. CGGate1 = CreateDynamicObject(976,-1534.6260,482.4881,6.3024,0.0,0.0,0.0);//US Coast Guard Base Gate
  3389. CHPGate1 = CreateDynamicObject(968, -2047.15, -103.10, 35.43, 0.00, 90.00, 0.00); // Chipper Gate Outbound (CLOSED)
  3390. CHPGate2 = CreateDynamicObject(968, -2047.02, -120.38, 35.43, 0.00, 90.00, 180.00); // Chipper Gate Inbound (CLOSED)
  3391. RRGate = CreateDynamicObject(980,2228.300048, -2667.899902, 15.300,0.0,0.0,324); //RR Gate
  3392. //nationalGATE = CreateDynamicObject(2927,211.86804199,1875.72998047,13.93899250,0.00000000,0.00000000,179.95495605); //object(a51_blastdoorr) (1)
  3393. //nationalGATE2 = CreateDynamicObject(2929,215.96099854,1875.70983887,13.93899250,0.00000000,0.00000000,179.85498047); //object(a51_blastdoorl) (1)
  3394. // SASDGate1 = CreateDynamicObject(980, -113.5,-1822.807373,3.40, 0, 0, 183); //SDHQ CLOSED
  3395. SASDGate2 = CreateDynamicObject(980,1812.82580566,-2072.14233398,15.29389954,0.00000000,0.00000000,270.00000000); //LAPD Substation object(airportgate) (1)
  3396. // SASDGate3 = CreateDynamicObject(980, -125.197837,-1816.232299,3.29999, 0, 0, 90); //SDHQ CLOSED
  3397. //CreateDynamicObject(1569, 2294, 2492.92, 2.29, 0, 0, 90);
  3398. //CreateDynamicObject(1569, 2294, 2492.92, 4.8, 0, 0, 90);
  3399.  
  3400. /* (ongamemodeinit) - LAPD stuff */
  3401. eastlobby1 = CreateDynamicObject(1536,253.14941406,110.59960938,1002.21502686,0.00000000,0.00000000,270.00000000,-1,10,-1,100.0); // East lobby door (moves north)
  3402. eastlobby2 = CreateDynamicObject(1536,253.18457031,107.59960938,1002.21502686,0.00000000,0.00000000,90.00000000,-1,10,-1,100.0); // East lobby door (moves south)
  3403. westlobby1 = CreateDynamicObject(1536,239.71582031,116.09179688,1002.21502686,0.00000000,0.00000000,90.00000000,-1,10,-1,100.0); // West lobby door (moves north)
  3404. westlobby2 = CreateDynamicObject(1536,239.67968750,119.09960938,1002.21502686,0.00000000,0.00000000,269.98901367,-1,10,-1,100.0); // West lobby door (moves south)
  3405. locker1 = CreateDynamicObject(1536,267.29980469,112.56640625,1003.61718750,0.00000000,0.00000000,179.99450684,-1,10,-1,100.0); // Locker door (moves east)
  3406. locker2 = CreateDynamicObject(1536,264.29980469,112.52929688,1003.61718750,0.00000000,0.00000000,0.00000000,-1,10,-1,100.0); // Locker door (moves west)
  3407. cctv1 = CreateDynamicObject(1536,264.44921875,115.79980469,1003.61718750,0.00000000,0.00000000,0.00000000,-1,10,-1,100.0); // CCTV door (moves west)
  3408. cctv2 = CreateDynamicObject(1536,267.46875000,115.83691406,1003.61718750,0.00000000,0.00000000,179.99450684,-1,10,-1,100.0); // CCTV door (moves east)
  3409. chief1 = CreateDynamicObject(1536,229.59960938,119.50000000,1009.21875000,0.00000000,0.00000000,0.00000000,-1,10,-1,100.0); // innermost chief's door
  3410. chief2 = CreateDynamicObject(1536,232.59960938,119.53515625,1009.21875000,0.00000000,0.00000000,179.99450684,-1,10,-1,100.0); // outermost chief's door (both move west)
  3411. CreateDynamicObject(2009, 277.40, 110.98, 1003.47, -0.02, 0.00, 0.00);
  3412. CreateDynamicObject(1714, 278.24, 110.55, 1003.61, 0.00, 0.00, -164.00);
  3413. CreateDynamicObject(2342, 277.73, 111.91, 1004.40, 0.00, 0.00, 33.00);
  3414. /* LAPD buttons */
  3415. eastin = CreateButton(253.44921875,110.59960938,1003.79998779,90.00000000); //object(fire_break) (1)
  3416. westout = CreateButton(239.79492188,116.18457031,1003.87286377,90.00000000); //object(fire_break) (2)
  3417. westin = CreateButton(239.32031250,116.27441406,1003.87286377,270.00000000); //object(fire_break) (3)
  3418. eastout = CreateButton(253.00000000,110.59960938,1003.79998779,270.00000000); //
  3419. elevator = CreateButton(275.83984375,120.94921875,1005.12280273,90.00000000); //object(kmb_keypad) (1)
  3420. cctvin = CreateButton(264.55566406,115.97949219,1005.12280273,179.99450684); //object(kmb_keypad) (2)
  3421. cctvout = CreateButton(264.55566406,115.69531250,1005.12280273,0.00000000); //object(kmb_keypad) (3)
  3422. lockerin = CreateButton(267.21679688,112.40917969,1005.12280273,0.00000000); //object(kmb_keypad) (4)
  3423. lockerout = CreateButton(267.21679688,112.66992188,1005.12280273,179.99450684); //object(kmb_keypad) (5)
  3424. chiefout = CreateButton(232.50000000,119.38476562,1010.81384277,0.00000000); //object(sec_keypad) (2)
  3425. chiefin = CreateButton(229.67089844,119.66992188,1010.81384277,179.99450684); //object(sec_keypad) (1)
  3426. roofkey = CreateButton(1565.93652344,-1667.35058594,28.85165977,179.99450684); //object(sec_keypad) (3)
  3427. garagekey = CreateButton(1567.14550781,-1689.62011719,6.69999981,0.00000000); //object(sec_keypad) (4)
  3428. sasdbtn1 = CreateButton(2514.59179688,-1697.05761719,563.19116211,0.00000000); //SASD West
  3429. sasdbtn2 = CreateButton(2522.82299805,-1660.15917969,563.15893555,0.00000000); //SASD East
  3430. sasdbtn3 = CreateButton(2525.09863281,-1697.05761719,563.16284180,0.00000000); //SASD R4
  3431. sasdbtn4 = CreateButton(2519.84375000,-1697.00659180,563.20904541,0.00000000); //SASD R5
  3432. sasdbtn5 = CreateButton(2514.77880859,-1660.15917969,563.16925049); //SASD R6
  3433.  
  3434. AlcatrazButtons[0] = CreateButton(-2056.9158, -200.7584, 996.1127, 90); // Control Room
  3435. AlcatrazButtons[1] = CreateButton(-2092.550048, -204, 996.099975, 0); // Control Room Door 2
  3436. AlcatrazButtons[2] = CreateButton(-2088.530029, -213, 996, 90); //Control Room Door 1
  3437. AlcatrazButtons[3] = CreateButton(-2037, -191, 992.200012, 270); // Security Room
  3438. AlcatrazButtons[4] = CreateButton(-2050.5, -205.880004, 985.599975, 0); // Staff Lounge
  3439. AlcatrazButtons[5] = CreateButton(-2046.599975, -194, 985.700012, 270); // Duty Room
  3440. AlcatrazButtons[6] = CreateButton(-2092.772949, -193.570007, 979.299987, 0); // Security Room 2
  3441. AlcatrazButtons[8] = CreateButton( -2094.65, -197.84, 978.90, 90); // Security Room Enter
  3442. AlcatrazButtons[10] = CreateButton( -2094.6348, -196.5944, 978.9427, 90); // Security Room Exit
  3443. AlcatrazButtons[9] = CreateButton( -2041.56, -193.80, 991.81, 90); // Security Room 2 Enter
  3444. AlcatrazButtons[11] = CreateButton( -2041.5525, -192.0342, 991.7440, 90); // Security Room 2 Exit
  3445.  
  3446. /* Noose Int Buttons */
  3447. nooseenter[0] = CreateButton(-765.87152100,2539.55102539,10021.18847847,90); //object(kmb_keypad) (5) yes entrance
  3448. nooseenter[1] = CreateButton(-766.81298828,2539.55664062,10021.18847847,0); //object(kmb_keypad) (9) yes entrance
  3449. radarroom[0] = CreateButton(-747.22851562,2533.17968750,10021.18847656,260);
  3450. radarroom[1] = CreateButton(-745.98876953,2533.04150391,10021.18847656,90);
  3451. intergate[0] = CreateButton(-765.34863281,2549.97070312,10021.18847656,90);
  3452. intergate[1] = CreateButton(-765.13671875,2554.51660156,10020.90917969,260 );
  3453. intergate[2] = CreateButton(-773.29394531,2546.13134766,10020.86816406,90); // Cage
  3454. bottomroom[0] = CreateButton(-764.06152344,2566.59277344,10021.18847656, 90);
  3455. bottomroom[1] = CreateButton(-764.51269531,2566.65332031,10021.18847656, 260);
  3456. ncontrolroom[0] = CreateButton(-754.32763672,2538.71655273,10021.61132812, 178.50000000);
  3457. ncontrolroom[1] = CreateButton(-752.47076416,2538.23266602,10021.00195312, 0);
  3458. /* Noose Int Buttons End */
  3459.  
  3460. sasd1A = CreateDynamicObject(1536,2511.65332031,-1697.00976562,561.79223633,0.00000000,0.00000000,0.00000000); //R6
  3461. sasd1B = CreateDynamicObject(1536,2514.67211914,-1696.97485352,561.79223633,0.00000000,0.00000000,180.00000000); //object(gen_doorext15) (2)
  3462.  
  3463. sasd2A = CreateDynamicObject(1536,2516.87548828,-1697.01525879,561.79223633,0.00000000,0.00000000,0.00000000); //R5
  3464. sasd2B = CreateDynamicObject(1536,2519.89257812,-1696.97509766,561.79223633,0.00000000,0.00000000,179.99450684); //object(gen_doorext15) (4)
  3465.  
  3466. sasd3A = CreateDynamicObject(1536,2522.15600586,-1697.01550293,561.79223633,0.00000000,0.00000000,0.00000000); //R4
  3467. sasd3B = CreateDynamicObject(1536,2525.15893555,-1696.98010254,561.79223633,0.00000000,0.00000000,179.99450684); //object(gen_doorext15) (6)
  3468.  
  3469. sasd4A = CreateDynamicObject(1536,2511.84130859,-1660.08081055,561.79528809,0.00000000,0.00000000,0.00000000); //West
  3470. sasd4B = CreateDynamicObject(1536,2514.81982422,-1660.04650879,561.80004883,0.00000000,0.00000000,180.00000000); //object(gen_doorext15) (1)
  3471.  
  3472. sasd5A = CreateDynamicObject(1536,2522.86059570,-1660.07177734,561.80206299,0.00000000,0.00000000,179.99450684); //East
  3473. sasd5B = CreateDynamicObject(1536,2519.84228516,-1660.10888672,561.80004883,0.00000000,0.00000000,0.00000000); //object(gen_doorext15) (1)
  3474.  
  3475. //-----------------------BEGIN OBJECTS-----------------------------------//
  3476.  
  3477. // Stop Signs
  3478. CreateStopSigns();
  3479.  
  3480. //New Custom Texts around the City of Los Angeles
  3481. new GovParking = CreateObject(19479, 1535.6809, -1672.5848, 12.4386, -0.2999, -89.1001, 179.8032);
  3482. SetObjectMaterialText(GovParking, "GOVERNMENT PARKING", 0, 60, "Fantasy", 14, 1, -1, 0, 1);
  3483.  
  3484. new CCFDKC1 = CreateObject(19479, 1774.97900, 2055.50635, 9.83280, 0.00000, 270.00000, 0.00000);
  3485. SetObjectMaterialText(CCFDKC1, "KEEP", 0, 60, "Fantasy", 14, 1, -1, 0, 1);
  3486.  
  3487. new CCFDKC2 = CreateObject(19479, 1777.10815, 2055.47705, 9.83280, 0.00000, 270.00000, 0.00000);
  3488. SetObjectMaterialText(CCFDKC2, "CLEAR", 0, 60, "Fantasy", 14, 1, -1, 0, 1);
  3489.  
  3490. new CCFDKC3 = CreateObject(19479, 1744.40002, 2050.81689, 9.83280, 0.00000, 270.00000, 180.00000);
  3491. SetObjectMaterialText(CCFDKC3, "KEEP", 0, 60, "Fantasy", 14, 1, -1, 0, 1);
  3492.  
  3493. new CCFDKC4 = CreateObject(19479, 1742.43933, 2050.78735, 9.83280, 0.00000, 270.00000, 180.00000);
  3494. SetObjectMaterialText(CCFDKC4, "CLEAR", 0, 60, "Fantasy", 14, 1, -1, 0, 1);
  3495.  
  3496. new FDONLY = CreateObject(19479, 1762.55000, 2065.8500, 9.83280, 0.00000, 270.00000, 270.00000);
  3497. SetObjectMaterialText(FDONLY, "FIRE DEPARTMENT", 0, 60, "Fantasy", 14, 1, -1, 0, 1);
  3498.  
  3499. new FDONLY1 = CreateObject(19479, 1762.50000, 2065.40000, 9.83280, 0.00000, 270.00000, 270.00000);
  3500. SetObjectMaterialText(FDONLY1, "VEHICLES ONLY", 0, 60, "Fantasy", 14, 1, -1, 0, 1);
  3501.  
  3502. new TopLAPD = CreateObject(19353, 1555.0843, -1675.5638, 21.3148, -1.4999, -1.3000, 176.9987);
  3503. SetObjectMaterialText(TopLAPD, "Los Angeles", 0, 50, "Arial", 16, 1, -16776961, 0, 1);
  3504.  
  3505. new BotLAPD = CreateObject(19353, 1555.1259, -1675.6402, 20.4676, 0.0000, 0.0000, 180.2389);
  3506. SetObjectMaterialText(BotLAPD, "Police Department", 0, 50, "Arial", 15, 1, -16776961, 0, 1);
  3507.  
  3508. new viphq1 = CreateObject(19353, 1460.5144, -1573.9436, 16.9228, 0.0000, 0.0000, -91.0916);
  3509. SetObjectMaterialText(viphq1, "VIP HQ", 0, 50, "Times", 35, 0, -16730675, 0, 1);
  3510.  
  3511. CreateDynamicObject(8674,1386.46386719,-1703.98828125,15.15055943,0.00000000,0.00000000,90.00000000); //object(csrsfence02_lvs) (1)
  3512. CreateDynamicObject(8674,1386.46191406,-1703.98828125,12.24967861,0.00000000,0.00000000,90.00000000); //object(csrsfence02_lvs) (2)
  3513. //CreateDynamicObject(5066,1388.90405273,-1679.49853516,14.12778282,0.00000000,0.00000000,90.00000000); //object(mondoshave_las) (1)
  3514. //CreateDynamicObject(5066,1388.90332031,-1679.49804688,15.88138199,0.00000000,0.00000000,90.00000000); //object(mondoshave_las) (2)
  3515. COURTGate = CreateDynamicObject(971,1383.96484375,-1679.52185059,12.97999668,0.00000000,0.00000000,180.00000000); //object(subwaygate) (closed)
  3516. CreateDynamicObject(971,1389.12402344,-1679.52185059,12.97999668,0.00000000,0.00000000,179.99450684); //object(subwaygate) (open)
  3517. CARGarage = CreateDynamicObject(3294, -1581.60, -2714.00, 50.486, 0.00, 0.00, 56.4);
  3518. //Custom House Objects 3275
  3519. CreateDynamicObject(4100, 665.16, -1217.77, 12.27, -40.00, 90.00, 227.39);
  3520. CreateDynamicObject(4100, 667.08, -1215.67, 12.27, -40.00, 90.00, 227.39);
  3521. CreateDynamicObject(4100, 668.95, -1213.62, 12.27, -40.00, 90.00, 227.39);
  3522. House275Gate[0] = CreateDynamicObject(987, 661.76, -1221.51, 13.87, 0.00, 0.00, -118.16);
  3523. House275Gate[1] = CreateDynamicObject(987, 658.95, -1311.08, 12.25, 0.00, 0.00, 0.00);
  3524. House275Gate[2] = CreateDynamicObject(987, 787.17, -1158.40, 22.23, 0.00, 0.00, -270.00);
  3525.  
  3526. // Memorial - Stairs To Roof
  3527. CreateDynamicObject(12950, 1215.8565673828, 306.17776489258, 19.985977172852, 0.000000, 0.000000, 334.06005859375); //
  3528.  
  3529. // Cityhall - Added By Patrick
  3530. CreateDynamicObject(10377, 1481.13000, -1792.93005, 30.59000, 0.00000, 0.00000, 89.43000);
  3531. CreateDynamicObject(10368, 1479.34998, -1678.97998, 32.87000, 0.00000, 0.00000, -180.00000);
  3532. CreateDynamicObject(7090, 1481.28003, -1774.68994, 35.03000, 0.00000, 8.00000, 90.00000);
  3533. CreateDynamicObject(1215, 1492.91003, -1774.48999, 13.82000, 0.00000, 0.00000, 0.00000);
  3534. CreateDynamicObject(1215, 1469.69995, -1774.23999, 13.89000, 0.00000, 0.00000, 0.00000);
  3535. CreateDynamicObject(1256, 1451.50000, -1744.50000, 13.20000, 0.00000, 0.00000, 180.00000);
  3536. CreateDynamicObject(1256, 1510.40002, -1744.50000, 13.20000, 0.00000, 0.00000, 0.00000);
  3537. CreateDynamicObject(1216, 1410.04004, -1753.50000, 13.20000, 0.00000, 0.00000, 90.00000);
  3538. CreateDynamicObject(1216, 1548.80005, -1753.30005, 13.20000, 0.00000, 0.00000, 270.00000);
  3539. CreateDynamicObject(1223, 1409.69995, -1752.30005, 12.00000, 0.00000, 0.00000, 315.00000);
  3540. CreateDynamicObject(1223, 1549.19995, -1752.40002, 12.00000, 0.00000, 0.00000, 215.00000);
  3541. CreateDynamicObject(18981, 1512.12000, -1609.71997, 11.87000, 0.00000, 90.00000, 0.00000);
  3542. CreateDynamicObject(18981, 1512.14001, -1634.67004, 11.87000, 0.00000, 90.00000, 0.00000);
  3543. CreateDynamicObject(18981, 1512.12000, -1659.54004, 11.87000, 0.00000, 90.00000, 0.00000);
  3544. CreateDynamicObject(18981, 1512.09998, -1684.43005, 11.87000, 0.00000, 90.00000, 0.00000);
  3545. CreateDynamicObject(18981, 1512.09998, -1709.04004, 11.87000, 0.00000, 90.00000, 0.00000);
  3546. CreateDynamicObject(18981, 1512.09998, -1733.69995, 11.87000, 0.00000, 90.00000, 0.00000);
  3547. CreateDynamicObject(18981, 1487.22998, -1609.78003, 11.87000, 0.00000, 90.00000, 0.00000);
  3548. CreateDynamicObject(18981, 1487.22998, -1634.46997, 11.87000, 0.00000, 90.00000, 0.00000);
  3549. CreateDynamicObject(18981, 1487.22998, -1659.31006, 11.87000, 0.00000, 90.00000, 0.00000);
  3550. CreateDynamicObject(18981, 1487.22998, -1684.29004, 11.87000, 0.00000, 90.00000, 0.00000);
  3551. CreateDynamicObject(18981, 1487.25000, -1709.21997, 11.87000, 0.00000, 90.00000, 0.00000);
  3552. CreateDynamicObject(18981, 1487.22998, -1734.13000, 11.87000, 0.00000, 90.00000, 0.00000);
  3553. CreateDynamicObject(18981, 1462.45996, -1609.59998, 11.87000, 0.00000, 90.00000, 0.00000);
  3554. CreateDynamicObject(18981, 1462.52002, -1634.57996, 11.87000, 0.00000, 90.00000, 0.00000);
  3555. CreateDynamicObject(18981, 1462.52002, -1659.37000, 11.87000, 0.00000, 90.00000, 0.00000);
  3556. CreateDynamicObject(18981, 1462.50000, -1684.31995, 11.87000, 0.00000, 90.00000, 0.00000);
  3557. CreateDynamicObject(18981, 1462.52002, -1709.18994, 11.87000, 0.00000, 90.00000, 0.00000);
  3558. CreateDynamicObject(18981, 1462.52002, -1722.67004, 11.87000, 0.00000, 90.00000, 0.00000);
  3559. CreateDynamicObject(18981, 1438.03003, -1609.68994, 11.87000, 0.00000, 90.00000, 0.00000);
  3560. CreateDynamicObject(18981, 1441.98999, -1634.32996, 11.87000, 0.00000, 90.00000, 0.00000);
  3561. CreateDynamicObject(18981, 1442.79004, -1658.89001, 11.87000, 0.00000, 90.00000, 0.00000);
  3562. CreateDynamicObject(18981, 1438.09998, -1683.56006, 11.87000, 0.00000, 90.00000, 0.00000);
  3563. CreateDynamicObject(18981, 1437.64001, -1707.52002, 11.87000, 0.00000, 90.00000, 0.00000);
  3564. CreateDynamicObject(18981, 1437.97998, -1732.33997, 11.87000, 0.00000, 90.00000, 0.00000);
  3565. CreateDynamicObject(16061, 1485.48999, -1602.62000, 12.38000, 0.00000, 0.00000, 90.00000);
  3566. CreateDynamicObject(16061, 1485.47998, -1631.72998, 12.36000, 0.00000, 0.00000, 90.00000);
  3567. CreateDynamicObject(6965, 1482.81006, -1616.71997, 15.99000, 0.00000, 0.00000, 0.00000);
  3568. CreateDynamicObject(1364, 1473.98999, -1631.56006, 13.14000, 0.00000, 0.00000, 180.00000);
  3569. CreateDynamicObject(1364, 1492.50000, -1631.56006, 13.14000, 0.00000, 0.00000, 180.00000);
  3570. CreateDynamicObject(1364, 1492.47998, -1602.17004, 13.14000, 0.00000, 0.00000, 0.00000);
  3571. CreateDynamicObject(1364, 1476.85999, -1602.17004, 13.14000, 0.00000, 0.00000, 0.00000);
  3572. CreateDynamicObject(1294, 1522.70996, -1640.77002, 16.84000, 0.00000, 0.00000, 180.00000);
  3573. CreateDynamicObject(1294, 1522.70996, -1656.79004, 16.84000, 0.00000, 0.00000, 180.00000);
  3574. CreateDynamicObject(1294, 1522.70996, -1674.97998, 16.84000, 0.00000, 0.00000, 180.00000);
  3575. CreateDynamicObject(1294, 1522.70996, -1702.54004, 16.84000, 0.00000, 0.00000, 180.00000);
  3576. CreateDynamicObject(1294, 1486.39001, -1725.70996, 16.84000, 0.00000, 0.00000, 90.00000);
  3577. CreateDynamicObject(1294, 1458.80005, -1725.70996, 16.84000, 0.00000, 0.00000, 90.00000);
  3578. CreateDynamicObject(1294, 1436.15002, -1702.60999, 16.84000, 0.00000, 0.00000, 0.00000);
  3579. CreateDynamicObject(1294, 1436.15002, -1675.37000, 16.84000, 0.00000, 0.00000, 0.00000);
  3580. CreateDynamicObject(1294, 1436.15002, -1656.06006, 16.84000, 0.00000, 0.00000, 0.00000);
  3581. CreateDynamicObject(1294, 1436.15002, -1642.41003, 16.84000, 0.00000, 0.00000, 0.00000);
  3582. CreateDynamicObject(970, 1519.85999, -1632.05005, 12.88000, 0.00000, 0.00000, 90.00000);
  3583. CreateDynamicObject(9019, 1452.34998, -1616.52002, 13.96000, 0.00000, 0.00000, 92.07000);
  3584. CreateDynamicObject(9019, 1509.44995, -1615.08997, 13.96000, 0.00000, 0.00000, 270.10001);
  3585.  
  3586. //NG button
  3587. ngeveryone = CreateButton(-313.20410156,1874.78515625,34.50402832, 270.26916504);
  3588. NGGate = CreateDynamicObject(988, 96.810302, 1920.160156, 17.299999, 0.000000, 0.000000, 270.000000); // NG GATE (CLOSED)
  3589.  
  3590. FBIGate1 = CreateDynamicObject(971, 320.40628051758, -1487.9129638672, 26.900407791138, 0.000000, 0.000000, 144.85501098633); //
  3591. FBIGate2 = CreateDynamicObject(971, 283.96463012695, -1543.154296875, 27.167940139771, 0.000000, 0.000000, 326.25500488281); //
  3592. LSPDGate = CreateDynamicObject(968, 1544.6943359375, -1630.73046875, 13.27956199646, 0.000000, 90, 90); //
  3593. LSPDGate2 = CreateDynamicObject(971, 1588.6428222656, -1638.02734375, 15.240161895752, 0, 0, 181.03271484375);
  3594. //LSPD Improvements farva
  3595. //CreateDynamicObject(11326,1604.98535156,-1623.68457031,14.71534920,0.00000000,0.00000000,90.00000000); //object(sfse_hublockup) (1)
  3596. lspddoor1 = CreateDynamicObject(1569, 246.35150146484, 72.547714233398, 1002.640625, 0.000000, 0.000000, 0.000000); //
  3597. lspddoor2 = CreateDynamicObject(1569, 245.03300476074, 72.568511962891, 1002.640625, 0.000000, 0.000000, 0.000000); //
  3598. //nggate = CreateDynamicObject(988, 96.810302, 1920.160156, 17.299999, 0.000000, 0.000000, 270.000000); // NG GATE
  3599. //SANEWS Gates
  3600. SANGate = CreateDynamicObject(969, 781.77154541016, -1384.7692871094, 12.726663589478, 0, 0, 180.54052734375);
  3601. WSTGate = CreateDynamicObject(968, 841.9279,-577.0652, 16.8503,0,90,0); // WST Dillimore Gate
  3602.  
  3603. LVMPDPark = CreateDynamicObject(968, 2238.18359, 2450.34814, 10.67250, 0.00000, 90.00000, 90.00000); // LVMPD Employee Parking
  3604. LVMPDPool = CreateDynamicObject(971, 2334.83276, 2443.39478, 7.47763, 0.00000, 0.00000, 60.0); // LVMPD Motor Pool
  3605.  
  3606. //FIX (Incognito's streamer v2.3.8) - Stability Glitch for the Welcome
  3607. CreateDynamicObject(4729, 682.85186767578, -446.04205322266, -26.629999160767, 20, 90, 0.000000, -1, 1, -1, 200.0);
  3608.  
  3609. //DeMorgan
  3610. NGGate1 = CreateDynamicObject(14464,-292.82714844,1872.89453125,30.15856934,0.00000000,0.00000000,0.00000000); //object(gs_cages) (1)
  3611. //FBI DOOR
  3612. //CreateDynamicObject(2949, 317.199737, -1513.150512, 23.942632, 0.000000, 0.000000, 325.997314); // FBI door outside
  3613. // CreateDynamicObject(3089, 301.648437, 191.891983, 1007.500854, 0.000000, 0.000000, 270.000000); // FBI door inside
  3614.  
  3615. // Family 1 Interior
  3616. FAM1Gate = CreateDynamicObject( 976 , 242.8935546875 , -160.873046875 , 0.16124999523163 , 0.000000 , 0.000000 , 90 );
  3617.  
  3618. //Families 2, http://64.79.103.2:8080/browse/GS-11
  3619. Fam2Gate = CreateDynamicObject(976,-2502.72363281,2351.93286133,3.98769379,0.00000000,0.00000000,180.00000000); //object(phils_compnd_gate)(1)
  3620. Fam2Gate2 = CreateDynamicObject(975,-2263.61,2376.62,5.71109533,0.00000000,0.00000000,42.48962402); //object(columbiangate)(2)
  3621.  
  3622. //---------------FBI HQ Interior--------------------//
  3623. CreateDynamicObject(1536,293.27246094,-1481.46582031,-34.53342056,0.00000000,0.00000000,179.99450684,1324123); //object(gen_doorext15) (2)
  3624. CreateDynamicObject(1536,290.27832031,-1481.50488281,-34.53342056,0.00000000,0.00000000,0.00000000,1324123); //object(gen_doorext15) (2)
  3625. CreateDynamicObject(1776,291.19232178,-1512.44006348,-45.03078842,0.00000000,0.00000000,90.00000000,1324123); //object(cj_candyvendor) (2)
  3626. FBILobbyLeftBTN[0] = CreateButton(297.66613770,-1498.67749023,-44.59006119,0.79565430); //Lobby Button Left
  3627. FBILobbyLeftBTN[1] = CreateButton(297.24850464,-1498.23107910,-44.59006119,180); //Lobby Button Left
  3628. FBILobbyRightBTN[0] = CreateButton(300.05300903,-1521.40747070,-44.59006119,180); //Lobby Button Right
  3629. FBILobbyRightBTN[1] = CreateButton(300.16033936,-1521.84387207,-44.59006119,0); //Lobby Button Right
  3630. FBIPrivateBTN[0] = CreateButton(298.87384033,-1495.87316895,-27.32773209,270); //Private Office Button
  3631. FBIPrivateBTN[1] = CreateButton(300.49453735,-1495.33837891,-27.28091812,180.49487305); //Private Office Button
  3632. FBIPrivate[0] = CreateDynamicObject(1536,299.29986572,-1492.82666016,-28.73300552,0.00000000,0.00000000,270.00000000,1324123); //Private Office Door Left
  3633. FBIPrivate[1] = CreateDynamicObject(1536,299.33737183,-1495.83911133,-28.73300552,0.00000000,0.00000000,90.00000000,1324123); //Private Office Door Right
  3634. FBILobbyLeft = CreateDynamicObject(1536,295.40136719,-1498.43457031,-46.13965225,0.00000000,0.00000000,0.00000000,1324123); //Lobby Door Left
  3635. FBILobbyRight = CreateDynamicObject(1536,302.39355469,-1521.62988281,-46.13965225,0.00000000,0.00000000,179.99450684,1324123); //Lobby Door Right
  3636. /* //SANews Custom Interior
  3637. SANewsStudio = CreateButton(625.50000000,-13.60000038,1108.50000000,270.00000000); //object(sec_keypad) (1)
  3638. SANewsStudioA = CreateDynamicObject(1536,625.60937500,-10.80000019,1106.96081543,0.00000000,0.00000000,270.00000000); //object(gen_doorext15) (1)
  3639. SANewsStudioB = CreateDynamicObject(1536,625.64941406,-13.77000046,1106.96081543,0.00000000,0.00000000,89.99450684); //object(gen_doorext15) (2)
  3640.  
  3641. SANewsPrivate = CreateButton(625.51953125,-3.59961796,1108.50000000,269.99450684); //object(sec_keypad) (2)
  3642. SANewsPrivateOPP = CreateButton(626.13519287,-0.08516422,1108.61315918,0); //object(sec_keypad) (4)
  3643. SANewsPrivateA = CreateDynamicObject(1536,625.60937500,-0.55000001,1106.96081543,0.00000000,0.00000000,269.98901367); //object(gen_doorext15) (4)
  3644. SANewsPrivateB = CreateDynamicObject(1536,625.65002441,-3.54999995,1106.96081543,0.00000000,0.00000000,89.99450684); //object(gen_doorext15) (4)
  3645.  
  3646. SANewsOffice = CreateButton(614.58581543,17.78320312,1108.55004883,0); //object(sec_keypad) (3)
  3647. SANewsOfficeA = CreateDynamicObject(1536,614.66998291,17.82812500,1106.98425293,0.00000000,0.00000000,0.00000000); //object(gen_doorext15) (3)
  3648. SANewsOfficeB = CreateDynamicObject(1536,617.69000244,17.86899948,1106.98425293,0.00000000,0.00000000,179.99450684); //object(gen_doorext15) (5) */
  3649.  
  3650.  
  3651. //------------Jimmy Henchman's Custom Mapped House------------// Removed as of 2.8
  3652. /*House310Gate[0] = CreateDynamicObject(976,1278.46154785,-783.73199463,1088.41235352,0.00000000,0.00000000,0.00000000,6310); //object(phils_compnd_gate) (4)
  3653. House310Gate[1] = CreateDynamicObject(976,1240.41088867,-834.78045654,1076.92053223,0.00000000,270.00000000,270.00000000,6310); //object(phils_compnd_gate) (1)
  3654. House310Gate[2] = CreateDynamicObject(976,1266.72741699,-802.41290283,1082.54785156,0.00000000,0.00000000,0.00000000,6310); //object(phils_compnd_gate) (2)
  3655. House310Gate[3] = CreateDynamicObject(976,1264.66577148,-812.11694336,1082.54785156,0.00000000,0.00000000,90.00000000,6310); //object(phils_compnd_gate) (3)
  3656. */
  3657. /* NATIONAL GUARD CARRIER
  3658. sidelift = CreateDynamicObject(3114, 231.916656, 3615.134277, 17.269205, 0.0000, 0.0000, 0.0000); // Side Lift Up
  3659. backhatch = CreateDynamicObject(3113, 180.344864, 3600.390137, 2.516232, 0.0000, 0.0000, 0.0000); // Back Hatch Closed
  3660. backlift = CreateDynamicObject(3115, 189.694626, 3599.983398, 17.483730, 0.0000, 0.0000, 0.0000); // Back Lift Up
  3661.  
  3662. Carrier[0] = CreateObject(10771, 288.665771, 3600.003418, 6.032381, 0.0000, 0.0000, 0.0000, 300);
  3663. Carrier[1] = CreateObject(11145, 99225.782196, 3600.015137, 4.754915, 0.0000, 0.0000, 0.0000, 300);
  3664. Carrier[2] = CreateObject(11149, 282.526093, 3594.805176, 12.487646, 0.0000, 0.0000, 0.0000, 300);
  3665. Carrier[3] = CreateObject(11146, 279.620544, 3600.541016, 12.893089, 0.0000, 0.0000, 0.0000, 300);
  3666. Carrier[4] = CreateObject(10770, 291.858917, 3592.397949, 39.171509, 0.0000, 0.0000, 0.0000, 300);
  3667. Carrier[5] = CreateObject(10772, 290.014313, 3599.787598, 17.833616, 0.0000, 0.0000, 0.0000, 300);
  3668. Carrier[6] = CreateObject(1671, 354.860748, 3589.442383, 11.234554, 0.0000, 0.0000, 175.3254, 300);
  3669. Carrier[7] = CreateObject(925, 304.330383, 3589.067383, 11.735489, 0.0000, 0.0000, 0.0000, 300);
  3670. Carrier[8] = CreateObject(930, 301.851654, 3588.497070, 11.131838, 0.0000, 0.0000, 0.0000, 300);
  3671. Carrier[9] = CreateObject(930, 301.856079, 3589.598145, 11.181837, 0.0000, 0.0000, 0.0000, 300);
  3672. Carrier[10] = CreateObject(964, 300.513062, 3589.303711, 10.705961, 0.0000, 0.0000, 177.4217, 300);
  3673. Carrier[11] = CreateObject(964, 299.024902, 3589.362793, 10.698584, 0.0000, 0.0000, 177.4217, 300);
  3674. Carrier[12] = CreateObject(1271, 305.058319, 3591.442871, 11.048584, 0.0000, 0.0000, 359.1406, 300);
  3675. Carrier[13] = CreateObject(1431, 303.009491, 3591.383789, 11.253574, 0.0000, 0.0000, 0.0000, 300);
  3676. Carrier[14] = CreateObject(2567, 297.100800, 3591.239746, 12.558563, 0.0000, 0.0000, 91.1003, 300);
  3677. Carrier[15] = CreateObject(3576, 301.050110, 3593.777344, 12.198634, 0.0000, 0.0000, 0.0000, 300);
  3678. Carrier[16] = CreateObject(3633, 304.567841, 3593.262207, 11.173386, 0.0000, 0.0000, 0.0000, 300);
  3679.  
  3680. CarrierS[0] = CreateDynamicObject(3267, 320.358582, 3592.519043, 21.567169, 0.0000, 0.0000, 0.0000);
  3681. CarrierS[1] = CreateDynamicObject(11237, 291.557526, 3592.407715, 39.065594, 0.0000, 0.0000, 0.0000);
  3682. CarrierS[2] = CreateDynamicObject(3395, 354.861725, 3590.989746, 10.797120, 0.0000, 0.0000, 88.0403);
  3683. CarrierS[3] = CreateDynamicObject(1671, 356.571838, 3588.612793, 11.234554, 0.0000, 0.0000, 134.9316);
  3684. CarrierS[4] = CreateDynamicObject(3393, 358.360016, 3588.834961, 10.797121, 0.0000, 0.0000, 0.0000);
  3685. CarrierS[5] = CreateDynamicObject(3277, 320.391876, 3592.538086, 21.514416, 0.0000, 0.0000, 164.0483); */
  3686.  
  3687. //*LoadCarrier();
  3688.  
  3689. /* NOOSE Int */
  3690. entrancedoor = CreateDynamicObject(2951,-766.27539062,2536.58691406,10019.5,0.98876953,0.00000000,85.49011230); //object(a51_labdoor) (1)
  3691.  
  3692. //NOOSE GARAGE
  3693. ncontrolroomobjects[0] = CreateDynamicObject(3037,-760.61718750,2544.21679688,10024.92480469,0.00000000,0.00000000,355.98999023); //object(warehouse_door2b) (1)
  3694. ncontrolroomobjects[1] = CreateDynamicObject(3037,-759.52246094,2560.88574219,10024.79785156,0.00000000,0.00000000,355.98999023); //object(warehouse_door2b) (2)
  3695. ncontrolroomobjects[2] = CreateDynamicObject(3037,-755.53906250,2538.61035156,10025.02636719,0.00000000,0.00000000,85.99548340); //object(warehouse_door2b) (3)
  3696.  
  3697. //Elevator Doors
  3698. for(new x;x<sizeof(LAElevatorDoorLeft);x++)
  3699. {
  3700. LAElevatorDoorLeft[x] = CreateDynamicObject(18756, 1786.661254, -1299.346162, (23.117773) + (x * 5.45), 0.000000, 0.000000, 90.000000); //Door Left
  3701. }
  3702. LAElevatorDoorLeft[0] = CreateDynamicObject(18756, 1786.661254, -1299.346162, 14.595184, 0.000000, 0.000000, 90.000000); //Door Left
  3703. for(new x;x<sizeof(LAElevatorDoorRight);x++)
  3704. {
  3705. LAElevatorDoorRight[x] = CreateDynamicObject(18757, 1786.661254, -1299.346162, (23.117773) + (x * 5.45), 0.000000, 0.000000, 90.000000); //Door Right
  3706. }
  3707. LAElevatorDoorRight[0] = CreateDynamicObject(18757, 1786.661254, -1299.346162, 14.595184, 0.000000, 0.000000, 90.000000); //Door Right
  3708. LAElevator = CreateObject(18755, 1786.634887, -1303.237329, 14.614652, 0.000000, 0.000000, 270.000000); //First Floor
  3709. for(new x;x<sizeof(LAElevatorButton);x++)
  3710. {
  3711. LAElevatorButton[x] = CreateButton(1783.894409, -1301.119140, 22.721138 + (x * 5.45),180.000000); //Elevator Floor Call
  3712. }
  3713. LAElevatorButton[0] = CreateButton(1783.894409, -1301.119140, 13.918642,180.000000); //Elevator Floor Call
  3714. LAElevatorFloorPick = CreateButton(1788.889282, -1302.229003, 13.656608,270.000000); //Elevator Floor Call
  3715.  
  3716. CreateDynamicObject(10832, 1775.283447, -1303.936523, 132.553176, 0.000000, 0.000000, 180.000000); //ROOF
  3717. CreateDynamicObject(2949, 1770.609741, -1303.600219, 124.720870, 0.000000, 0.000000, 180.000000); //INSIDE
  3718.  
  3719. // Court Cells ID's
  3720. CreateDynamicPickup(1239, 23, 1315.0146,-1726.6338,-72.6484);
  3721. CreateDynamicPickup(1239, 23, 1319.3326,-1726.6136,-72.6484);
  3722. CreateDynamicPickup(1239, 23, 1323.4989,-1726.6036,-72.6484);
  3723.  
  3724. CreatePickup(1239, 23, 251.99, 117.36, 1003.22, -1); //Detective Registration
  3725. CreatePickup(1239, 23, 1380.8955,-1088.6808,27.3844, -1); //Lawyer Registration
  3726. CreatePickup(1239, 23, 1215.1304,-11.8431,1000.9219, -1); //Whore Registration
  3727. CreatePickup(1239, 23, 2166.3772,-1675.3829,15.0859, -1); //DrugDealer Registration
  3728. CreatePickup(1239, 23, 2226.1716,-1718.1792,13.5165, -1); //BodyGuard Registration (LS)
  3729. //CreatePickup(1239, 23, -2269.256103, -158.054321, 35.320312, -1); //BodyGuard Registration (SF)
  3730. //CreatePickup(1239, 23, 1224.13, 267.98, 19.55, -1); //Bodyguard (Montgomery) Registration
  3731. CreatePickup(1239, 23, -2022.514, -118.687, 1035.171, -1); //CarMechanic Registration
  3732. // CreatePickup(1239, 23, -2032.601928, 143.866592, 28.835937, -1); //CarMechanic (SF) Registration
  3733. CreatePickup(1239, 23, 1099.73,-1504.67,15.800, -1); // BodyGuard Registration (MALL GYM)
  3734. CreatePickup(1239, 23, 1366.4325,-1275.2096,13.5469, -1); //ArmsDealer Registration (LS)
  3735. //CreatePickup(1239, 23, -2623.333984, 209.235931, 4.684767, -1); //ArmsDealer Registration (SF)
  3736. CreatePickup(1239, 23, 2097.9077,-1885.6401,13.4832, -1); //Craftsman Registration
  3737. CreatePickup(1239, 23, 502.6696,-11.6603,1000.6797, -1); //Bartender Registration
  3738. CreatePickup(1239, 23, 2453.7036,-2117.8679,13.5469, -1); //Trucker Registration (LS)
  3739. // CreatePickup(1239, 23, -1720.962646, 1364.456176, 7.187500, -1); //Pizza Boy Registration (SF)
  3740. CreatePickup(1239, 23, 2226.1716,-1718.1792,13.5165, -1);
  3741. CreatePickup(1239, 23, 766.0804,14.5133,1000.7004, -1); //Boxer Registration
  3742. CreatePickup(1239, 23, 758.98,-60.32,1000.78, -1); //Boxer Registration2
  3743. CreatePickup(1239, 23, 1741.6218,-1863.6486,13.5748, -1); //TaxiDriver Registration (LS)
  3744. //CreatePickup(1239, 23, -1981.144775, 133.063293, 27.687500, -1); //TaxiDriver Registration (SF)
  3745. CreatePickup(371, 23, 1544.2,-1353.4,329.4, -1); //LS towertop
  3746. CreatePickup(371, 23, 1536.0, -1360.0, 1150.0, -1); //LS towertop
  3747. CreatePickup(1242, 23, 1527.5,-12.1,1002.0, -1); //binco armor
  3748. CreatePickup(1240, 23, 279.3000,1853.5619,8.7649, -1); //area51 health
  3749. CreatePickup(1239, 1, 2794.532,-2437.130,14.7, -1);//TPSTruckingPickup
  3750. CreatePickup(1239, 1,-49.9631,-269.1552,6.6,-1);//CDL Pickup
  3751. CreatePickup(1239, 1,1798.5789, -1306.5524, 13.7140,-1);//CBS2 Ad
  3752. CreatePickup(1239, 1,1386.5204, 293.0154, 19.0909,-1);//CountyPaperAd
  3753. CreatePickup(1239, 23, 1224.13, 267.98, 19.55); //Bodyguard (Montgomery) Registration
  3754. //CreatePickup(1239, 23, 161.92, -25.70, 1.57); //CarMechanic (Blueberry) Registration
  3755. CreatePickup(1239, 1,1711.3271,-2411.0510,13.6257,-1);//AAJob Pickup
  3756. CreatePickup(1239, 1,-2178.6050,-219.6252,36.515,-1);// Fedex Job Join SF
  3757. CreatePickup(1239, 1,-51.4929,1398.0430,1084.4297, -1);//Heroin Cook Point
  3758.  
  3759.  
  3760. /* CreateDynamicPickup(1239, 23, 251.99, 117.36, 1003.22); //Detective Registration
  3761. CreateDynamicPickup(1239, 23, 1380.8955,-1088.6808,27.3844); //Lawyer Registration
  3762. CreateDynamicPickup(1239, 23, 1215.1304,-11.8431,1000.9219); //Whore Registration
  3763. CreateDynamicPickup(1239, 23, 2166.3772,-1675.3829,15.0859); //DrugDealer Registration
  3764. CreateDynamicPickup(1239, 23, 2226.1716,-1718.1792,13.5165); //BodyGuard Registration (LS)
  3765. CreateDynamicPickup(1239, 23, -2269.256103, -158.054321, 35.320312); //BodyGuard Registration (SF)
  3766.  
  3767. CreateDynamicPickup(1239, 23, -2032.601928, 143.866592, 28.835937); //CarMechanic (SF) Registration
  3768. CreateDynamicPickup(1239, 23, 1099.73,-1504.67,15.800); // BodyGuard Registration (MALL GYM)
  3769. CreateDynamicPickup(1239, 23, 1366.4325,-1275.2096,13.5469); //ArmsDealer Registration (LS)
  3770. CreateDynamicPickup(1239, 23, -2623.333984, 209.235931, 4.684767); //ArmsDealer Registration (SF)
  3771. CreateDynamicPickup(1239, 23, 2195.8335,-1973.0638,13.5589); //Craftsman Registration
  3772. CreateDynamicPickup(1239, 23, 502.6696,-11.6603,1000.6797); //Bartender Registration
  3773. CreateDynamicPickup(1239, 23, 766.0804,14.5133,1000.7004); //Boxer Registration
  3774. CreateDynamicPickup(1239, 23, 758.98,-60.32,1000.78); //Boxer Registration2
  3775. CreateDynamicPickup(1239, 23, 1741.6218,-1863.6486,13.5748); //TaxiDriver Registration (LS)
  3776. CreateDynamicPickup(1239, 23, -1981.144775, 133.063293, 27.687500); //TaxiDriver Registration (SF)
  3777. CreateDynamicPickup(371, 23, 1544.2,-1353.4,329.4); //LS towertop
  3778. CreateDynamicPickup(371, 23, 1536.0, -1360.0, 1150.0); //LS towertop
  3779. CreateDynamicPickup(1242, 23, 1527.5,-12.1,1002.0); //binco armor
  3780. CreateDynamicPickup(1240, 23, 279.3000,1853.5619,8.7649); //area51 health */
  3781.  
  3782. printf("[script] 3DTEXTDRAW LIMIT: %d (Static, non-streamed) | 3DTEXTDRAW COUNT: %d", 1024, CountDynamic3DTextLabels() );
  3783. printf("[script] PICKUP LIMIT: %d (Static, non-streamed) | PICKUP COUNT: %d", MAX_PICKUPS, CountDynamicPickups() );
  3784. printf("[script] OBJECT LIMIT: %d (Static, non-streamed) | OBJECT COUNT: %d", MAX_OBJECTS, CountDynamicObjects() );
  3785.  
  3786. if (realtime)
  3787. {
  3788. new tmphour;
  3789. new tmpminute;
  3790. new tmpsecond;
  3791. gettime(tmphour, tmpminute, tmpsecond);
  3792. FixHour(tmphour);
  3793. tmphour = shifthour;
  3794. SetWorldTime(tmphour);
  3795. gTime = tmphour;
  3796. }
  3797.  
  3798. vehicleMods[0][4] = {1013, 1024, 0, 0};
  3799. vehicleMods[0][6] = {1018, 1019, 1020, 1021};
  3800. vehicleMods[1][0] = {1001, 1003, 0, 0};
  3801. vehicleMods[1][1] = {1004, 1005, 0, 0};
  3802. vehicleMods[1][2] = {1006, 0, 0, 0};
  3803. vehicleMods[1][3] = {1007, 0, 0, 0};
  3804. vehicleMods[1][4] = {1013, 0, 0, 0};
  3805. vehicleMods[1][6] = {1019, 1020, 0, 0};
  3806. vehicleMods[1][12] = {1143, 1145, 0, 0};
  3807. vehicleMods[4][0] = {1002, 1016, 1000, 0};
  3808. vehicleMods[4][3] = {1007, 0, 0, 0};
  3809. vehicleMods[4][4] = {1013, 0, 0, 0};
  3810. vehicleMods[4][6] = {1019, 1020, 1021, 0};
  3811. vehicleMods[5][0] = {1000, 1001, 1014, 1023};
  3812. vehicleMods[5][6] = {1018, 1019, 1020, 1021};
  3813. vehicleMods[10][0] = {1001, 1003, 1023, 0};
  3814. vehicleMods[10][3] = {1007, 0, 0, 0};
  3815. vehicleMods[10][4] = {1013, 1024, 0, 0};
  3816. vehicleMods[10][6] = {1019, 1020, 1021, 0};
  3817. vehicleMods[15][0] = {1001, 1003, 1023, 0};
  3818. vehicleMods[15][6] = {1018, 1019, 0, 0};
  3819. vehicleMods[15][3] = {1007, 0, 0, 0};
  3820. vehicleMods[18][0] = {1002, 1016, 0, 0};
  3821. vehicleMods[18][2] = {1006, 0, 0, 0};
  3822. vehicleMods[18][6] = {1020, 1021, 0, 0};
  3823. vehicleMods[20][0] = {1001, 1003, 0, 0};
  3824. vehicleMods[20][1] = {1004, 1005, 0, 0};
  3825. vehicleMods[20][6] = {1019, 1021, 0, 0};
  3826. vehicleMods[21][0] = {1000, 1014, 1016, 1023};
  3827. vehicleMods[21][6] = {1018, 1019, 1020, 1021};
  3828. vehicleMods[22][3] = {1007, 0, 0, 0};
  3829. vehicleMods[22][4] = {1013, 0, 0, 0};
  3830. vehicleMods[22][6] = {1019, 1020, 1021, 0};
  3831. vehicleMods[26][0] = {1001, 1003, 0, 0};
  3832. vehicleMods[26][1] = {1004, 1005, 0, 0};
  3833. vehicleMods[26][2] = {1006, 0, 0, 0};
  3834. vehicleMods[26][6] = {1019, 1021, 0, 0};
  3835. vehicleMods[36][0] = {1001, 1003, 0, 0};
  3836. vehicleMods[36][2] = {1006, 0, 0, 0};
  3837. vehicleMods[36][3] = {1007, 0, 0, 0};
  3838. vehicleMods[36][4] = {1013, 0, 0, 0};
  3839. vehicleMods[36][6] = {1019, 1020, 1021, 1022};
  3840. vehicleMods[39][0] = {1001, 1003, 1023, 0};
  3841. vehicleMods[39][3] = {1007, 0, 0, 0};
  3842. vehicleMods[39][4] = {1013, 0, 0, 0};
  3843. vehicleMods[39][12] = {1143, 1145, 0, 0};
  3844. vehicleMods[77][2] = {1006, 0, 0, 0};
  3845. vehicleMods[77][3] = {1007, 0, 0, 0};
  3846. vehicleMods[77][6] = {1018, 1019, 1020, 1021};
  3847. vehicleMods[78][1] = {1004, 1005, 1012, 0};
  3848. vehicleMods[78][4] = {1013, 1024, 0, 0};
  3849. vehicleMods[78][6] = {1020, 1021, 1022, 0};
  3850. vehicleMods[89][0] = {1000, 1002, 1016, 0};
  3851. vehicleMods[89][1] = {1004, 1005, 0, 0};
  3852. vehicleMods[89][2] = {1006, 0, 0, 0};
  3853. vehicleMods[89][4] = {1013, 1024, 0, 0};
  3854. vehicleMods[89][6] = {1018, 1019, 1020, 0};
  3855. vehicleMods[91][0] = {1003, 1014, 1023, 0};
  3856. vehicleMods[91][3] = {1007, 0, 0, 0};
  3857. vehicleMods[91][6] = {1018, 1019, 1020, 1021};
  3858. vehicleMods[91][12] = {1143, 1145, 0, 0};
  3859. vehicleMods[92][0] = {1000, 1016, 0, 0};
  3860. vehicleMods[92][1] = {1004, 1005, 0, 0};
  3861. vehicleMods[92][2] = {1006, 0, 0, 0};
  3862. vehicleMods[96][0] = {1001, 1002, 1003, 1023};
  3863. vehicleMods[96][1] = {1011, 0, 0, 0};
  3864. vehicleMods[96][2] = {1006, 0, 0, 0};
  3865. vehicleMods[96][6] = {1019, 1020, 0, 0};
  3866. vehicleMods[96][12] = {1143, 0, 0, 0};
  3867. vehicleMods[100][4] = {1013, 1024, 0, 0};
  3868. vehicleMods[100][6] = {1019, 1020, 1021, 0};
  3869. vehicleMods[116][0] = {1000, 1002, 1015, 1016};
  3870. vehicleMods[116][1] = {1004, 0, 0, 0};
  3871. vehicleMods[116][3] = {1007, 0, 0, 0};
  3872. vehicleMods[116][6] = {1018, 1019, 1020, 1021};
  3873. vehicleMods[117][0] = {1002, 1003, 1016, 1023};
  3874. vehicleMods[117][3] = {1007, 0, 0, 0};
  3875. vehicleMods[117][6] = {1018, 1019, 1020, 0};
  3876. vehicleMods[117][12] = {1143, 1145, 0, 0};
  3877. vehicleMods[118][0] = {1001, 1003, 1023, 0};
  3878. vehicleMods[118][1] = {1005, 0, 0, 0};
  3879. vehicleMods[118][2] = {1006, 0, 0, 0};
  3880. vehicleMods[118][3] = {1007, 0, 0, 0};
  3881. vehicleMods[118][4] = {1013, 0, 0, 0};
  3882. vehicleMods[118][6] = {1018, 1020, 0, 0};
  3883. vehicleMods[118][12] = {1143, 1145, 0, 0};
  3884. vehicleMods[127][0] = {1001, 1014, 1015, 0};
  3885. vehicleMods[127][3] = {1007, 0, 0, 0};
  3886. vehicleMods[127][6] = {1018, 1020, 1021, 0};
  3887. vehicleMods[129][0] = {1001, 1003, 1023, 0};
  3888. vehicleMods[129][1] = {1011, 1012, 0, 0};
  3889. vehicleMods[129][2] = {1006, 0, 0, 0};
  3890. vehicleMods[129][3] = {1007, 0, 0, 0};
  3891. vehicleMods[129][6] = {1018, 1019, 1020, 0};
  3892. vehicleMods[134][1] = {1100, 1123, 1125, 0};
  3893. vehicleMods[134][3] = {1101, 1106, 0, 0};
  3894. vehicleMods[134][6] = {1126, 1127, 0, 0};
  3895. vehicleMods[134][10] = {1179, 1185, 0, 0};
  3896. vehicleMods[134][11] = {1178, 1180, 0, 0};
  3897. vehicleMods[135][3] = {1118, 1119, 0, 0};
  3898. vehicleMods[135][6] = {1113, 1114, 0, 0};
  3899. vehicleMods[135][10] = {1115, 1116, 1117, 0};
  3900. vehicleMods[135][11] = {1109, 1110, 0, 0};
  3901. vehicleMods[136][2] = {1103, 1128, 0, 0};
  3902. vehicleMods[136][3] = {1108, 0, 0, 0};
  3903. vehicleMods[136][6] = {1104, 1105, 0, 0};
  3904. vehicleMods[136][10] = {1181, 1182, 0, 0};
  3905. vehicleMods[136][11] = {1183, 1184, 0, 0};
  3906. vehicleMods[140][0] = {1001, 1023, 0, 0};
  3907. vehicleMods[140][1] = {1004, 0, 0, 0};
  3908. vehicleMods[140][2] = {1006, 0, 0, 0};
  3909. vehicleMods[140][3] = {1007, 0, 0, 0};
  3910. vehicleMods[140][4] = {1024, 0, 0, 0};
  3911. vehicleMods[140][6] = {1018, 1019, 1020, 0};
  3912. vehicleMods[140][12] = {1143, 1145, 0, 0};
  3913. vehicleMods[142][0] = {1014, 1015, 0, 0};
  3914. vehicleMods[142][6] = {1018, 1019, 1020, 1021};
  3915. vehicleMods[142][12] = {1145, 0, 0, 0};
  3916. vehicleMods[146][0] = {1001, 1002, 1023, 0};
  3917. vehicleMods[146][1] = {1004, 0, 0, 0};
  3918. vehicleMods[146][2] = {1006, 0, 0, 0};
  3919. vehicleMods[146][3] = {1007, 0, 0, 0};
  3920. vehicleMods[146][4] = {1024, 0, 0, 0};
  3921. vehicleMods[146][6] = {1018, 1019, 0, 0};
  3922. vehicleMods[146][12] = {1143, 1145, 0, 0};
  3923. vehicleMods[147][0] = {1000, 1003, 1016, 0};
  3924. vehicleMods[147][6] = {1018, 1019, 1020, 1021};
  3925. vehicleMods[147][12] = {1143, 0, 0, 0};
  3926. vehicleMods[149][0] = {1001, 1003, 1023, 0};
  3927. vehicleMods[149][1] = {1011, 1012, 0, 0};
  3928. vehicleMods[149][3] = {1007, 0, 0, 0};
  3929. vehicleMods[149][6] = {1018, 1019, 1020, 0};
  3930. vehicleMods[149][12] = {1143, 1145, 0, 0};
  3931. vehicleMods[150][0] = {1001, 1003, 1023, 0};
  3932. vehicleMods[150][1] = {1004, 1005, 0, 0};
  3933. vehicleMods[150][2] = {1006, 0, 0, 0};
  3934. vehicleMods[150][6] = {1018, 1019, 1020, 0};
  3935. vehicleMods[150][12] = {1143, 1145, 0, 0};
  3936. vehicleMods[151][0] = {1002, 1003, 1016, 1023};
  3937. vehicleMods[151][1] = {1005, 0, 0, 0};
  3938. vehicleMods[151][2] = {1006, 0, 0, 0};
  3939. vehicleMods[151][6] = {1018, 1019, 1020, 1021};
  3940. vehicleMods[158][0] = {1164, 1163, 0, 0};
  3941. vehicleMods[158][2] = {1088, 1091, 0, 0};
  3942. vehicleMods[158][3] = {1090, 1093, 0, 0};
  3943. vehicleMods[158][6] = {1092, 1089, 0, 0};
  3944. vehicleMods[158][10] = {1166, 1165, 0, 0};
  3945. vehicleMods[158][11] = {1168, 1167, 0, 0};
  3946. vehicleMods[159][0] = {1162, 1158, 0, 0};
  3947. vehicleMods[159][2] = {1067, 1068, 0, 0};
  3948. vehicleMods[159][3] = {1069, 1070, 0, 0};
  3949. vehicleMods[159][6] = {1065, 1066, 0, 0};
  3950. vehicleMods[159][10] = {1160, 1173, 0, 0};
  3951. vehicleMods[159][11] = {1159, 1161, 0, 0};
  3952. vehicleMods[160][0] = {1138, 1139, 0, 0};
  3953. vehicleMods[160][2] = {1032, 1033, 0, 0};
  3954. vehicleMods[160][3] = {1026, 1031, 0, 0};
  3955. vehicleMods[160][6] = {1028, 1029, 0, 0};
  3956. vehicleMods[160][10] = {1169, 1170, 0, 0};
  3957. vehicleMods[160][11] = {1141, 1140, 0, 0};
  3958. vehicleMods[161][0] = {1058, 1060, 0, 0};
  3959. vehicleMods[161][2] = {1055, 1061, 0, 0};
  3960. vehicleMods[161][3] = {1056, 1057, 0, 0};
  3961. vehicleMods[161][6] = {1064, 1059, 0, 0};
  3962. vehicleMods[161][10] = {1155, 1157, 0, 0};
  3963. vehicleMods[161][11] = {1154, 1156, 0, 0};
  3964. vehicleMods[162][0] = {1147, 1146, 0, 0};
  3965. vehicleMods[162][2] = {1035, 1038, 0, 0};
  3966. vehicleMods[162][3] = {1036, 1039, 0, 0};
  3967. vehicleMods[162][6] = {1034, 1037, 0, 0};
  3968. vehicleMods[162][10] = {1171, 1172, 0, 0};
  3969. vehicleMods[162][11] = {1149, 1148, 0, 0};
  3970. vehicleMods[165][0] = {1049, 1050, 0, 0};
  3971. vehicleMods[165][2] = {1054, 1053, 0, 0};
  3972. vehicleMods[165][3] = {1047, 1048, 0, 0};
  3973. vehicleMods[165][6] = {1046, 1045, 0, 0};
  3974. vehicleMods[165][10] = {1153, 1152, 0, 0};
  3975. vehicleMods[165][11] = {1150, 1151, 0, 0};
  3976. vehicleMods[167][2] = {1130, 1131, 0, 0};
  3977. vehicleMods[167][3] = {1133, 0, 0, 0};
  3978. vehicleMods[167][6] = {1129, 1132, 0, 0};
  3979. vehicleMods[167][10] = {1189, 1188, 0, 0};
  3980. vehicleMods[167][11] = {1187, 1186, 0, 0};
  3981. vehicleMods[175][3] = {1042, 0, 0, 0};
  3982. vehicleMods[175][6] = {1044, 1043, 0, 0};
  3983. vehicleMods[175][10] = {1174, 1175, 0, 0};
  3984. vehicleMods[175][11] = {1176, 1177, 0, 0};
  3985. vehicleMods[176][3] = {1137, 1134, 0, 0};
  3986. vehicleMods[176][6] = {1136, 1135, 0, 0};
  3987. vehicleMods[176][10] = {1191, 1190, 0, 0};
  3988. vehicleMods[176][11] = {1192, 1193, 0, 0};
  3989. vehicleMods[180][0] = {1001, 1023, 0, 0};
  3990. vehicleMods[180][2] = {1006, 0, 0, 0};
  3991. vehicleMods[180][3] = {1007, 0, 0, 0};
  3992. vehicleMods[180][6] = {1018, 1020, 0, 0};
  3993. vehicleMods[185][0] = {1001, 1003, 1023, 0};
  3994. vehicleMods[185][2] = {1006, 0, 0, 0};
  3995. vehicleMods[185][3] = {1007, 0, 0, 0};
  3996. vehicleMods[185][4] = {1013, 0, 0, 0};
  3997. vehicleMods[185][6] = {1018, 1019, 1020, 0};
  3998. vehicleMods[185][12] = {1143, 1145, 0, 0};
  3999. vehicleMods[189][0] = {1000, 1016, 0, 0};
  4000. vehicleMods[189][1] = {1005, 1004, 0, 0};
  4001. vehicleMods[189][2] = {1006, 0, 0, 0};
  4002. vehicleMods[189][3] = {1007, 0, 0, 0};
  4003. vehicleMods[189][4] = {1013, 1024, 0, 0};
  4004. vehicleMods[189][6] = {1018, 1020, 0, 0};
  4005. vehicleMods[189][12] = {1145, 0, 0, 0};
  4006. vehicleMods[200][1] = {1004, 1005, 0, 0};
  4007. vehicleMods[200][2] = {1006, 0, 0, 0};
  4008. vehicleMods[200][3] = {1007, 0, 0, 0};
  4009. vehicleMods[200][4] = {1013, 0, 0, 0};
  4010. vehicleMods[200][6] = {1018, 1020, 1022, 0};
  4011. vehicleMods[203][0] = {1001, 1023, 0, 0};
  4012. vehicleMods[203][2] = {1006, 0, 0, 0};
  4013. vehicleMods[203][3] = {1007, 0, 0, 0};
  4014. vehicleMods[203][4] = {1024, 0, 0, 0};
  4015. vehicleMods[203][6] = {1019, 1020, 0, 0};
  4016. vehicleMods[203][12] = {1143, 1145, 0, 0};
  4017.  
  4018. EventKernel[EventRequest] = 999;
  4019. EventKernel[EventCreator] = 999;
  4020. EventKernel[EventStaff][0] = 999;
  4021. EventKernel[EventStaff][1] = 999;
  4022. EventKernel[EventStaff][2] = 999;
  4023. EventKernel[EventStaff][3] = 999;
  4024. EventKernel[EventStaff][4] = 999;
  4025.  
  4026. //SetTimer("SyncTurfWarsMiniMap", 2500, 1);
  4027.  
  4028. CarInit();
  4029. gWeather = 10;
  4030. ManualVehicleEngineAndLights();
  4031.  
  4032. ///////////////////////////////////
  4033. // Trucking System Load
  4034. ///////////////////////////////////
  4035. for(new i=0; i<MAX_TRUCKDEPOTS; i++)
  4036. {
  4037. new string2[300];
  4038. format(string2,sizeof(string2),"%s\nTrucker Level: %d\nType /viewjobs to view our available jobs\n(Trailer must be attached)", TruckDepotInfo[i][pTDName], TruckDepotInfo[i][pTDLevel]);
  4039. CreateDynamic3DTextLabel(string2, COLOR_YELLOW, TruckDepotInfo[i][pTDPosX], TruckDepotInfo[i][pTDPosY], TruckDepotInfo[i][pTDPosZ], 20.0);
  4040. CreateDynamicPickup(1239, 1, TruckDepotInfo[i][pTDPosX], TruckDepotInfo[i][pTDPosY], TruckDepotInfo[i][pTDPosZ], -1, -1, -1, 50.0);
  4041. CreateDynamicMapIcon(TruckDepotInfo[i][pTDPosX], TruckDepotInfo[i][pTDPosY], TruckDepotInfo[i][pTDPosZ], 51, 1, -1, -1, -1, 100.0);
  4042. }
  4043. AddStaticVehicleEx(435,319.5821,-250.9220,2.2294,357.2850,1,1, 900); // Avery Construction Blueberry trailer 1
  4044. AddStaticVehicleEx(591,314.5987,-250.5513,2.1733,356.2518,1,1, 900); // Avery Construction Blueberry trailer 2
  4045. AddStaticVehicleEx(435,310.0218,-249.6448,2.1808,356.6158,1,1, 900); // Avery Construction Blueberry trailer 3
  4046. AddStaticVehicleEx(584,-979.1545,-661.4039,33.1817,87.9626,1,1, 900); // Easter Bay Chemicals trailer 1
  4047. AddStaticVehicleEx(584,-979.8892,-665.6310,33.1991,90.5658,1,1, 900); // Easter Bay Chemicals trailer 2
  4048. AddStaticVehicleEx(584,-980.3480,-671.5728,33.2068,87.8949,1,1, 900); // Easter Bay Chemicals trailer 3
  4049. AddStaticVehicleEx(584,-979.9216,-676.9645,33.1276,89.8774,1,1, 900); // Easter Bay Chemicals trailer 4
  4050. AddStaticVehicleEx(584,-979.6974,-682.1031,33.0932,85.8944,1,1, 900); // Easter Bay Chemicals trailer 5
  4051. AddStaticVehicleEx(584,33.3540,-2639.0078,41.6346,94.8614,1,1, 900); // 655 I27 Gas trailer 1
  4052. AddStaticVehicleEx(584,32.6416,-2633.2031,41.6057,92.4579,1,1, 900); // 655 I27 Gas trailer 2
  4053. AddStaticVehicleEx(591,-49.3037,-1146.4683,1.6992,70.1766,1,1, 900); // RS Haul Depot trailer 1
  4054. AddStaticVehicleEx(435,-47.5986,-1141.5105,1.6990,70.2905,1,1, 900); // RS Haul Depot trailer 2
  4055. AddStaticVehicleEx(435,-45.7761,-1136.0397,1.7377,73.3871,1,1, 900); // RS Haul Depot trailer 3
  4056. AddStaticVehicleEx(591,1068.7600,-306.3128,74.5613,183.1051,1,1, 900); // Flint County Supplies trailer 1
  4057. AddStaticVehicleEx(435,1063.5708,-306.5692,74.6479,184.7230,1,1, 900); // Flint County Supplies trailer 2
  4058. AddStaticVehicleEx(435,1057.7675,-306.9809,74.6523,181.0287,1,1, 900); // Flint County Supplies trailer 3
  4059. AddStaticVehicleEx(584,603.8568,1650.6251,8.1136,65.6812,1,1, 900); // XOOMER Gas LV trailer 1
  4060. AddStaticVehicleEx(584,606.6456,1654.4178,8.2037,65.7580,1,1, 900); // XOOMER Gas LV trailer 2
  4061. AddStaticVehicleEx(584,610.1509,1658.4144,8.1876,67.1304,1,1, 900); // XOOMER Gas LV trailer 3
  4062. AddStaticVehicleEx(584,612.9406,1662.4725,8.0551,64.2496,1,1, 900); // XOOMER Gas LV trailer 4
  4063. AddStaticVehicleEx(591,987.9532,2169.2319,11.4228,179.3533,1,1, 900); // Whitewood Storage LV trailer 1
  4064. AddStaticVehicleEx(591,982.6127,2169.1516,11.5128,180.8438,1,1, 900); // Whitewood Storage LV trailer 2
  4065. AddStaticVehicleEx(435,977.3423,2169.2952,11.4125,177.4042,1,1, 900); // Whitewood Storage LV trailer 3
  4066. AddStaticVehicleEx(435,972.3075,2169.8831,11.5207,179.4609,1,1, 900); // Whitewood Storage LV trailer 4
  4067. AddStaticVehicleEx(591,1043.3939,2069.3625,11.4604,358.2221,1,1, 900); // Whitewood Supplies LV trailer 1
  4068. AddStaticVehicleEx(435,1049.7914,2069.2366,11.5107,358.0408,1,1, 900); // Whitewood Supplies LV trailer 2
  4069. AddStaticVehicleEx(591,1118.0592,1850.4882,11.4802,359.8158,1,1, 900); // Blackfield Storage LV trailer 1
  4070. AddStaticVehicleEx(591,1111.7456,1849.8954,11.4535,0.7010,1,1, 900); // Blackfield Storage LV trailer 2
  4071. AddStaticVehicleEx(435,1106.3131,1850.1196,11.4203,1.9944,1,1, 900); // Blackfield Storage LV trailer 3
  4072. AddStaticVehicleEx(435,1100.8234,1849.7410,11.4475,2.4704,1,1, 900); // Blackfield Storage LV trailer 4
  4073. AddStaticVehicleEx(591,2818.0356,895.8503,10.6889,0.9139,1,1, 900); // Rockshore East Storage LV trailer 1
  4074. AddStaticVehicleEx(435,2827.1558,895.7236,10.6762,358.9190,1,1, 900); // Rockshore East Storage LV trailer 2
  4075. AddStaticVehicleEx(435,2855.0305,895.0613,10.7268,0.7555,1,1, 900); // Rockshore East Storage LV trailer 3
  4076. AddStaticVehicleEx(591,1627.5481,698.2057,11.3795,359.0922,1,1, 900); // Reagan Bridge Supplies LV trailer 1
  4077. AddStaticVehicleEx(591,1633.6772,698.4901,11.5368,0.3506,1,1, 900); // Reagan Bridge Supplies LV trailer 2
  4078. AddStaticVehicleEx(435,1638.8907,698.6553,11.5471,357.0590,1,1, 900); // Reagan Bridge Supplies LV trailer 3
  4079. AddStaticVehicleEx(435,1645.1907,698.6447,11.4338,359.3551,1,1, 900); // Reagan Bridge Supplies LV trailer 4
  4080. AddStaticVehicleEx(591,1424.6705,972.9348,10.7373,358.4207,1,1, 900); // Pilson Storage LV trailer 1
  4081. AddStaticVehicleEx(435,1452.7369,974.5452,10.9380,4.0059,1,1, 900); // Pilson Storage LV trailer 2
  4082. AddStaticVehicleEx(435,1461.6356,974.7834,10.9479,0.6887,1,1, 900); // Pilson Storage LV trailer 3
  4083. AddStaticVehicleEx(435,2681.3940,-2391.8535,14.2959,180.7496,1,1, 900); // LA Mast Storage trailer 1
  4084. AddStaticVehicleEx(435,2687.3984,-2391.5864,14.2931,181.2188,1,1, 900); // LA Mast Storage trailer 2
  4085. AddStaticVehicleEx(435,2456.3594,-2530.3059,14.2556,180.5988,1,1, 900); // LA Docks Storage trailer 1
  4086. AddStaticVehicleEx(591,2462.9133,-2529.8430,14.2298,182.9115,1,1, 900); // LA Docks Storage trailer 2
  4087. AddStaticVehicleEx(591,2194.4583,-2524.9080,14.2074,274.6493,1,1, 900); // LA Docks Supplies trailer 1
  4088. AddStaticVehicleEx(435,2194.5979,-2519.5278,14.2046,272.4589,1,1, 900); // LA Docks Supplies trailer 2
  4089. AddStaticVehicleEx(435,2194.8691,-2513.9407,14.1742,269.1824,1,1, 900); // LA Docks Supplies trailer 3
  4090. AddStaticVehicleEx(435,90.9732,-154.1035,3.2141,269.2296,1,1, 900); // BBStorageTrailer1
  4091. AddStaticVehicleEx(591,93.6355,-172.1506,3.2139,269.0442,1,1, 900); // BBStorageTrailer2
  4092. AddStaticVehicleEx(435,166.5291,-44.4539,2.1764,270.6968,3,3, 900); // BBSuppliesTrailer1
  4093. AddStaticVehicleEx(591,165.5262,-22.0428,2.2316,270.3246,1,1, 900); // BBSuppliesTrailer2
  4094. AddStaticVehicleEx(435,167.4212,-14.2593,2.2437,270.4714,1,1, 900); // BBSuppliesTrailer3
  4095. AddStaticVehicleEx(435,-42.0974,61.1927,3.7552,339.5275,1,1, 900); // BBFarmSuppliesTrailer1
  4096. AddStaticVehicleEx(591,-33.6662,57.5084,3.6994,341.2177,1,1, 900); // BBFarmSuppliesTrailer2
  4097. AddStaticVehicleEx(435,-465.3719,-81.2704,60.6783,263.7261,1,1, 900); // BBLumberTrailer1
  4098. AddStaticVehicleEx(591,-464.9078,-75.3178,60.7492,261.5413,1,1, 900); // BBLumberTrailer2
  4099. AddStaticVehicleEx(435,-557.6436,-501.5607,25.5801,1.4391,1,1, 900); // WestBasinTrailer1
  4100. AddStaticVehicleEx(435,-529.6783,-502.6468,25.4099,0.1614,1,1, 900); // WestBasinTrailer2
  4101. AddStaticVehicleEx(591,-520.4857,-501.9078,25.4411,0.4591,1,1, 900); // WestBasinTrailer3
  4102. AddStaticVehicleEx(450,-1990.3916,-2425.5461,31.2098,136.7360,1,1, 900); // APStorageTrailer1
  4103. AddStaticVehicleEx(450,-1995.0924,-2421.6448,31.2925,139.3503,1,1, 900); // APStorageTrailer2
  4104. AddStaticVehicleEx(435,-1999.4061,-2418.6177,31.2859,138.2934,1,1, 900); // APStorageTrailer3
  4105. AddStaticVehicleEx(591,-2007.1364,-2409.9373,31.2855,138.6345,1,1, 900); // APStorageTrailer4
  4106. AddStaticVehicleEx(435,-1544.2321,-2742.5864,49.1988,170.4327,1,1, 900); // APSuppliesTraler1
  4107. AddStaticVehicleEx(591,-1539.4315,-2743.2131,49.1947,172.8186,1,1, 900); // APSuppliesTrailer2
  4108. AddStaticVehicleEx(435,-1544.2316,-2742.5872,49.1966,170.4324,1,1, 900); // APSuppliesTrailer3
  4109. AddStaticVehicleEx(450,350.6689,850.2215,20.7841,31.4371,1,1, 900); // BCQuarryTrailer1
  4110. AddStaticVehicleEx(450,346.4535,847.3931,20.7208,32.3695,1,1, 900); // BCQuarryTrailer2
  4111. AddStaticVehicleEx(450,322.8606,856.0114,21.0697,296.7265,1,1, 900); // BCQuarryTrailer3
  4112. AddStaticVehicleEx(450,317.3420,866.2861,20.9891,298.7624,1,1, 900); // BCQuarryTrailer4
  4113. AddStaticVehicleEx(584,270.7217,1478.2170,11.7794,185.5293,1,1, 900); // BCOilTrailer1
  4114. AddStaticVehicleEx(584,277.3219,1479.0850,11.7800,183.1001,1,1, 900); // BCOilTrailer2
  4115. AddStaticVehicleEx(584,283.1945,1477.4412,11.8043,179.6807,1,1, 900); // BCOilTrailer3
  4116. AddStaticVehicleEx(435,1461.5372,2328.6953,11.4165,89.0570,1,1, 900); // PilsonSuppliesTrailer1
  4117. AddStaticVehicleEx(435,1461.6980,2333.6047,11.4616,89.4065,1,1, 900); // PilsonSuppliesTrailer2
  4118. AddStaticVehicleEx(591,1462.7512,2339.3059,11.5106,89.8462,1,1, 900); // PilsonSuppliesTrailer3
  4119. AddStaticVehicleEx(591,1463.3148,2344.8459,11.4258,89.3545,1,1, 900); // PilsonSuppliesTrailer4
  4120. AddStaticVehicleEx(591,1639.5519,2340.2749,10.8013,89.3532,1,1, 900); // RedsandsTrailer1
  4121. AddStaticVehicleEx(435,1638.8723,2312.3152,10.8606,91.9411,1,1, 900); // RedsandsTrailer2
  4122. AddStaticVehicleEx(591,1639.0044,2302.9875,10.8445,89.3651,1,1, 900); // RedsandsTrailer3
  4123. AddStaticVehicleEx(591,2566.3142,2790.9033,11.4746,180.2304,1,1, 900); // KACCTrailer1
  4124. AddStaticVehicleEx(435,2557.8557,2790.4246,11.4802,179.1809,1,1, 900); // KACCTrailer2
  4125. AddStaticVehicleEx(435,2549.8347,2789.7908,11.4267,179.5141,1,1, 900); // KACCTrailer3
  4126. AddStaticVehicleEx(591,2541.3291,2791.1411,11.4830,180.7104,1,1, 900); // KACCTrailer4
  4127. AddStaticVehicleEx(591,1362.9547,1157.1427,11.4807,0.4241,1,1, 900); // LVAFTrailer1
  4128. AddStaticVehicleEx(435,1380.1807,1156.9369,11.4343,1.6050,1,1, 900); // LVAFTrailer2
  4129. AddStaticVehicleEx(435,1092.2933,1278.5941,11.4802,90.5015,1,1, 900); // BlackfieldSTrailer1
  4130. AddStaticVehicleEx(435,1092.6785,1272.4990,11.4791,92.3561,1,1, 900); // BlackfieldSTrailer2
  4131. AddStaticVehicleEx(435,1092.4906,1266.0619,11.4799,92.3815,1,1, 900); // BlackfieldSTrailer3
  4132. AddStaticVehicleEx(591,1093.4928,1259.1262,11.4872,90.5516,1,1, 900); // BlackfieldSTrailer4
  4133. AddStaticVehicleEx(591,1092.8287,1254.6204,11.4678,90.7795,1,1, 900); // BlackfieldSTrailer5
  4134. AddStaticVehicleEx(591,1092.5542,1248.2151,11.4794,90.7725,1,1, 900); // BlackfieldSTrailer6
  4135. AddStaticVehicleEx(591,2524.0969,-2116.7256,14.2474,359.3434,1,1, 900); // TruckerCoonTrailer1
  4136. AddStaticVehicleEx(435,2535.1987,-2132.6321,14.2063,0.1808,1,1, 900); // TruckerCoonTrailer2
  4137. AddStaticVehicleEx(584,2618.7053,-2190.2366,14.7029,179.4331,1,1, 900); // LADockFuelTrailer1
  4138. AddStaticVehicleEx(584,2613.2178,-2190.3564,14.7022,178.0155,1,1, 900); // LADockFuelTrailer2
  4139. AddStaticVehicleEx(584,2607.7852,-2190.4541,14.6854,182.4359,1,1, 900); // LADockFuelTrailer3
  4140. AddStaticVehicleEx(584,2602.1062,-2190.6284,14.7461,180.6021,1,1, 900); // LADockFuelTrailer4
  4141. AddStaticVehicleEx(584,993.3430,-912.2853,43.3470,97.4511,1,1, 900); // BroadwayTrailer1
  4142. AddStaticVehicleEx(584,995.4743,-927.3059,43.3791,96.3870,1,1, 900); // BroadwayTrailer2
  4143. AddStaticVehicleEx(584,1918.1345,-1790.0989,14.5632,270.3278,1,1, 900); // IdlewoodTrailer1
  4144. return true;
Add Comment
Please, Sign In to add comment