Advertisement
xXNiKkI_DownXx

Case Teleports

Jan 24th, 2023
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 101.38 KB | None | 0 0
  1.  
  2. /////======================== TELEPORTS OPTIONS ========================\\\\\
  3.  
  4. #pragma region TELEPORTS OPTIONS
  5.  
  6. #pragma region TELEPORT OPTIONS TELEPORT OPTIONS
  7. case teleports://no source original ta case teleports:
  8. {
  9. Imgui::ParasitaTitle(Language::Locations);
  10. if (Imgui::Option(Language::TeleportSave, Language::Yourcurrentcoordwillbesaved))
  11. {
  12. Teleports::TeleportSave();
  13. }
  14. Imgui::Bool(Language::Animation, nullptr, Teleports::TeleportAnimation);
  15. Imgui::Bool(Language::FreeCamteleport, nullptr, Teleports::freeT, [] { Teleports::freeCamt(Teleports::freeT); });
  16. Imgui::Bool(Language::ShowTeleportPreview, nullptr, Teleports::MostrarMapa);
  17. Imgui::MenuOption(Language::FavoritesTeleports, FavoritesTeleports, []
  18. {
  19. //Vo usa as mesmas variaveis do outro menu, pra facilitar
  20. Teleports::ListaTeleports.clear();//Limpa o vector, caso tenha algo salvo nele
  21. ArquivoTXT::TXTFilePath = ArquivoTXT::String::Documentos() + "Favorites\\FavoritesTeleports.ini";//Define o diretorio do arquivo INI
  22. Teleports::ListaTeleports = ArquivoTXT::String::PegarVariosValores(',');//Le o arquivo INI e armazena tudo no vector "ListaSuper" , separando por virgula
  23. Teleports::ListaTeleportsSize = ArquivoTXT::TamanhoDoVector(Teleports::ListaTeleports);//Calcula o tamanho da lista e aplica na variavel "ListaBibliotecaSize"
  24.  
  25. });//Imgui::MenuOption(Language::FavoritesTeleports, FavoritesTeleports);
  26. Imgui::MenuOption(Language::IPLs, ipl);
  27. Imgui::MenuOption(Language::StandardLocation, StandardLocation);
  28. Imgui::MenuOption(Language::TowerLocation, TowerLocation);
  29. Imgui::MenuOption(Language::UnderwaterLocations, underwater);
  30. Imgui::MenuOption(Language::Safehouses, safehouses);
  31. Imgui::MenuOption(Language::Landmarks, landmarks);
  32. Imgui::MenuOption(Language::HighAltitude, highaltitude);
  33. Imgui::MenuOption(Language::LesterLocations, lesterlocations);
  34. Imgui::MenuOption(Language::MapTrollsLocations, Mappsloaddertrolls);
  35. Imgui::MenuOption(Language::GlitchsTeleports, GlitchsTeleport);
  36. Imgui::MenuOption(Language::Ammunation, Ammunationshops);
  37. Imgui::MenuOption(Language::ClothingShops, Clothingshops);
  38. Imgui::MenuOption(Language::BarberShops, barbershop);
  39. Imgui::MenuOption(Language::LosSantosCustom, LosSantosCustom);
  40. Imgui::MenuOption(Language::TattooShops, tattootattoo);
  41. Imgui::MenuOption(Language::CarWash, CarWashCarWash);
  42. Imgui::MenuOption(Language::Foodslocation, foodfood);
  43. Imgui::MenuOption(Language::AiportsLocations, Aiportsteleport);
  44. Imgui::MenuOption(Language::CinemasLocations, Cinemasteleport);
  45. Imgui::MenuOption(Language::OnlineLocations, onlinelocations);
  46. Imgui::MenuOption(Language::CassinoLocation, shopsshops);
  47. Imgui::MenuOption(Language::ExecutiveOffice, ExecutiveOffice);
  48. Imgui::MenuOption(Language::ApartmentLocations, ApartmentLoc);
  49. Imgui::MenuOption(Language::BunkerLocation, bunkerbunker);
  50. Imgui::MenuOption(Language::MotoClubLocation, clubhouse);
  51. Imgui::MenuOption(Language::HangarLocation, hangarhangar);
  52. Imgui::MenuOption(Language::NightClubs, NightNight);
  53. Imgui::MenuOption(Language::StationLocation, facilitfacilit);
  54.  
  55. if (Imgui::Option(Language::TeleportToWaiypoint, nullptr))
  56. {
  57. Teleports::teleport_to_marker();
  58. }
  59. if (Imgui::Option(Language::TeleportToObjective, nullptr))
  60. {
  61. Teleports::teleport_to_objective();
  62. }
  63. Imgui::Break(Language::TeleportLocations);
  64. Imgui::Bool(Language::TeleportsShortcuts, Language::TeleportToWaipointF5, Teleports::teleporttowaypoint);
  65. //Imgui::Bool(Language::TeleportMemory, Language::Playersavesacheckpointinmemory, Teleports::TeleportSpeedBool);
  66. Imgui::Bool(Language::TeleportMemory, Language::Playersavesacheckpointinmemory, Teleports::TeleportSpeedBool, [] { Imgui::NotifyFoot(Language::SaveMemoryTP, 255, 255, 255, 255, 7); });
  67. }
  68. break;
  69. #pragma endregion
  70. #pragma region FAVORITES TELEPORTS TELEPORT OPTIONS
  71. case FavoritesTeleports:
  72. {
  73. Imgui::ParasitaTitle(Language::FavoritesTeleports);
  74.  
  75. for (int i = 0; i <= Teleports::ListaTeleportsSize; i++)
  76. {
  77. Teleports::TeleportsponteiroContador = i; //armazena o primeiro item da linha
  78. //Ve que o ponteiroContador, vai sempre add 1 ao valor, pra ir pegando o proxima da linha
  79.  
  80.  
  81.  
  82. float CoordX = std::stof((char*)Teleports::ListaTeleports[Teleports::TeleportsponteiroContador + 1].c_str());
  83. float CoordY = std::stof((char*)Teleports::ListaTeleports[Teleports::TeleportsponteiroContador + 2].c_str());
  84. float CoordZ = std::stof((char*)Teleports::ListaTeleports[Teleports::TeleportsponteiroContador + 3].c_str());
  85. Imgui::Teleport((char*)Teleports::ListaTeleports[Teleports::TeleportsponteiroContador].c_str(), nullptr, CoordX, CoordY, CoordZ, 0.f, 0.f);
  86. i++;//Incrementa 1
  87. i++;//Incrementa mais 1, assim o proximo sera o 4 (1 item da segunda linha)
  88. i++;
  89. }
  90. //std::vector<yzzuf_toddy::TeleportData> Super1 = yzzuf_toddy::GetTeleportOptionsFromFile("Favorites", "FavoritesTeleports");
  91. //for (auto car : Super1)
  92. //{
  93. // const char* c_car = car.name.c_str();
  94. // float CoordX = std::stof(car.detail1);
  95. // float CoordY = std::stof(car.detail2);
  96. // float CoordZ = std::stof(car.detail3);
  97. //
  98. // Imgui::Teleport(c_car, nullptr, CoordX, CoordY, CoordZ, 0.f, 0.f);
  99. //}
  100. }
  101. break;
  102. #pragma endregion
  103. #pragma region IPL ALL OPTIONS TELEPORT OPTIONS
  104. case ipl:
  105. {
  106. Imgui::ParasitaTitle(Language::IPLs);
  107. if (Imgui::Option(Language::RemoveAllLoaddersIPLs, nullptr))
  108. {
  109. Setting::RemoveAllIPL();
  110. }
  111. if (Imgui::Option(Language::IPLsNorthYankton, nullptr))
  112. {
  113. STREAMING::REQUEST_IPL("prologue01");
  114. STREAMING::REQUEST_IPL("Prologue01c");
  115. STREAMING::REQUEST_IPL("Prologue01d");
  116. STREAMING::REQUEST_IPL("Prologue01e");
  117. STREAMING::REQUEST_IPL("Prologue01f");
  118. STREAMING::REQUEST_IPL("Prologue01g");
  119. STREAMING::REQUEST_IPL("prologue01h");
  120. STREAMING::REQUEST_IPL("prologue01i");
  121. STREAMING::REQUEST_IPL("prologue01j");
  122. STREAMING::REQUEST_IPL("prologue01k");
  123. STREAMING::REQUEST_IPL("prologue01z");
  124. STREAMING::REQUEST_IPL("prologue02");
  125. STREAMING::REQUEST_IPL("prologue03");
  126. STREAMING::REQUEST_IPL("prologue03b");
  127. STREAMING::REQUEST_IPL("prologue03_grv_cov");
  128. STREAMING::REQUEST_IPL("prologue03_grv_dug");
  129. STREAMING::REQUEST_IPL("prologue03_grv_fun");
  130. STREAMING::REQUEST_IPL("prologue04");
  131. STREAMING::REQUEST_IPL("prologue04b");
  132. STREAMING::REQUEST_IPL("prologue04_cover");
  133. STREAMING::REQUEST_IPL("prologue05");
  134. STREAMING::REQUEST_IPL("prologue05b");
  135. STREAMING::REQUEST_IPL("prologue06");
  136. STREAMING::REQUEST_IPL("prologue06b");
  137. STREAMING::REQUEST_IPL("prologue06_int");
  138. STREAMING::REQUEST_IPL("prologuerd");
  139. STREAMING::REQUEST_IPL("prologuerdb");
  140. STREAMING::REQUEST_IPL("prologue_DistantLights");
  141. STREAMING::REQUEST_IPL("prologue_grv_torch");
  142. STREAMING::REQUEST_IPL("prologue_m2_door");
  143. STREAMING::REQUEST_IPL("prologue_LODLights");
  144. STREAMING::REQUEST_IPL("DES_ProTree_start");
  145. STREAMING::REQUEST_IPL("des_protree_end");
  146. STREAMING::REQUEST_IPL("prologue06_pannel");
  147. STREAMING::REQUEST_IPL("plg_occl_00");
  148. STREAMING::REQUEST_IPL("prologue_occl");
  149. }
  150. if (Imgui::Option(Language::NorthYankton, nullptr))
  151. {
  152. Vector3 Coords;
  153. Coords.x = 3217.697f; Coords.y = -4834.826f; Coords.z = 111.8152f;
  154. Teleports::TPto(Coords);
  155. }
  156. if (Imgui::Option(Language::IPLsONeilsFarmBurnt, nullptr))
  157. {
  158. STREAMING::REQUEST_IPL("farmint");
  159. STREAMING::REQUEST_IPL("farm_burnt");
  160. STREAMING::REQUEST_IPL("farm_burnt_props");
  161. STREAMING::REQUEST_IPL("des_farmhs_endimap");
  162. STREAMING::REQUEST_IPL("des_farmhs_end_occl");
  163. STREAMING::REQUEST_IPL("farm");
  164. STREAMING::REQUEST_IPL("farm_props");
  165. STREAMING::REQUEST_IPL("farm_int");
  166. STREAMING::REQUEST_IPL("farmint_cap");
  167. }
  168. if (Imgui::Option(Language::OneilFarm, nullptr))
  169. {
  170. Vector3 Coords;
  171. Coords.x = 2441.2f; Coords.y = 4968.5f; Coords.z = 51.7f;
  172. Teleports::TPto(Coords);
  173. }
  174. if (Imgui::Option(Language::IPLsCargoShip1, nullptr))
  175. {
  176. STREAMING::REQUEST_IPL("cargoship");
  177. STREAMING::REQUEST_IPL("sunkcargoship");
  178. STREAMING::REQUEST_IPL("SUNK_SHIP_FIRE");
  179. }
  180. if (Imgui::Option(Language::IPLsCargoShip2, nullptr))
  181. {
  182. STREAMING::REQUEST_IPL("cargoship");
  183. STREAMING::REQUEST_IPL("sunkcargoship");
  184. STREAMING::REQUEST_IPL("SUNK_SHIP_FIRE");
  185. }
  186. if (Imgui::Option(Language::IPLsCargoShip3, nullptr))
  187. {
  188. STREAMING::REQUEST_IPL("cargoship");
  189. STREAMING::REQUEST_IPL("sunkcargoship");
  190. STREAMING::REQUEST_IPL("SUNK_SHIP_FIRE");
  191. }
  192. if (Imgui::Option(Language::CargoShip, nullptr))
  193. {
  194. Vector3 Coords;
  195. Coords.x = -163.3628f; Coords.y = -2385.161f; Coords.z = 5.999994f;
  196. Teleports::TPto(Coords);
  197. }
  198. if (Imgui::Option(Language::IPLsRedCarpet, nullptr))
  199. {
  200. STREAMING::REQUEST_IPL("redCarpet");
  201. }
  202. if (Imgui::Option(Language::RedCarpet, nullptr))
  203. {
  204. Vector3 Coords;
  205. Coords.x = 300.5927f; Coords.y = 300.5927f; Coords.z = 104.3776f;
  206. Teleports::TPto(Coords);
  207. }
  208. if (Imgui::Option(Language::IPLsStilthouse1, nullptr))
  209. {
  210. STREAMING::REQUEST_IPL("DES_StiltHouse_imapend");
  211. STREAMING::REQUEST_IPL("DES_stilthouse_rebuild");
  212. }
  213. if (Imgui::Option(Language::IPLsStilthouse2, nullptr))
  214. {
  215. STREAMING::REQUEST_IPL("DES_StiltHouse_imapend");
  216. STREAMING::REQUEST_IPL("DES_stilthouse_rebuild");
  217. }
  218. if (Imgui::Option(Language::Stilthouse, nullptr))
  219. {
  220. Vector3 Coords;
  221. Coords.x = -1020.518f; Coords.y = 663.27f; Coords.z = 153.5167f;
  222. Teleports::TPto(Coords);
  223. }
  224. if (Imgui::Option(Language::IPLsBank, nullptr))
  225. {
  226. STREAMING::REQUEST_IPL("FINBANK");
  227. }
  228. if (Imgui::Option(Language::Bank, nullptr))
  229. {
  230. Vector3 Coords;
  231. Coords.x = 2.6968f; Coords.y = -667.0166f; Coords.z = 16.13061f;
  232. Teleports::TPto(Coords);
  233. }
  234. if (Imgui::Option(Language::IPLsTrevor1, nullptr))
  235. {
  236. STREAMING::REQUEST_IPL("TrevorsMP");
  237. STREAMING::REQUEST_IPL("TrevorsTrailerTidy");
  238. }
  239. if (Imgui::Option(Language::IPLsTrevor2, nullptr))
  240. {
  241. STREAMING::REQUEST_IPL("TrevorsMP");
  242. STREAMING::REQUEST_IPL("TrevorsTrailerTidy");
  243. }
  244. if (Imgui::Option(Language::Trevor, nullptr))
  245. {
  246. Vector3 Coords;
  247. Coords.x = 1975.552f; Coords.y = 3820.538f; Coords.z = 33.44833f;
  248. Teleports::TPto(Coords);
  249. }
  250. if (Imgui::Option(Language::IPLsStadium, nullptr))
  251. {
  252. STREAMING::REQUEST_IPL("SP1_10_real_interior");
  253. }
  254. if (Imgui::Option(Language::Stadium, nullptr))
  255. {
  256. Vector3 Coords;
  257. Coords.x = -248.6731f; Coords.y = -2010.603f; Coords.z = 30.14562f;
  258. Teleports::TPto(Coords);
  259. }
  260. if (Imgui::Option(Language::IPLsJewelryStore, nullptr))
  261. {
  262. STREAMING::REQUEST_IPL("jewel2fake");
  263. STREAMING::REQUEST_IPL("bh1_16_refurb");
  264. STREAMING::REQUEST_IPL("refit_unload");
  265. STREAMING::REQUEST_IPL("post_hiest_unload");
  266. }
  267. if (Imgui::Option(Language::JewelryStore, nullptr))
  268. {
  269. Vector3 Coords;
  270. Coords.x = -630.07f; Coords.y = -236.332f; Coords.z = 38.05704f;
  271. Teleports::TPto(Coords);
  272. }
  273. if (Imgui::Option(Language::IPLsFIB, nullptr))
  274. {
  275. STREAMING::REQUEST_IPL("FIBlobby");
  276. }
  277. if (Imgui::Option(Language::FIB, nullptr))
  278. {
  279. Vector3 Coords;
  280. Coords.x = 110.4f; Coords.y = -744.2f; Coords.z = 45.7496f;
  281. Teleports::TPto(Coords);
  282. }
  283. if (Imgui::Option(Language::IPLsSunkenCargoship, nullptr))
  284. {
  285. STREAMING::REQUEST_IPL("sunkcargoship");
  286. }
  287. if (Imgui::Option(Language::SunkenCargoship, nullptr))
  288. {
  289. Vector3 Coords;
  290. Coords.x = -162.8918f; Coords.y = -2365.769f; Coords.z = 0.0f;
  291. Teleports::TPto(Coords);
  292. }
  293. if (Imgui::Option(Language::IPLsHospital, nullptr))
  294. {
  295. STREAMING::REQUEST_IPL("RC12B_HospitalInterior");
  296. STREAMING::REQUEST_IPL("RC12B_Destroyed");
  297. }
  298. if (Imgui::Option(Language::Hospital, nullptr))
  299. {
  300. Vector3 Coords;
  301. Coords.x = 356.8f; Coords.y = -590.1f; Coords.z = 43.3f;
  302. Teleports::TPto(Coords);
  303. }
  304. if (Imgui::Option(Language::IPLsLifeInvaderOffice, nullptr))
  305. {
  306. STREAMING::REQUEST_IPL("facelobby");
  307. STREAMING::REQUEST_IPL("facelobbyfake");
  308. }
  309. if (Imgui::Option(Language::LifeInvaderOffice, nullptr))
  310. {
  311. Vector3 Coords;
  312. Coords.x = -1047.9f; Coords.y = -233.0f; Coords.z = 39.0f;
  313. Teleports::TPto(Coords);
  314. }
  315. if (Imgui::Option(Language::IPLsMorgue, nullptr))
  316. {
  317. STREAMING::REQUEST_IPL("coronertrash");
  318. STREAMING::REQUEST_IPL("Coroner_Int_on");
  319. }
  320. if (Imgui::Option(Language::Morgue, nullptr))
  321. {
  322. Vector3 Coords;
  323. Coords.x = 244.9f; Coords.y = -1374.7f; Coords.z = 39.5f;
  324. Teleports::TPto(Coords);
  325. }
  326. }
  327. break;
  328. #pragma endregion
  329. #pragma region STRANGE PLACES TELEPORT OPTIONS
  330. case StandardLocation:
  331. {
  332. Imgui::ParasitaTitle(Language::StrangePlaces);
  333. if (Imgui::Teleport(Language::Ghost2300am, nullptr, 3059.6201f, 5564.2461f, 197.0906f, 0.0, 0.0))
  334. {
  335. PED::SET_PED_COORDS_KEEP_VEHICLE(PLAYER::PLAYER_PED_ID(), 3059.6201f, 5564.2461f, 197.0906f);
  336. NETWORK::NETWORK_OVERRIDE_CLOCK_TIME(0, 0, 0);
  337. }
  338.  
  339. Imgui::Teleport(Language::Bridge, nullptr, -556.794f, -2244.583f, 124.003, 0.0, 0.0);
  340. Imgui::Teleport(Language::Highcrane, nullptr, -171.701f, -1003.840f, 296.206, 0.0, 0.0);
  341. Imgui::Teleport(Language::Graveyard, nullptr, -1724.513f, -192.559f, 60.092, 0.0, 0.0);
  342. Imgui::Teleport(Language::Miniaturegolf, nullptr, -1335.633f, -59.032f, 55.245, 0.0, 0.0);
  343. Imgui::Teleport(Language::Railwaytunnel, nullptr, -796.434f, -129.138f, 20.199, 0.0, 0.0);
  344. Imgui::Teleport(Language::Constructionsitecrane, nullptr, -473.127f, -961.945f, 69.712, 0.0, 0.0);
  345. Imgui::Teleport(Language::Trainingarea, nullptr, -1250.207f, -1595.640f, 4.093, 0.0, 0.0);
  346. Imgui::Teleport(Language::Beachrocks, nullptr, -1490.086f, -1479.924f, 3.238, 0.0, 0.0);
  347. Imgui::Teleport(Language::MountChiliad, nullptr, 496.75f, 5591.17f, 795.03, 0.0, 0.0);
  348. Imgui::Teleport(Language::MazeBank, nullptr, -74.94243f, -818.63446f, 326.174347, 0.0, 0.0);
  349. Imgui::Teleport(Language::MilitaryBase, nullptr, -2012.8470f, 2956.5270f, 32.8101, 0.0, 0.0);
  350. Imgui::Teleport(Language::ZancudoTower, nullptr, -2356.0940, 3248.645, 101.4505, 0.0, 0.0);
  351. Imgui::Teleport(Language::MaskShop, nullptr, -1338.16, -1278.11, 4.87, 0.0, 0.0);
  352. Imgui::Teleport(Language::LSCustoms, nullptr, -373.01, -124.91, 38.31, 0.0, 0.0);
  353. Imgui::Teleport(Language::Airport, nullptr, -1102.2910f, -2894.5160f, 13.9467, 0.0, 0.0);
  354. Imgui::Teleport(Language::ClothesStore, nullptr, -718.91, -158.16, 37.00, 0.0, 0.0);
  355. Imgui::Teleport(Language::Waterfall, nullptr, -597.9525f, 4475.2910f, 25.6890, 0.0, 0.0);
  356. Imgui::Teleport(Language::FBI, nullptr, 135.5220f, -749.0003f, 260.0000, 0.0, 0.0);
  357. Imgui::Teleport(Language::HumanLabs, nullptr, 3617.231f, 3739.871f, 28.6901, 0.0, 0.0);
  358. Imgui::Teleport(Language::MMI, nullptr, -222.1977, -1185.8500, 23.0294, 0.0, 0.0);
  359. Imgui::Teleport(Language::SandyShoresAirfield, nullptr, 1741.4960f, 3269.2570f, 41.6014, 0.0, 0.0);
  360. Imgui::Teleport(Language::MorsMutualInsurance, nullptr, -221.749908f, -1158.249756f, 23.040998, 0.0, 0.0);
  361. Imgui::Teleport(Language::BennysGarage, nullptr, -196.349442f, -1303.103271f, 30.650515, 0.0, 0.0);
  362. Imgui::Teleport(Language::Darts, nullptr, 1997.273071f, 3062.091309f, 46.789749, 0.0, 0.0);
  363. Imgui::Teleport(Language::RockfordHills, nullptr, -1365.342163f, -114.440826f, 50.704300, 0.0, 0.0);
  364. Imgui::Teleport(Language::Ponsonbys, nullptr, -1460.654419f, -227.550964f, 48.728519, 0.0, 0.0);
  365. }
  366. break;
  367. #pragma endregion
  368. #pragma region TOWER LOCATIONS TELEPORT OPTIONS
  369. case TowerLocation:
  370. {
  371. Imgui::ParasitaTitle(Language::TowersLocation);
  372. Imgui::Teleport(Language::SecretArmyTower, nullptr, -2358.946045f, 3252.216797f, 101.450424f, 0.0, 0.0);
  373. Imgui::Teleport(Language::MazeTower, nullptr, -73.92588f, -818.455078f, 326.174377f, 0.0, 0.0);
  374. Imgui::Teleport(Language::ConstructionTower, nullptr, 0.0, 0.0, 0.0, 0.0, 0.0);
  375. Imgui::Teleport(Language::ClockTower, nullptr, -1238.675537f, -847.954590f, 85.161690f, 0.0, 0.0);
  376. Imgui::Teleport(Language::SniperTower, nullptr, -550.989380f, -193.862366f, 76.499336f, 0.0, 0.0);
  377. Imgui::Teleport(Language::PrisonTower, nullptr, 1541.6290f, 2470.1400f, 62.8751f, 0.0, 0.0);
  378. Imgui::Teleport(Language::CreekMountainTower, nullptr, 2784.6060f, 6000.8770f, 357.2007f, 0.0, 0.0);
  379. Imgui::Teleport(Language::EclipseTowers, nullptr, -773.351990f, 309.809235f, 85.699196f, 0.0, 0.0);
  380. Imgui::Teleport(Language::TinselTowers, nullptr, -641.864624f, 24.014740f, 39.351025f, 0.0, 0.0);
  381. Imgui::Teleport(Language::ZancudoTower, nullptr, -2356.0940, 3248.645, 101.4505, 0.0, 0.0);
  382.  
  383. }
  384. break;
  385. #pragma endregion
  386. #pragma region UNDERWATER TELEPORT OPTIONS
  387. case underwater:
  388. {
  389. Imgui::ParasitaTitle(Language::Underwater);
  390. Imgui::Teleport(Language::Hatch, nullptr, 4274.2334f, 2975.4146f, -169.5375, 0.0, 0.0);
  391. Imgui::Teleport(Language::SeaMonster, nullptr, -3373.730f, 504.7139f, -23.7034, 0.0, 0.0);
  392. Imgui::Teleport(Language::Tank, nullptr, 4201.6323f, 3643.8167f, -37.6158, 0.0, 0.0);
  393. Imgui::Teleport(Language::HumaneLabsTunnel, nullptr, 3838.4746f, 3673.0667f, -18.8467, 0.0, 0.0);
  394. Imgui::Teleport(Language::UFO, nullptr, 762.4217f, 7380.3682f, -110.3537, 0.0, 0.0);
  395. Imgui::Teleport(Language::SunkenBody, nullptr, -3161.077f, 3001.9915f, -36.8034, 0.0, 0.0);
  396. Imgui::Teleport(Language::SunkenPlane, nullptr, -942.3652f, 6608.7627f, -19.5568, 0.0, 0.0);
  397. Imgui::Teleport(Language::SunkenCargoShip, nullptr, 3199.748, -379.018, -22.500, 0.0, 0.0);
  398.  
  399. }
  400. break;
  401. #pragma endregion
  402. #pragma region SAFE HOUSE TELEPORT OPTIONS
  403. case safehouses:
  404. {
  405. Imgui::ParasitaTitle(Language::SafeHouses);
  406. Imgui::Teleport(Language::MichaelsHouse, nullptr, -813.6030f, 179.4740f, 72.1572f, 0.0, 0.0);
  407.  
  408. Imgui::Teleport(Language::FranklinsHouse1, nullptr, 7.1190f, 536.6150f, 176.0280f, 0.0, 0.0);
  409.  
  410. Imgui::Teleport(Language::FranklinsHouse2, nullptr, -14.3803f, -1483.510f, 31.1044f, 0.0, 0.0);
  411.  
  412. Imgui::Teleport(Language::TrevorsHouse1, nullptr, 1972.6100f, 3817.0400f, 33.4283f, 0.0, 0.0);
  413.  
  414. Imgui::Teleport(Language::TrevorsHouse2, nullptr, -1151.770f, 1518.140f, 10.6327f, 0.0, 0.0);
  415.  
  416. Imgui::Teleport(Language::TrevorsOffice, nullptr, 97.2707f, -1290.994f, 29.2688f, 0.0, 0.0);
  417.  
  418. }
  419. break;
  420. #pragma endregion
  421. #pragma region LANDMARKS TELEPORT OPTIONS
  422. case landmarks:
  423. {
  424.  
  425. Imgui::ParasitaTitle(Language::Landmarks);
  426. Imgui::Teleport(Language::AircraftCarrier, nullptr, 3084.7302f, -4770.709f, 15.2617f, 0.0, 0.0);
  427. Imgui::Teleport(Language::AirportRunway, nullptr, -1336.000f, -3044.000f, 13.9393f, 0.0, 0.0);
  428. Imgui::Teleport(Language::AltruistCultCamp, nullptr, -1170.840f, 4926.6460f, 224.2953f, 0.0, 0.0);
  429. Imgui::Teleport(Language::CalafiaTrainBridege, nullptr, -517.8690f, 4425.2842f, 89.7951f, 0.0, 0.0);
  430. Imgui::Teleport(Language::CargoShip, nullptr, 899.6780f, -2882.190f, 19.0130f, 0.0, 0.0);
  431. Imgui::Teleport(Language::ChumashPier, nullptr, -3426.683f, 967.7380f, 8.3468f, 0.0, 0.0);
  432. Imgui::Teleport(Language::DellPerroPier, nullptr, -1850.127f, -1231.751f, 13.0172f, 0.0, 0.0);
  433. Imgui::Teleport(Language::ElBurroHeights, nullptr, 1384.0000f, -2057.100f, 51.9993f, 0.0, 0.0);
  434. Imgui::Teleport(Language::ElysianIsland, nullptr, 338.2000f, -2715.899f, 38.4785f, 0.0, 0.0);
  435. Imgui::Teleport(Language::NorthSanAndreas, nullptr, 24.7750f, 7644.1021f, 19.0559f, 0.0, 0.0);
  436. Imgui::Teleport(Language::FerrisWheel, nullptr, -1670.700f, -1125.000f, 13.0379f, 0.0, 0.0);
  437. Imgui::Teleport(Language::FortZancudo, nullptr, -2047.400f, 3132.1001f, 32.8043f, 0.0, 0.0);
  438. Imgui::Teleport(Language::FortZancudoTower, nullptr, -2358.132f, 3249.7539f, 101.4508f, 0.0, 0.0);
  439. Imgui::Teleport(Language::Jetsam, nullptr, 760.4000f, -2943.200f, 5.8004f, 0.0, 0.0);
  440. Imgui::Teleport(Language::MerryweatherDock, nullptr, 86.4170f, -3339.691f, 6.0699f, 0.0, 0.0);
  441. Imgui::Teleport(Language::MountChiliad, nullptr, 450.7180f, 5566.6138f, 806.1831f, 0.0, 0.0);
  442. Imgui::Teleport(Language::PacificStandartBank, nullptr, 235.0460f, 216.4340f, 106.2869f, 0.0, 0.0);
  443. Imgui::Teleport(Language::PoliceStation, nullptr, 436.4910f, -982.1720f, 30.6989f, 0.0, 0.0);
  444. Imgui::Teleport(Language::SandyShoresAirfiled, nullptr, 1747.0000f, 3273.7000f, 41.1277f, 0.0, 0.0);
  445. }
  446. break;
  447. #pragma endregion
  448. #pragma region HIGH ALTITUDE TELEPORT OPTIONS
  449. case highaltitude:
  450. {
  451. Imgui::ParasitaTitle(Language::HighAltitude);
  452. Imgui::Teleport(Language::CraneTop, nullptr, -119.8790f, -977.3570f, 304.2491f, 0.0, 0.0);
  453. Imgui::Teleport(Language::FIBBuildingRoof, nullptr, 150.1260f, -754.5910f, 262.8650f, 0.0, 0.0);
  454. Imgui::Teleport(Language::GalileoRoof, nullptr, -438.8040f, 1076.0970f, 352.4106f, 0.0, 0.0);
  455. Imgui::Teleport(Language::IAABuildingRoof, nullptr, 134.0850f, -637.8590f, 262.8510f, 0.0, 0.0);
  456. Imgui::Teleport(Language::MazeBankRoof, nullptr, -75.0150f, -818.2150f, 326.1757f, 0.0, 0.0);
  457. Imgui::Teleport(Language::SatelliteDish, nullptr, 2034.9880f, 2953.1050f, 74.6007f, 0.0, 0.0);
  458. Imgui::Teleport(Language::UFOFortZacudo, nullptr, -2052.000f, 3237.0000f, 1456.9756f, 0.0, 0.0);
  459. Imgui::Teleport(Language::WindmillTop, nullptr, 2026.6754f, 1824.6824f, 133.3133f, 0.0, 0.0);
  460.  
  461. }
  462. break;
  463. #pragma endregion
  464. #pragma region LESTER LOCATIONS TELEPORT OPTIONS
  465. case lesterlocations:
  466. {
  467. Imgui::ParasitaTitle(Language::LesterLocation);
  468. Imgui::Teleport(Language::DarnellBross, nullptr, 692.847f, -1009.201f, 21.774f, 0.0, 0.0);
  469. Imgui::Teleport(Language::LestersHouse, nullptr, 1273.9, -1719.305, 54.77141, 0.0, 0.0);
  470. }
  471. break;
  472. #pragma endregion
  473. #pragma region MAP TROLLS TELEPORT OPTIONS
  474. case Mappsloaddertrolls:
  475. {
  476.  
  477. Imgui::ParasitaTitle(Language::MapTrollsLocation);
  478. if (Imgui::Option(Language::UnloadAll, nullptr))
  479. {
  480. for (int i = 0; i < 950; i++)
  481. {
  482. Carros::RequestControlOfEnt(Teleports::tmpobj);
  483. ENTITY::SET_ENTITY_AS_NO_LONGER_NEEDED(&Teleports::tmpobj);
  484. ENTITY::DELETE_ENTITY(&Teleports::tmpobj);
  485. Imgui::NotifyFoot(Language::Unloadsuccessfull, 255, 255, 255, 255, 7);
  486. }
  487. }
  488. if (Imgui::Option(Language::MountChiladRamp, nullptr))
  489. {
  490. Hash tempHashcont = Setting::HashKey("prop_container_01a");
  491. Teleports::PlaceObject(tempHashcont, 509.8423f, 5589.2422f, 791.0656f, 0.1410f, 0.0f, 65.3998f, false);
  492. Teleports::PlaceObject(tempHashcont, 520.5002f, 5584.3774f, 790.5033f, 5.4410f, 0.0f, 65.3998f, false);
  493. Teleports::PlaceObject(tempHashcont, 531.0571f, 5579.5405f, 788.6912f, 12.4410f, 0.0f, 65.3998f, false);
  494. Teleports::PlaceObject(tempHashcont, 541.3253f, 5574.8403f, 785.4896f, 19.4409f, 0.0f, 65.3998f, false);
  495. Teleports::PlaceObject(tempHashcont, 551.0662f, 5570.3701f, 780.7990f, 27.5407f, 0.0f, 65.3998f, false);
  496. Teleports::PlaceObject(tempHashcont, 560.1738f, 5566.2046f, 774.6979f, 35.0403f, 0.0f, 65.3998f, false);
  497. Teleports::PlaceObject(tempHashcont, 568.6718f, 5562.3198f, 767.4281f, 40.7396f, 0.0f, 65.3998f, false);
  498. Teleports::PlaceObject(tempHashcont, 576.9716f, 5558.5269f, 759.5663f, 40.7396f, 0.0f, 65.3998f, false);
  499. Teleports::PlaceObject(tempHashcont, 585.2493f, 5554.7471f, 751.7451f, 40.7396f, 0.0f, 65.3998f, false);
  500. Teleports::PlaceObject(tempHashcont, 593.5072f, 5550.9722f, 743.9170f, 40.7396f, 0.0f, 65.3998f, false);
  501. Teleports::PlaceObject(tempHashcont, 601.7770f, 5547.1912f, 736.0764f, 40.7396f, 0.0f, 65.3998f, false);
  502. Teleports::PlaceObject(tempHashcont, 610.0651f, 5543.3994f, 728.2167f, 40.7396f, 0.0f, 65.3998f, false);
  503. Teleports::PlaceObject(tempHashcont, 618.3337f, 5539.6226f, 720.3861f, 40.7936f, 0.0f, 65.3998f, false);
  504. Teleports::PlaceObject(tempHashcont, 626.6017f, 5535.8477f, 712.5473f, 40.7396f, 0.0f, 65.3998f, false);
  505. Teleports::PlaceObject(tempHashcont, 634.8616f, 5532.0669f, 704.7252f, 40.7396f, 0.0f, 65.3998f, false);
  506. Teleports::PlaceObject(tempHashcont, 643.1213f, 5528.2861f, 696.8940f, 40.7936f, 0.0f, 65.3998f, false);
  507. Teleports::PlaceObject(tempHashcont, 651.3914f, 5524.5059f, 689.0526f, 40.7396f, 0.0f, 65.3998f, false);
  508. Teleports::PlaceObject(tempHashcont, 659.6512f, 5520.7275f, 681.2211f, 40.7396f, 0.0f, 65.3998f, false);
  509. Teleports::PlaceObject(tempHashcont, 667.9110f, 5516.9424f, 673.3893f, 40.7396f, 0.0f, 65.3998f, false);
  510. Teleports::PlaceObject(tempHashcont, 676.1708f, 5513.1670f, 665.5580f, 40.7396f, 0.0f, 65.3998f, false);
  511. Teleports::PlaceObject(tempHashcont, 684.4307f, 5509.3789f, 657.7266f, 40.7396f, 0.0f, 65.3998f, false);
  512. Teleports::PlaceObject(tempHashcont, 692.6906f, 5505.6079f, 649.9052f, 40.7396f, 0.0f, 65.3998f, false);
  513. Teleports::PlaceObject(tempHashcont, 700.9504f, 5501.8271f, 642.0737f, 40.7396f, 0.0f, 65.3998f, false);
  514. Teleports::PlaceObject(tempHashcont, 709.2201f, 5498.0464f, 634.2426f, 40.7396f, 0.0f, 65.3998f, false);
  515. Teleports::PlaceObject(tempHashcont, 717.4602f, 5494.2759f, 626.4309f, 40.7396f, 0.0f, 65.3998f, false);
  516. Teleports::PlaceObject(tempHashcont, 725.7202f, 5490.4980f, 618.5996f, 40.7396f, 0.0f, 65.3998f, false);
  517. Teleports::PlaceObject(tempHashcont, 733.9800f, 5486.7226f, 610.7783f, 40.7396f, 0.0f, 65.3998f, false);
  518. Teleports::PlaceObject(tempHashcont, 742.5997f, 5482.7764f, 603.1669f, 36.9395f, 0.0f, 65.3998f, false);
  519. Teleports::PlaceObject(tempHashcont, 751.8304f, 5478.5518f, 596.3347f, 31.0392f, 0.0f, 65.3998f, false);
  520. Teleports::PlaceObject(tempHashcont, 761.7103f, 5474.0220f, 590.6132f, 24.5989f, 0.0f, 65.3998f, false);
  521. Teleports::PlaceObject(tempHashcont, 772.0702f, 5469.2827f, 586.0803f, 18.9288f, 0.0f, 65.3998f, false);
  522. Teleports::PlaceObject(tempHashcont, 782.8400f, 5464.3433f, 582.8604f, 11.5788f, 0.0f, 65.3998f, false);
  523. Teleports::PlaceObject(tempHashcont, 793.8899f, 5459.2847f, 581.1174f, 5.0787f, 0.0f, 65.3998f, false);
  524. Teleports::PlaceObject(tempHashcont, 805.1001f, 5454.1479f, 580.8762f, -2.5212f, 0.0f, 65.3998f, false);
  525. Teleports::PlaceObject(tempHashcont, 816.1702f, 5449.0796f, 581.9746f, -7.6213f, 0.0f, 65.3998f, false);
  526. Teleports::PlaceObject(tempHashcont, 827.1907f, 5444.0405f, 584.5823f, -16.6212f, 0.0f, 65.3998f, false);
  527. Object exist = Teleports::PlaceObject(tempHashcont, 837.6807f, 5439.2407f, 588.8990f, -24.4210f, 0.0f, 65.3998f, false);
  528. Vector3 Coords;
  529. Coords.x = 499.449f; Coords.y = 5591.97f; Coords.z = 795.2076f;
  530. Teleports::TPto(Coords);
  531. }
  532. if (Imgui::Option(Language::EclipseTowersWindmill, nullptr))
  533. {
  534. Teleports::PlaceObject(1952396163, -834.4f, 329.27f, 81.65f, -87.0f, 0.0f, -180.0f, true);
  535. Teleports::PlaceObject(1952396163, -774.15f, 324.93f, 81.77f, -90.0f, 174.0f, 0.0f, true);
  536. Teleports::PlaceObject(1952396163, -799.46f, 324.30f, 81.73f, -87.56f, 21.56f, -156.60f, true);
  537. Teleports::PlaceObject(1952396163, -727.90f, 328.32f, 81.78f, -89.99f, 90.0f, -90.0f, true);
  538. Teleports::PlaceObject(1952396163, -699.43f, 286.81f, 98.78f, 90.0f, -90.0f, 0.0f, true);
  539. Teleports::PlaceObject(1952396163, -767.42f, 317.80f, 97.81f, 90.0f, 90.0f, -91.0f, true);
  540. Teleports::PlaceObject(1952396163, -792.91f, 318.15f, 97.78f, 90.0f, 0.0f, 8.0f, true);
  541. Teleports::PlaceObject(1952396163, -785.52f, 282.65f, 97.60f, 90.0f, 0.0f, -89.0f, true);
  542. Vector3 Coords;
  543. Coords.x = -795.7008f; Coords.y = 312.9443f; Coords.z = 93.4643f;
  544. Teleports::TPto(Coords);
  545. }
  546. if (Imgui::Option(Language::LSCWindmill, nullptr))
  547. {
  548. Teleports::PlaceObject(1952396163, -354.82f, -91.23f, 35.25f, -90.0f, 0.0f, 123.0f, true);
  549. Teleports::PlaceObject(1952396163, -339.65f, -97.46f, 35.25f, -90.0f, 0.0f, 128.0f, true);
  550. Teleports::PlaceObject(1952396163, -339.82f, -125.23f, 35.49f, -90.0f, 127.0f, -115.0f, true);
  551. Teleports::PlaceObject(1952396163, -382.16f, -100.20f, 15.41f, 0.0f, 0.0f, 6.0f, true);
  552. Teleports::PlaceObject(1952396163, -426.98f, -118.55f, 55.25f, 90.0f, 0.0f, 116.0f, true);
  553. Teleports::PlaceObject(1952396163, -398.57f, -157.20f, 66.25f, 90.0f, -90.0f, -151.0f, true);
  554. Teleports::PlaceObject(1952396163, -356.60f, -114.7f, 19.25f, 0.0f, 0.0f, -50.0f, true);
  555. Teleports::PlaceObject(1952396163, -341.8f, -56.18f, 42.36f, -90.0f, 0.0f, 148.0f, true);
  556. Teleports::PlaceObject(1952396163, -411.61f, -148.4f, 55.25f, 90.0f, 0.0f, 122.0f, true);
  557. Teleports::PlaceObject(1952396163, -380.56f, -159.90f, 15.25f, 0.0f, 0.0f, 128.0f, true);
  558. Vector3 Coords;
  559. Coords.x = -406.9230f; Coords.y = -96.7085f; Coords.z = 40.2014f;
  560. Teleports::TPto(Coords);
  561. }
  562. if (Imgui::Option(Language::DemolitionDurby, nullptr))
  563. {
  564. Teleports::PlaceObject(-560584347, 1708.78, 2152.45, 81.97, 0.0, 0.39, 10.0, false);
  565. Teleports::PlaceObject(779917859, 1707.38, 2160.95, 82.45, 0.0, 0.0, 273.99, false);
  566. Teleports::PlaceObject(-560584347, 1707.64, 2174.28, 82.24, 0.0, 0.0, 181.99, false);
  567. Teleports::PlaceObject(779917859, 1705.68, 2185.26, 82.30, 0.0, 0.0, 273.99, false);
  568. Teleports::PlaceObject(779917859, 1704.76, 2192.40, 82.10, 0.1, -3.51, 279.75, false);
  569. Teleports::PlaceObject(779917859, 1700.22, 2195.62, 81.57, 0.0, -2.29, 9.72, false);
  570. Teleports::PlaceObject(779917859, 1662.64, 2191.76, 79.25, 0.0, -5.39, 2.51, false);
  571. Teleports::PlaceObject(779917859, 1654.60, 2191.33, 78.50, 0.0, -3.67, 3.52, false);
  572. Teleports::PlaceObject(779917859, 1646.65, 2190.93, 77.91, 0.8, -4.50, 2.55, false);
  573. Teleports::PlaceObject(-560584347, 1650.27, 2192.1, 77.98, -4.76, 0.87, 93.40, false);
  574. Teleports::PlaceObject(779917859, 1638.46, 2190.53, 77.31, 0.8, -4.50, 2.60, false);
  575. Teleports::PlaceObject(779917859, 1630.40, 2190.28, 76.56, 0.0, -3.8, 0.80, false);
  576. Teleports::PlaceObject(779917859, 1622.33, 2190.11, 76.24, 0.0, -1.50, 0.17, false);
  577. Teleports::PlaceObject(779917859, 1613.96, 2190.9, 76.50, 0.0, 2.86, 0.0, false);
  578. Teleports::PlaceObject(779917859, 1605.90, 2189.83, 77.29, 0.0, 4.85, 4.99, false);
  579. Teleports::PlaceObject(779917859, 1601.96, 2185.40, 77.92, 0.0, 1.21, 92.67, false);
  580. Teleports::PlaceObject(779917859, 1602.41, 2177.37, 78.19, 0.0, 1.50, 92.71, false);
  581. Teleports::PlaceObject(779917859, 1602.80, 2169.32, 78.19, 0.8, -0.9, 93.71, false);
  582. Teleports::PlaceObject(-560584347, 1602.15, 2167.54, 78.0, 0.0, 0.0, 183.38, false);
  583. Teleports::PlaceObject(779917859, 1603.32, 2161.23, 78.32, 0.3, 1.7, 93.13, false);
  584. Teleports::PlaceObject(779917859, 1603.80, 2153.33, 78.77, 0.51, 0.40, 94.12, false);
  585. Teleports::PlaceObject(779917859, 1604.38, 2145.41, 78.97, 0.0, 0.0, 94.8, false);
  586. Teleports::PlaceObject(-560584347, 1603.71, 2140.89, 78.98, 0.0, 0.0, 181.99, false);
  587. Teleports::PlaceObject(779917859, 1604.93, 2137.37, 79.4, 0.0, 2.0, 95.11, false);
  588. Teleports::PlaceObject(779917859, 1609.24, 2133.62, 79.14, 0.0, 0.0, 183.59, false);
  589. Teleports::PlaceObject(779917859, 1617.29, 2134.18, 78.90, 0.0, 0.0, 183.99, false);
  590. Teleports::PlaceObject(779917859, 1625.40, 2134.64, 78.89, 0.0, 2.20, 183.75, false);
  591. Teleports::PlaceObject(779917859, 1633.59, 2135.11, 79.45, 2.56, 2.70, 182.40, false);
  592. Teleports::PlaceObject(779917859, 1641.80, 2135.65, 79.98, 3.53, 5.7, 184.47, false);
  593. Teleports::PlaceObject(-560584347, 1641.89, 2134.37, 80.0, -2.0, 2.0, 96.52, false);
  594. Teleports::PlaceObject(779917859, 1656.32, 2136.73, 80.93, 2.57, 2.66, 184.7, false);
  595. Teleports::PlaceObject(779917859, 1648.83, 2136.24, 80.47, 4.12, 3.60, 184.15, false);
  596. Teleports::PlaceObject(779917859, 1656.32, 2136.73, 80.93, 2.57, 2.66, 184.7, false);
  597. Teleports::PlaceObject(779917859, 1664.41, 2137.40, 81.22, 0.0, 0.0, 183.99, false);
  598. Teleports::PlaceObject(779917859, 1672.46, 2137.97, 81.58, 0.0, 3.0, 183.99, false);
  599. Teleports::PlaceObject(779917859, 1680.53, 2138.53, 81.58, 0.0, 0.0, 183.99, false);
  600. Teleports::PlaceObject(-560584347, 1680.86, 2137.12, 81.76, 0.0, 0.0, 95.19, false);
  601. Teleports::PlaceObject(779917859, 1688.71, 2139.11, 81.80, 0.0, 0.0, 183.99, false);
  602. Teleports::PlaceObject(779917859, 1696.768, 2139.68, 81.69, 0.0, 0.0, 183.99, false);
  603. Teleports::PlaceObject(779917859, 1704.83, 2140.32, 81.55, 0.0, 0.0, 185.19, false);
  604. Teleports::PlaceObject(779917859, 1708.52, 2144.82, 81.59, 0.0, 0.0, 273.99, false);
  605. Teleports::PlaceObject(779917859, 1707.97, 2152.93, 82.18, 0.0, 1.99, 274.73, false);
  606. Teleports::PlaceObject(779917859, 1706.79, 2169.2, 82.36, 0.0, 0.0, 273.99, false);
  607. Teleports::PlaceObject(779917859, 1706.22, 2177.14, 82.48, 0.0, 0.0, 273.99, false);
  608. Teleports::PlaceObject(779917859, 1692.81, 2194.26, 81.29, 0.0, -2.99, 8.49, false);
  609. Teleports::PlaceObject(779917859, 1684.69, 2193.35, 81.0, 0.0, -3.19, 3.49, false);
  610. Teleports::PlaceObject(779917859, 1676.69, 2192.57, 80.51, 0.0, -4.49, 6.20, false);
  611. Teleports::PlaceObject(779917859, 1670.54, 2192.9, 80.9, 0.0, -5.8, 2.46, false);
  612. Vector3 Coords;
  613. Coords.x = 1676.6555f; Coords.y = 2163.5767f; Coords.z = 82.7361f;
  614. Teleports::TPto(Coords);
  615. }
  616. if (Imgui::Option(Language::MazebankWindmill, nullptr))
  617. {
  618. Teleports::PlaceObject(1952396163, -74.6159, -855.3546, 321.3015, -90.0f, 0.0f, 0.0f, true);
  619. Vector3 Coords;
  620. Coords.x = -74.94243f; Coords.y = -818.63446f; Coords.z = 326.174347f;
  621. Teleports::TPto(Coords);
  622. }
  623. if (Imgui::Option(Language::MazeBankDemolition, nullptr))
  624. {
  625. Teleports::PlaceObject(2475986526, -80.9087, -830.357, 325.097, -14.4264, -8.53774, 152.209, -1);
  626. Teleports::PlaceObject(2475986526, -79.2316, -831.297, 325.108, -14.4054, 4.26887, 164.271, -1);
  627. Teleports::PlaceObject(2475986526, -76.7563, -831.549, 325.123, -14.4263, -0, 171.818, -1);
  628. Teleports::PlaceObject(2475986526, -74.2595, -831.691, 325.09, -14.2059, -1.06722, -176.517, -1);
  629. Teleports::PlaceObject(2475986526, -71.9478, -831.257, 325.113, -14.4264, 2.13443, -166.006, -1);
  630. Teleports::PlaceObject(2475986526, -69.5981, -830.542, 325.066, -14.5918, -4.26887, -155.474, -1);
  631. Teleports::PlaceObject(2475986526, -67.4174, -829.035, 325.097, -14.4263, -4.26887, -140.651, -1);
  632. Teleports::PlaceObject(2475986526, -65.7121, -827.409, 325.068, -14.3048, -1.70755, -130.667, -1);
  633. Teleports::PlaceObject(2475986526, -64.2717, -825.422, 325.112, -14.4263, -0, -121.256, -1);
  634. Teleports::PlaceObject(2475986526, -63.2876, -823.434, 325.114, -14.5345, -0, -111.446, -1);
  635. Teleports::PlaceObject(2475986526, -62.4924, -821.128, 325.082, -14.5467, 2.13443, -102.385, -1);
  636. Teleports::PlaceObject(2475986526, -62.233, -818.528, 325.065, -14.6184, -8.00413, -88.1861, -1);
  637. Teleports::PlaceObject(2475986526, -62.8694, -815.926, 325.118, -14.4265, -6.4033, -76.5979, -1);
  638. Teleports::PlaceObject(2475986526, -63.6142, -813.68, 325.112, -14.3655, 8.53774, -66.7885, -1);
  639. Teleports::PlaceObject(2475986526, -64.9883, -811.439, 325.107, -14.4263, 1.28066, -52.8494, -1);
  640. Teleports::PlaceObject(2475986526, -66.5913, -808.328, 325.238, -12.4517, -0, -40.3246, -1);
  641. Teleports::PlaceObject(2475986526, -68.2603, -807.899, 325.336, -13.8689, -0, -33.062, -1);
  642. Teleports::PlaceObject(2475986526, -71.1526, -807.598, 325.153, -12.0416, 4.26887, -28.0523, -1);
  643. Teleports::PlaceObject(2475986526, -73.2853, -806.628, 325.151, -11.7962, -0, -19.1717, -1);
  644. Teleports::PlaceObject(2475986526, -75.2243, -806.286, 325.164, -12.0419, -0, 1.55726, -1);
  645. Teleports::PlaceObject(2475986526, -77.5757, -806.312, 325.088, -14.1843, -0, 12.6263, -1);
  646. Teleports::PlaceObject(2475986526, -79.8704, -807.22, 325.143, -14.049, -4.26887, 21.4769, -1);
  647. Teleports::PlaceObject(2475986526, -82.0222, -807.83, 325.036, -14.1422, -4.26887, 32.7605, -1);
  648. Teleports::PlaceObject(2475986526, -83.8934, -809.424, 325.073, -14.5264, -8.53774, 46.5132, -1);
  649. Teleports::PlaceObject(2475986526, -85.2523, -810.983, 325.043, -14.859, -0, 53.5324, -1);
  650. Teleports::PlaceObject(2475986526, -86.5177, -813.202, 325.089, -14.5267, 4.26887, 64.6634, -1);
  651. Teleports::PlaceObject(2475986526, -87.6645, -815.707, 325.059, -14.8589, 4.26887, 73.157, -1);
  652. Teleports::PlaceObject(2475986526, -87.7973, -817.987, 325.119, -14.8468, -1.33402, 89.3982, -1);
  653. Teleports::PlaceObject(2475986526, -87.5801, -821.034, 325.059, -14.8593, -0, 95.4435, -1);
  654. Teleports::PlaceObject(2475986526, -87.2815, -822.239, 325.126, -15.6308, -4.26887, 100.311, -1);
  655. Teleports::PlaceObject(2475986526, -86.7602, -824.03, 325.044, -15.9224, -0, 116.957, -1);
  656. Teleports::PlaceObject(2475986526, -85.3743, -826.099, 325.136, -15.7025, 2.56132, 124.307, -1);
  657. Teleports::PlaceObject(2475986526, -83.4737, -828.611, 325.076, -15.0688, -0, 132.538, -1);
  658. Teleports::PlaceObject(2475986526, -87.9554, -832.877, 325.894, -14.1563, 4.26887, 132.995, -1);
  659. Teleports::PlaceObject(2475986526, -89.3865, -831.322, 325.887, -14.1562, -0, 126.154, -1);
  660. Teleports::PlaceObject(2475986526, -86.4247, -834.407, 325.915, -14.2701, 4.26887, 143.277, -1);
  661. Teleports::PlaceObject(2475986526, -85.1736, -833.789, 325.653, -14.4072, -4.26887, 145.777, -1);
  662. Teleports::PlaceObject(2475986526, -83.8118, -835.765, 326.063, -12.243, 4.26887, 151.527, -1);
  663. Teleports::PlaceObject(2475986526, -80.7015, -837.145, 326.059, -12.3172, 2.13443, 162.332, -1);
  664. Teleports::PlaceObject(2475986526, -77.6428, -837.649, 326.163, -10.8391, 3.20165, 171.297, -1);
  665. Teleports::PlaceObject(2475986526, -75.479, -837.909, 326.025, -12.3172, -1.06722, 174.574, -1);
  666. Teleports::PlaceObject(2475986526, -73.861, -837.826, 326.061, -12.3173, 5.33609, -176.632, -1);
  667. Teleports::PlaceObject(2475986526, -70.4799, -837.265, 326.09, -12.3173, -0, -166.182, -1);
  668. Teleports::PlaceObject(2475986526, -67.0415, -836.185, 326.018, -12.3171, -0, -156.039, -1);
  669. Teleports::PlaceObject(2475986526, -64.8504, -834.996, 325.951, -11.5263, -0, -145.834, -1);
  670. Teleports::PlaceObject(2475986526, -63.5702, -833.725, 326.1, -11.2947, -0, -140.961, -1);
  671. Teleports::PlaceObject(2475986526, -60.9992, -831.419, 326.075, -11.5262, -4.26887, -130.963, -1);
  672. Teleports::PlaceObject(2475986526, -58.9923, -828.729, 326.116, -11.5262, 4.26887, -121.973, -1);
  673. Teleports::PlaceObject(2475986526, -57.5045, -825.626, 326.114, -11.5263, -0, -110.959, -1);
  674. Teleports::PlaceObject(2475986526, -56.5533, -822.397, 326.08, -11.1311, -6.4033, -102, -1);
  675. Teleports::PlaceObject(2475986526, -56.0911, -820.05, 326.049, -11.0325, 2.13443, -100.794, -1);
  676. Teleports::PlaceObject(2475986526, -56.0681, -818.32, 326.087, -11.1312, -2.66804, -87.9469, -1);
  677. Teleports::PlaceObject(2475986526, -56.2989, -816.237, 326.048, -11.0324, 2.13443, -83.2139, -1);
  678. Teleports::PlaceObject(2475986526, -56.8952, -814.518, 326.142, -11.0324, -2.13443, -76.5476, -1);
  679. Teleports::PlaceObject(2475986526, -58.1209, -811.23, 326.116, -10.9697, -0, -66.7674, -1);
  680. Teleports::PlaceObject(2475986526, -59.0622, -809.17, 326.095, -11.0574, 4.26887, -62.782, -1);
  681. Teleports::PlaceObject(2475986526, -60.096, -807.639, 326.119, -11.5544, -0, -52.7596, -1);
  682. Teleports::PlaceObject(2475986526, -62.081, -805.317, 326.116, -11.1035, -0, -40.7682, -1);
  683. Teleports::PlaceObject(2475986526, -64.1466, -804.55, 326.283, -11.1035, -0, -30.477, -1);
  684. Teleports::PlaceObject(2475986526, -67.9795, -798.8, 326.717, -10.1561, -0, -29.3495, -1);
  685. Teleports::PlaceObject(2475986526, -67.5734, -802.52, 326.262, -10.471, -8.53774, -31.2185, -1);
  686. Teleports::PlaceObject(2475986526, -70.9341, -800.541, 326.198, -10.5317, -0, -20.0064, -1);
  687. Teleports::PlaceObject(2475986526, -75.3309, -801.285, 325.849, -10.2407, -0, 1.58401, -1);
  688. Teleports::PlaceObject(2475986526, -74.0222, -799.865, 326.177, -10.7327, -0, -5.98314, -1);
  689. Teleports::PlaceObject(2475986526, -76.5167, -797.998, 326.32, -12.4969, -2.66804, 1.58883, -1);
  690. Teleports::PlaceObject(2475986526, -79.2787, -800.531, 326.011, -12.9433, 4.26887, 13.0054, -1);
  691. Teleports::PlaceObject(2475986526, -81.6721, -801.017, 325.9, -12.4601, 2.13443, 17.3792, -1);
  692. Teleports::PlaceObject(2475986526, -83.6027, -801.744, 325.971, -12.9433, -0, 26.3052, -1);
  693. Teleports::PlaceObject(2475986526, -85.6586, -802.789, 325.95, -12.8791, 1.28066, 32.5856, -1);
  694. Teleports::PlaceObject(2475986526, -87.5086, -804.25, 325.978, -12.9432, 4.26887, 42.3279, -1);
  695. Teleports::PlaceObject(2475986526, -88.9923, -805.73, 325.89, -11.9333, -4.26887, 46.0613, -1);
  696. Teleports::PlaceObject(2475986526, -90.167, -807.318, 325.946, -13.0244, -0, 53.178, -1);
  697. Teleports::PlaceObject(2475986526, -93.5987, -807.353, 326.343, -11.5713, 4.26887, 60.8753, -1);
  698. Teleports::PlaceObject(2475986526, -93.5166, -813.963, 325.942, -13.4341, -4.26887, 73.0256, -1);
  699. Teleports::PlaceObject(2475986526, -92.121, -810.584, 325.996, -13.4339, -4.26887, 64.9353, -1);
  700. Teleports::PlaceObject(2475986526, -93.9931, -815.866, 325.924, -13.0519, -0, 79.5966, -1);
  701. Teleports::PlaceObject(2475986526, -93.8716, -817.904, 325.988, -13.4339, -0, 88.8361, -1);
  702. Teleports::PlaceObject(2475986526, -93.7912, -821.777, 325.946, -13.6946, -2.66804, 91.1427, -1);
  703. Teleports::PlaceObject(2475986526, -93.2951, -823.554, 325.966, -13.157, -0, 101.424, -1);
  704. Teleports::PlaceObject(2475986526, -92.5757, -827.033, 325.87, -13.5323, -0, 104.668, -1);
  705. Teleports::PlaceObject(2475986526, -91.53, -828.342, 325.842, -14.1563, 4.26887, 120.328, -1);
  706. Teleports::PlaceObject(2475986526, -90.5203, -829.611, 325.936, -14.1563, -0, 124.573, -1);
  707. Teleports::PlaceObject(2475986526, -95.5355, -833.068, 327.049, -9.63525, 1.70755, 124.512, -1);
  708. Teleports::PlaceObject(2475986526, -94.2445, -835.1, 326.976, -9.27617, -1.28066, 128.396, -1);
  709. Teleports::PlaceObject(2475986526, -92.513, -837.087, 327.008, -9.63523, -4.26887, 132.871, -1);
  710. Teleports::PlaceObject(2475986526, -90.07, -839.341, 327.025, -9.63574, 4.26887, 143.545, -1);
  711. Teleports::PlaceObject(2475986526, -86.7336, -841.135, 327.284, -9.63566, -0, 150.983, -1);
  712. Teleports::PlaceObject(2475986526, -84.8343, -842.167, 327.254, -9.36742, -4.26887, 152.377, -1);
  713. Teleports::PlaceObject(2475986526, -90.0883, -842.661, 327.589, -7.98782, -8.53774, 146.409, -1);
  714. Teleports::PlaceObject(2475986526, -82.595, -843.001, 327.277, -9.6352, -0, 161.654, -1);
  715. Teleports::PlaceObject(2475986526, -80.8027, -843.618, 327.263, -9.36755, -2.13443, 165.215, -1);
  716. Teleports::PlaceObject(2475986526, -78.5619, -843.703, 327.458, -9.63545, -2.13443, 171.015, -1);
  717. Teleports::PlaceObject(2475986526, -76.2479, -844.026, 327.261, -9.36765, 1.06722, 175.986, -1);
  718. Teleports::PlaceObject(2475986526, -73.5382, -843.999, 327.285, -9.6355, -0, -177.212, -1);
  719. Teleports::PlaceObject(2475986526, -71.2047, -843.988, 327.3, -9.36764, -1.06722, -172.013, -1);
  720. Teleports::PlaceObject(2475986526, -69.036, -843.266, 327.309, -9.63525, 4.26887, -166.686, -1);
  721. Teleports::PlaceObject(2475986526, -67.2981, -840.996, 326.756, -9.37509, -2.13443, -159.014, -1);
  722. Teleports::PlaceObject(2475986526, -66.7067, -842.714, 327.222, -9.37501, 2.13443, -159.27, -1);
  723. Teleports::PlaceObject(2475986526, -64.5693, -841.792, 327.24, -9.63515, 4.26887, -156.16, -1);
  724. Teleports::PlaceObject(2475986526, -61.8874, -840.436, 327.231, -9.37483, 4.26887, -146.534, -1);
  725. Teleports::PlaceObject(2475986526, -59.7118, -838.501, 327.384, -9.63533, -0, -141.372, -1);
  726. Teleports::PlaceObject(2475986526, -57.9491, -837.16, 327.309, -9.37471, 4.26887, -135.839, -1);
  727. Teleports::PlaceObject(2475986526, -56.3494, -835.471, 327.34, -9.63578, 4.26887, -131.675, -1);
  728. Teleports::PlaceObject(2475986526, -54.9387, -833.93, 327.334, -9.37482, -0, -127.887, -1);
  729. Teleports::PlaceObject(2475986526, -53.727, -832.032, 327.367, -9.63521, -4.26887, -122.142, -1);
  730. Teleports::PlaceObject(2475986526, -52.5928, -830.077, 327.332, -9.37496, -0, -116.843, -1);
  731. Teleports::PlaceObject(2475986526, -51.7552, -827.819, 327.385, -9.63569, 6.4033, -111.077, -1);
  732. Teleports::PlaceObject(2475986526, -51.0061, -825.839, 327.369, -9.37494, 4.26887, -107.054, -1);
  733. Teleports::PlaceObject(2475986526, -50.5468, -823.622, 327.378, -9.63572, 4.26887, -101.598, -1);
  734. Teleports::PlaceObject(2475986526, -50.0992, -820.896, 327.345, -9.47333, -1.06722, -95.7976, -1);
  735. Teleports::PlaceObject(2475986526, -49.9295, -818.102, 327.381, -9.63531, -8.00413, -88.2146, -1);
  736. Teleports::PlaceObject(2475986526, -50.1895, -815.816, 327.358, -9.4734, -0, -82.8649, -1);
  737. Teleports::PlaceObject(2475986526, -50.9164, -813.132, 327.442, -9.63524, 2.13443, -76.865, -1);
  738. Teleports::PlaceObject(2475986526, -51.1585, -811.568, 327.373, -9.58574, -0, -69.3402, -1);
  739. Teleports::PlaceObject(2475986526, -52.0622, -809.533, 327.354, -9.63541, 2.13443, -65.7624, -1);
  740. Teleports::PlaceObject(2475986526, -53.4048, -806.624, 327.376, -9.63526, 2.13443, -65.3971, -1);
  741. Teleports::PlaceObject(2475986526, -55.2978, -803.815, 327.389, -9.63524, 4.26887, -52.2107, -1);
  742. Teleports::PlaceObject(2475986526, -56.5179, -802.266, 327.366, -9.51013, 4.26887, -50.6537, -1);
  743. Teleports::PlaceObject(2475986526, -57.9995, -800.68, 327.42, -9.6353, 1.28066, -41.7027, -1);
  744. Teleports::PlaceObject(2475986526, -61.0278, -799.404, 327.549, -9.63516, 8.53774, -31.016, -1);
  745. Teleports::PlaceObject(2475986526, -64.37, -797.284, 327.603, -9.6351, -0, -31.6732, -1);
  746. Teleports::PlaceObject(2475986526, -66.3998, -795.965, 327.526, -9.42422, 8.53773, -29.018, -1);
  747. Teleports::PlaceObject(2475986526, -68.8079, -794.744, 327.535, -9.63558, -2.13443, -20.0341, -1);
  748. Teleports::PlaceObject(2475986526, -72.1225, -793.825, 327.497, -9.57894, -2.13443, -12.2336, -1);
  749. Teleports::PlaceObject(2475986526, -75.6415, -795.169, 327.2, -9.63555, -1.60083, 2.8097, -1);
  750. Teleports::PlaceObject(2475986526, -77.9613, -794.235, 327.223, -8.9769, -5.33608, 4.53814, -1);
  751. Teleports::PlaceObject(2475986526, -75.3695, -789.507, 328.306, -8.84722, -8.33763, -0.0879073, -1);
  752. Teleports::PlaceObject(2475986526, -80.6908, -794.505, 327.217, -9.63537, 4.26887, 13.0745, -1);
  753. Teleports::PlaceObject(2475986526, -83.5673, -795.148, 327.101, -9.92985, 2.13443, 17.5819, -1);
  754. Teleports::PlaceObject(2475986526, -86.3087, -796.203, 327.177, -9.63542, -4.26887, 25.9296, -1);
  755. Teleports::PlaceObject(2475986526, -88.9655, -797.634, 327.118, -9.92994, -4.26887, 33.0571, -1);
  756. Teleports::PlaceObject(2475986526, -91.6251, -799.702, 327.176, -9.63539, -0, 42.2513, -1);
  757. Teleports::PlaceObject(2475986526, -93.414, -801.299, 327.124, -9.92995, -0, 48.7085, -1);
  758. Teleports::PlaceObject(2475986526, -95.1453, -803.637, 327.147, -9.63537, -8.53774, 53.6544, -1);
  759. Teleports::PlaceObject(2475986526, -96.5885, -805.701, 327.144, -9.8947, -0, 60.5096, -1);
  760. Teleports::PlaceObject(2475986526, -97.6945, -807.971, 327.174, -9.63569, 4.26887, 64.7568, -1);
  761. Teleports::PlaceObject(2475986526, -98.7075, -809.885, 327.026, -8.13758, -0, 67.8881, -1);
  762. Teleports::PlaceObject(2475986526, -99.394, -812.176, 327.105, -9.63525, -4.26887, 73.0223, -1);
  763. Teleports::PlaceObject(2475986526, -100.025, -814.868, 327.097, -9.97277, 2.13443, 83.1537, -1);
  764. Teleports::PlaceObject(2475986526, -100.012, -817.789, 327.15, -9.63535, -1.33402, 88.8234, -1);
  765. Teleports::PlaceObject(2475986526, -100.069, -819.76, 327.099, -9.95297, -1.33402, 90.8729, -1);
  766. Teleports::PlaceObject(2475986526, -99.969, -821.91, 327.11, -9.63541, -2.66804, 91.5501, -1);
  767. Teleports::PlaceObject(2475986526, -99.3358, -824.801, 327.138, -9.63539, 2.13443, 101.678, -1);
  768. Teleports::PlaceObject(2475986526, -98.5443, -828.598, 327.033, -9.63553, -0, 104.64, -1);
  769. Teleports::PlaceObject(2475986526, -97.0896, -831.054, 326.937, -10.0741, 4.26887, 118.72, -1);
  770. Teleports::PlaceObject(2475986526, -102.435, -833.952, 328.506, -5.26399, -0, 118.502, -1);
  771. Teleports::PlaceObject(2475986526, -103.536, -831.932, 328.513, -5.42142, 4.26887, 111.099, -1);
  772. Teleports::PlaceObject(2475986526, -100.644, -836.571, 328.636, -5.26398, -0, 124.006, -1);
  773. Teleports::PlaceObject(2475986526, -99.0448, -838.912, 328.589, -5.26395, -2.13443, 128.175, -1);
  774. Teleports::PlaceObject(2475986526, -96.9401, -841.184, 328.589, -5.26384, -2.13443, 132.615, -1);
  775. Teleports::PlaceObject(2475986526, -95.4409, -842.718, 328.551, -5.01006, -2.13443, 136.57, -1);
  776. Teleports::PlaceObject(2475986526, -93.6584, -844.231, 328.606, -5.26388, -0, 143.429, -1);
  777. Teleports::PlaceObject(2475986526, -92.1044, -845.82, 328.655, -5.01307, -2.13443, 147.428, -1);
  778. Teleports::PlaceObject(2475986526, -89.6061, -846.328, 328.851, -5.26389, -0, 150.62, -1);
  779. Teleports::PlaceObject(2475986526, -87.5884, -847.552, 328.829, -5.6777, -0, 153.36, -1);
  780. Teleports::PlaceObject(2475986526, -84.5215, -848.802, 328.867, -5.26405, 5.33608, 161.164, -1);
  781. Teleports::PlaceObject(2475986526, -81.9779, -849.605, 328.821, -5.67769, 1.06722, 166.961, -1);
  782. Teleports::PlaceObject(2475986526, -79.5282, -849.717, 329.046, -5.26392, 1.06722, 170.517, -1);
  783. Teleports::PlaceObject(2475986526, -76.7555, -850.113, 328.885, -4.93224, 2.66804, 175.995, -1);
  784. Teleports::PlaceObject(2475986526, -73.2336, -850.06, 328.883, -5.26397, -0, -177.431, -1);
  785. Teleports::PlaceObject(2475986526, -70.4067, -849.836, 328.854, -4.82287, -5.33608, -172.2, -1);
  786. Teleports::PlaceObject(2475986526, -67.6252, -849.166, 328.911, -5.26394, -0, -166.741, -1);
  787. Teleports::PlaceObject(2475986526, -64.6525, -848.331, 328.792, -4.82267, -2.13443, -160.74, -1);
  788. Teleports::PlaceObject(2475986526, -62.1086, -847.355, 328.837, -5.26389, 2.13443, -156.346, -1);
  789. Teleports::PlaceObject(2475986526, -60.2755, -846.895, 328.808, -5.97307, -2.13443, -151.031, -1);
  790. Teleports::PlaceObject(2475986526, -58.5152, -845.543, 328.833, -5.26392, 1.06722, -147.129, -1);
  791. Teleports::PlaceObject(2475986526, -55.9339, -843.258, 328.987, -5.26394, 2.13443, -141.8, -1);
  792. Teleports::PlaceObject(2475986526, -53.6636, -841.564, 328.905, -5.18348, -0, -136.192, -1);
  793. Teleports::PlaceObject(2475986526, -51.8013, -839.526, 328.926, -5.26393, -2.13443, -131.788, -1);
  794. Teleports::PlaceObject(2475986526, -49.9112, -837.51, 328.916, -5.18352, -8.53774, -125.894, -1);
  795. Teleports::PlaceObject(2475986526, -48.5833, -835.261, 328.968, -5.26388, 2.13443, -122.598, -1);
  796. Teleports::PlaceObject(2475986526, -47.1369, -832.806, 328.936, -5.18352, -0, -117.146, -1);
  797. Teleports::PlaceObject(2475986526, -46.1092, -830.019, 328.985, -5.26389, -0, -111.097, -1);
  798. Teleports::PlaceObject(2475986526, -45.2549, -827.659, 328.957, -5.18353, -1.06722, -105.915, -1);
  799. Teleports::PlaceObject(2475986526, -44.5598, -824.856, 328.973, -5.26387, -0, -101.582, -1);
  800. Teleports::PlaceObject(2475986526, -44.0346, -821.522, 328.953, -5.26387, 5.33608, -95.978, -1);
  801. Teleports::PlaceObject(2475986526, -43.8673, -817.92, 328.98, -5.26387, -4.00206, -88.1556, -1);
  802. Teleports::PlaceObject(2475986526, -44.1983, -815.072, 328.956, -5.26387, -0, -82.8806, -1);
  803. Teleports::PlaceObject(2475986526, -45.0463, -811.788, 329.021, -5.26392, -0, -77.2513, -1);
  804. Teleports::PlaceObject(2475986526, -45.6154, -809.566, 328.95, -5.25705, -2.13443, -72.2094, -1);
  805. Teleports::PlaceObject(2475986526, -46.5685, -807.149, 328.929, -5.26395, -2.13443, -66.9958, -1);
  806. Teleports::PlaceObject(2475986526, -47.9752, -804.122, 328.959, -5.26398, -0, -65.1505, -1);
  807. Teleports::PlaceObject(2475986526, -49.0785, -802.078, 328.914, -5.31539, 4.26887, -57.7224, -1);
  808. Teleports::PlaceObject(2475986526, -50.5092, -800.141, 328.99, -5.26406, -0, -52.4683, -1);
  809. Teleports::PlaceObject(2475986526, -52.041, -798.134, 329.001, -5.31536, -2.13443, -49.2493, -1);
  810. Teleports::PlaceObject(2475986526, -53.8808, -796.134, 329.041, -5.26389, -0, -42.3308, -1);
  811. Teleports::PlaceObject(2475986526, -55.4375, -794.682, 329.045, -5.32055, 2.13443, -37.3601, -1);
  812. Teleports::PlaceObject(2475986526, -57.7537, -794.2, 329.16, -5.26393, 2.13443, -32.2267, -1);
  813. Teleports::PlaceObject(2475986526, -61.0299, -792.042, 329.172, -5.26389, -2.13443, -32.1174, -1);
  814. Teleports::PlaceObject(2475986526, -63.5163, -790.736, 329.085, -5.04535, -4.26887, -29.2933, -1);
  815. Teleports::PlaceObject(2475986526, -64.7324, -789.882, 329.081, -4.987, -2.13443, -27.7917, -1);
  816. Teleports::PlaceObject(2475986526, -66.7775, -788.94, 329.155, -5.04558, 1.06722, -19.5666, -1);
  817. Teleports::PlaceObject(2475986526, -68.6555, -788.272, 329.103, -5.30654, 3.20165, -16.9146, -1);
  818. Teleports::PlaceObject(2475986526, -70.8259, -787.837, 329.128, -5.04546, 1.06722, -12.2941, -1);
  819. Teleports::PlaceObject(2475986526, -74.5572, -787.022, 329.08, -4.61724, 1.06722, -10.7316, -1);
  820. Teleports::PlaceObject(2475986526, -75.8754, -788.646, 328.671, -6.78921, -0, 2.98721, -1);
  821. Teleports::PlaceObject(2475986526, -78.4, -788.132, 328.83, -5.91899, 2.66804, 3.75875, -1);
  822. Teleports::PlaceObject(2475986526, -80.5351, -788.179, 328.782, -5.80051, -0, 7.26539, -1);
  823. Teleports::PlaceObject(2475986526, -82.1189, -788.558, 328.793, -5.9192, 1.06722, 12.7168, -1);
  824. Teleports::PlaceObject(2475986526, -85.4054, -789.317, 328.666, -5.79433, -0, 17.1877, -1);
  825. Teleports::PlaceObject(2475986526, -87.4651, -789.98, 328.647, -5.63204, -0, 20.2315, -1);
  826. Teleports::PlaceObject(2475986526, -88.9795, -790.697, 328.76, -5.79416, -0, 25.9501, -1);
  827. Teleports::PlaceObject(2475986526, -90.9922, -791.487, 328.684, -6.26149, -0, 27.0819, -1);
  828. Teleports::PlaceObject(2475986526, -92.3298, -792.474, 328.677, -5.79412, -0, 33.3113, -1);
  829. Teleports::PlaceObject(2475986526, -94.2322, -793.73, 328.669, -5.58479, -2.13443, 37.4974, -1);
  830. Teleports::PlaceObject(2475986526, -95.7282, -795.2, 328.764, -5.79431, -0, 41.8672, -1);
  831. Teleports::PlaceObject(2475986526, -97.9782, -797.316, 328.695, -5.58488, -0, 48.9171, -1);
  832. Teleports::PlaceObject(2475986526, -100.042, -800.063, 328.731, -5.79425, 2.13443, 53.7039, -1);
  833. Teleports::PlaceObject(2475986526, -101.884, -802.718, 328.706, -5.5848, 2.13443, 60.3613, -1);
  834. Teleports::PlaceObject(2475986526, -103.09, -805.421, 328.718, -5.79425, -0, 64.506, -1);
  835. Teleports::PlaceObject(2475986526, -104.284, -807.711, 328.691, -5.58488, -2.13443, 65.966, -1);
  836. Teleports::PlaceObject(2475986526, -105.262, -810.369, 328.729, -5.26384, 1.06722, 73.2414, -1);
  837. Teleports::PlaceObject(2475986526, -105.769, -812.146, 328.645, -5.25205, -1.06722, 75.8091, -1);
  838. Teleports::PlaceObject(2475986526, -106.155, -814.128, 328.687, -5.26388, -1.06722, 82.8157, -1);
  839. Teleports::PlaceObject(2475986526, -106.062, -817.685, 328.758, -5.26388, 2.66804, 88.7458, -1);
  840. Teleports::PlaceObject(2475986526, -106.154, -819.723, 328.716, -5.25204, -0, 90.1628, -1);
  841. Teleports::PlaceObject(2475986526, -106.082, -822.072, 328.729, -5.26387, -1.33402, 91.2972, -1);
  842. Teleports::PlaceObject(2475986526, -105.911, -823.815, 328.7, -5.52135, 5.33608, 99.4393, -1);
  843. Teleports::PlaceObject(2475986526, -105.28, -826.029, 328.734, -5.26391, 1.06722, 101.615, -1);
  844. Teleports::PlaceObject(2475986526, -105.06, -827.904, 328.644, -5.29978, 1.06722, 102.515, -1);
  845. Teleports::PlaceObject(2475986526, -104.327, -830.112, 328.614, -5.26391, -2.13443, 104.719, -1);
  846. Teleports::PlaceObject(3291218330, -108.551, -853.416, 327.387, 2.94456, 89.1111, -166.155, -1);
  847. Teleports::PlaceObject(3291218330, -80.2509, -866.418, 327.301, 3.7405, 89.3, 146.641, -1);
  848. Teleports::PlaceObject(3291218330, -55.8513, -863.921, 327.333, 6.87468, 89.6184, 149.776, -1);
  849. Teleports::PlaceObject(3291218330, -37.3907, -848.122, 327.717, 2.33633, 88.8797, -16.2595, -1);
  850. Teleports::PlaceObject(3291218330, -26.1908, -818.332, 328.76, 0.490556, 84.6598, -18.107, -1);
  851. Teleports::PlaceObject(3291218330, -37.891, -789.138, 328.134, 1.11673, 87.6571, 42.7186, -1);
  852. Teleports::PlaceObject(3291218330, -63.492, -772.044, 327.866, 3.09962, 89.1556, 44.702, -1);
  853. Teleports::PlaceObject(3291218330, -93.4916, -774.848, 327.398, 2.73771, 89.0443, 122.539, -1);
  854. Teleports::PlaceObject(3291218330, -115.991, -795.259, 327.27, 3.28432, 89.2033, 123.086, -1);
  855. Teleports::PlaceObject(3291218330, -122.551, -825.074, 327.213, 173.37, 89.6048, 4.27077, -1);
  856. Teleports::PlaceObject(118627012, -74.8438, -819.617, 323.685, 0, 0, -3.37511, -1);
  857. Teleports::PlaceObject(2475986526, -67.6253, -820.244, 323.793, -14.4263, -8.53774, -100.02, -1);
  858. Vector3 Coords;
  859. Coords.x = -74.94243f; Coords.y = -818.63446f; Coords.z = 326.174347f;
  860. Teleports::TPto(Coords);
  861. }
  862. if (Imgui::Option(Language::MazeBankRoofRamp, nullptr))
  863. {
  864. Teleports::PlaceObject(1600026313, -78.4864, -807.943, 323.202, 109.364, -89.9209, 0, -1);
  865. Teleports::PlaceObject(1600026313, -79.2766, -805.701, 323.204, 109.364, -89.9209, 0, -1);
  866. Teleports::PlaceObject(1600026313, -79.8373, -803.709, 323.205, 109.364, -89.9209, 0, -1);
  867. Teleports::PlaceObject(1600026313, -80.4295, -801.947, 323.207, 109.364, -89.9209, 0, -1);
  868. Teleports::PlaceObject(4143853297, -97.4731, -778.557, 308.877, 0, -0, -159.831, -1);
  869. Teleports::PlaceObject(1087520462, -84.2429, -793.182, 321.08, -63.5625, -0, -160.249, -1);
  870. Teleports::PlaceObject(1087520462, -83.5429, -795.106, 322.073, -63.5625, -0, -160.249, -1);
  871. Teleports::PlaceObject(1087520462, -84.9429, -791.108, 319.956, -62.6673, 8.53774e-007, -160.249, -1);
  872. Teleports::PlaceObject(1087520462, -85.8122, -788.585, 318.638, -63.5625, -0, -160.249, -1);
  873. Teleports::PlaceObject(1087520462, -89.1589, -779.487, 313.336, -59.5389, 0.0405551, -160.567, -1);
  874. Teleports::PlaceObject(1087520462, -90.7065, -774.863, 310.09, -57.4959, 0.322988, -160.758, -1);
  875. Teleports::PlaceObject(1087520462, -91.4887, -772.564, 308.403, -55.1692, 0.383369, -161.049, -1);
  876. Teleports::PlaceObject(1087520462, -91.7565, -771.74, 307.844, -56.4466, 0.0442451, -160.565, -1);
  877. Teleports::PlaceObject(1087520462, -93.6941, -766.245, 302.736, -45.9996, 0.0556114, -160.556, -1);
  878. Teleports::PlaceObject(1087520462, -94.2969, -764.648, 301.067, -44.7623, -1.70755e-006, -159.354, -1);
  879. Teleports::PlaceObject(1087520462, -94.2969, -764.648, 301.067, -44.7623, -1.70755e-006, -159.354, -1);
  880. Teleports::PlaceObject(1087520462, -94.886, -762.996, 298.741, -36.7051, -0, -159.354, -1);
  881. Teleports::PlaceObject(1087520462, -95.4855, -761.334, 296.406, -36.7051, -0, -159.354, -1);
  882. Teleports::PlaceObject(1087520462, -95.4855, -761.334, 296.406, -36.7051, -0, -159.354, -1);
  883. Teleports::PlaceObject(1087520462, -96.1606, -759.499, 294.259, -42.0766, -0, -159.354, -1);
  884. Teleports::PlaceObject(1087520462, -96.0707, -759.689, 293.709, -36.7051, -0, -159.354, -1);
  885. Teleports::PlaceObject(1087520462, -96.0707, -759.689, 293.709, -36.7051, -0, -159.354, -1);
  886. Teleports::PlaceObject(1087520462, -96.0707, -759.689, 293.46, -36.7051, -0, -159.354, -1);
  887. Teleports::PlaceObject(1087520462, -96.8807, -757.391, 292.506, -51.0291, -8.53774e-007, -159.354, -1);
  888. Teleports::PlaceObject(1087520462, -96.8807, -757.391, 292.506, -51.0291, -8.53774e-007, -159.354, -1);
  889. Teleports::PlaceObject(1087520462, -97.3203, -756.159, 291.688, -57.2958, -0, -159.354, -1);
  890. Teleports::PlaceObject(1087520462, -97.9597, -754.358, 290.78, -62.6673, 8.53774e-007, -160.249, -1);
  891. Teleports::PlaceObject(1087520462, -97.9597, -754.358, 290.78, -62.6673, 8.53774e-007, -160.249, -1);
  892. Teleports::PlaceObject(1087520462, -98.7192, -752.356, 290.042, -69.9278, 3.20165e-005, -160.249, -1);
  893. Teleports::PlaceObject(1087520462, -99.0244, -751.684, 290.499, -90, -8.46346e-007, -160.249, -1);
  894. Teleports::PlaceObject(1087520462, -99.3223, -750.534, 290.479, -90, -8.46346e-007, -160.249, -1);
  895. Teleports::PlaceObject(1087520462, -100.348, -747.881, 290.452, -89.5256, -1.33402e-008, -159.354, -1);
  896. Teleports::PlaceObject(1087520462, -100.26, -748.154, 290.462, -76.096, 4.26887e-007, 19.6954, -1);
  897. Teleports::PlaceObject(1087520462, -100.687, -747.053, 290.731, -62.6673, -8.53774e-007, 20.5907, -1);
  898. Teleports::PlaceObject(1087520462, -101.346, -745.387, 291.611, -58.191, 1.70755e-006, 19.6954, -1);
  899. Teleports::PlaceObject(1087520462, -102.234, -743.119, 293.091, -52.2249, 0.00051141, 21.3426, -1);
  900. Teleports::PlaceObject(2475986526, -102.154, -739.285, 294.83, 9.80014, 0.295618, 18.7802, -1);
  901. Teleports::PlaceObject(2475986526, -105.054, -740.282, 294.827, 9.80014, 0.295618, 18.7802, -1);
  902. Teleports::PlaceObject(1087520462, -103.071, -741.047, 294.832, -48.0666, 0.000519094, 21.3419, -1);
  903. Teleports::PlaceObject(1087520462, -103.75, -739.405, 296.413, -45.1472, 0.000547269, 21.3416, -1);
  904. Teleports::PlaceObject(4143853297, -90.3515, -798.112, 319.893, 0, -0, -159.831, -1);
  905. Teleports::PlaceObject(4143853297, -93.2293, -790.348, 317.189, 0, -0, -159.831, -1);
  906. Teleports::PlaceObject(4143853297, -95.3479, -784.483, 313.696, 0, -0, -159.831, -1);
  907. Teleports::PlaceObject(4143853297, -100.01, -771.31, 304.367, 0, -0, -159.831, -1);
  908. Teleports::PlaceObject(4143853297, -101.829, -766.277, 299.666, 0, -0, -159.831, -1);
  909. Teleports::PlaceObject(4143853297, -103.318, -762.175, 293.966, 0, -0, -159.831, -1);
  910. Teleports::PlaceObject(4143853297, -104.948, -757.681, 288.866, 0, -0, -159.831, -1);
  911. Teleports::PlaceObject(4143853297, -108.146, -748.798, 288.866, 0, -0, -159.831, -1);
  912. Teleports::PlaceObject(4143853297, -108.146, -748.798, 295.608, 0, -0, -159.831, -1);
  913. Teleports::PlaceObject(4143853297, -108.225, -748.694, 302.608, 0, -0, -159.831, -1);
  914. Teleports::PlaceObject(3167053133, -103.451, -740.541, 307.317, -0.900199, -1.19985, 20.9076, -1);
  915. Teleports::PlaceObject(2375650849, -102.454, -742.6, 309.309, 0, 0, 20.9393, -1);
  916. Teleports::PlaceObject(4143853297, -101.483, -746.044, 305.602, 0, -0, -159.831, -1);
  917. Teleports::PlaceObject(4143853297, -94.7458, -743.402, 295.608, 0, -0, -159.831, -1);
  918. Teleports::PlaceObject(4143853297, -94.7566, -743.406, 288.866, 0, -0, -159.831, -1);
  919. Teleports::PlaceObject(4143853297, -94.7426, -743.595, 302.651, 0, -0, -159.831, -1);
  920. Teleports::PlaceObject(1157292806, -99.7732, -750.516, 309.575, 0, 0, 24.1761, -1);
  921. Teleports::PlaceObject(4143853297, -89.9785, -756.476, 293.966, 0, -0, -159.831, -1);
  922. Teleports::PlaceObject(4143853297, -91.5378, -752.285, 288.866, 0, -0, -159.831, -1);
  923. Teleports::PlaceObject(4143853297, -87.9094, -762.07, 299.666, 0, -0, -159.831, -1);
  924. Teleports::PlaceObject(4143853297, -86.2094, -766.939, 304.367, 0, -0, -159.831, -1);
  925. Teleports::PlaceObject(4143853297, -84.0215, -772.971, 309.575, 0, -0, -159.831, -1);
  926. Teleports::PlaceObject(4143853297, -81.6733, -779.348, 313.696, 0, -0, -159.831, -1);
  927. Teleports::PlaceObject(4143853297, -79.5187, -785.083, 317.189, 0, -0, -159.831, -1);
  928. Teleports::PlaceObject(4143853297, -76.5616, -793.191, 319.493, 0, -0, -159.831, -1);
  929. Teleports::PlaceObject(1998517203, -81.0993, -790.139, 326.57, 0, 0, -82.6177, -1);
  930. Teleports::PlaceObject(1998517203, -88.8988, -792.911, 326.95, 0, 0, -82.6177, -1);
  931. Teleports::PlaceObject(803874239, -88.3376, -794.173, 327.042, 0, 0, 31.5501, -1);
  932. Teleports::PlaceObject(803874239, -90.0376, -795.174, 327.262, 0, 0, 31.5501, -1);
  933. Teleports::PlaceObject(803874239, -91.6375, -796.175, 327.482, 0, 0, 31.5501, -1);
  934. Teleports::PlaceObject(803874239, -79.0283, -791.31, 326.763, 0, -0, 100.953, -1);
  935. Teleports::PlaceObject(803874239, -76.8377, -790.87, 326.823, 0, -0, 100.953, -1);
  936. Teleports::PlaceObject(803874239, -81.0088, -791.22, 326.713, 0, -0, 100.953, -1);
  937. Vector3 Coords;
  938. Coords.x = -74.94243f; Coords.y = -818.63446f; Coords.z = 326.174347f;
  939. Teleports::TPto(Coords);
  940. }
  941. if (Imgui::Option(Language::BeachFerrisRamp, nullptr))
  942. {
  943. Teleports::PlaceObject(1952396163, -1497.76, -1113.84, -3.08, -90, 6.14715e-007, 165.792, -1);
  944. Teleports::PlaceObject(2475986526, -1461.92, -1216.88, 2.5836, -2.3048, -0, -154.878, -1);
  945. Teleports::PlaceObject(3291218330, -1465.62, -1217.64, 18, 166.516, -5.12264e-006, 24.1717, -1);
  946. Teleports::PlaceObject(3291218330, -1458.89, -1214.4, 18, -38.4956, 8.53774e-007, -153.982, -1);
  947. Teleports::PlaceObject(2475986526, -1460.32, -1219.97, 4.3801, 12.6953, -0, -154.878, -1);
  948. Teleports::PlaceObject(2475986526, -1457, -1226.67, 11.8772, 31.7229, -0, -154.382, -1);
  949. Teleports::PlaceObject(2475986526, -1458.4, -1223.77, 7.9937, 23.6001, -0.0916355, -154.918, -1);
  950. Teleports::PlaceObject(2475986526, -1456.4, -1228.27, 14.9608, 48.674, -0, -153.982, -1);
  951. Teleports::PlaceObject(2475986526, -1456, -1229.07, 19.7441, 68.6628, -0, -153.982, -1);
  952. Teleports::PlaceObject(2475986526, -1456.2, -1228.47, 24.8276, 82.6252, 3.80938, -152.828, -1);
  953. Teleports::PlaceObject(2475986526, -1456.9, -1226.47, 28.9111, 108.498, -8.51368, -157.244, -1);
  954. Teleports::PlaceObject(2475986526, -1458.59, -1223.37, 31.5945, 130.616, -4.72983, -155.087, -1);
  955. Teleports::PlaceObject(2475986526, -1460.59, -1218.38, 33.5779, 143.744, -3.95611, -152.581, -1);
  956. Teleports::PlaceObject(2475986526, -1462.79, -1214.28, 34.161, 163.63, -2.68302, -155.763, -1);
  957. Teleports::PlaceObject(2475986526, -1465.3, -1209.78, 32.5228, -172.187, 4.69576e-006, -152.192, -1);
  958. Teleports::PlaceObject(2475986526, -1465.3, -1209.78, 32.5228, -172.187, 4.69576e-006, -152.192, -1);
  959. Teleports::PlaceObject(2475986526, -1466.9, -1205.68, 29.0062, -155.178, 9.47689e-005, -153.087, -1);
  960. Teleports::PlaceObject(2475986526, -1468.3, -1202.98, 24.1897, -131.11, 6.74481e-005, -153.088, -1);
  961. Teleports::PlaceObject(2475986526, -1468.59, -1202.68, 19.3732, -107.429, 3.07358e-005, -153.087, -1);
  962. Teleports::PlaceObject(2475986526, -1467.99, -1203.88, 13.5732, -89.6528, -0.153235, -155.853, -1);
  963. Teleports::PlaceObject(2475986526, -1467.11, -1205.68, 10.7072, -63.5491, 8.53774e-007, -156.504, -1);
  964. Teleports::PlaceObject(4109455646, -1465.05, -1210.03, 7.9503, 9.53319, 1.38057, 24.2606, -1);
  965. Teleports::PlaceObject(2975320548, -1460.95, -1218.79, 7.66, -29.9323, -0.173323, 24.7221, -1);
  966. Teleports::PlaceObject(2975320548, -1463.05, -1214.19, 6.7879, -6.50192, 1.391, 24.2651, -1);
  967. Vector3 Coords;
  968. Coords.x = -1513.0f; Coords.y = -1192.0f; Coords.z = 1.0f;
  969. Teleports::TPto(Coords);
  970. }
  971. if (Imgui::Option(Language::AirportMiniRamp, nullptr))
  972. {
  973. Teleports::PlaceObject(2475986526, -1242.08, -2931.15, 12.9924, -0.1046, -3.33505e-009, 61.0607, -1);
  974. Teleports::PlaceObject(2475986526, -1247.11, -2928.46, 15.013, -0.1046, -3.33505e-009, 61.0607, -1);
  975. Teleports::PlaceObject(2475986526, -1251.58, -2926.05, 16.7865, -0.1046, -3.33505e-009, 61.0607, -1);
  976. Teleports::PlaceObject(2475986526, -1254.69, -2924.35, 18.25, -0.1046, -3.33505e-009, 61.0607, -1);
  977. Teleports::PlaceObject(3966705493, -1276.69, -2912.99, 23.0019, 0, 0.05, 60.9705, -1);
  978. Teleports::PlaceObject(2475986526, -1258.35, -2922.28, 20.2135, -0.1046, -3.33505e-009, 61.0607, -1);
  979. Teleports::PlaceObject(3966705493, -1270.89, -2916.22, 23.0123, 0, 0, 60.8909, -1);
  980. Teleports::PlaceObject(3966705493, -1270.25, -2914.99, 23.0137, 0, 0, 60.8909, -1);
  981. Teleports::PlaceObject(3966705493, -1274.87, -2909.4, 23.0049, 0, 0.05, 60.9705, -1);
  982. Teleports::PlaceObject(3966705493, -1269.01, -2912.64, 22.9993, 0, 0.05, 60.9705, -1);
  983. Teleports::PlaceObject(3966705493, -1267.87, -2915.44, 28.3632, 0, -0, 147.299, -1);
  984. Teleports::PlaceObject(3966705493, -1272.13, -2918.33, 28.4791, 0, 0.05, 60.9705, -1);
  985. Teleports::PlaceObject(3966705493, -1272.11, -2918.35, 25.6708, -0.48, 0.0499982, 60.9701, -1);
  986. Teleports::PlaceObject(3966705493, -1277.93, -2915.14, 25.604, 0, 0.05, 60.9705, -1);
  987. Teleports::PlaceObject(3966705493, -1279.69, -2909.85, 25.6358, 0, -0, -151.239, -1);
  988. Teleports::PlaceObject(3966705493, -1279.69, -2909.85, 28.4844, 0, -0, -151.239, -1);
  989. Teleports::PlaceObject(2475986526, -1261.82, -2920.38, 21.767, -0.1046, -3.33505e-009, 61.0607, -1);
  990. Teleports::PlaceObject(3966705493, -1273.65, -2907.11, 22.9763, 0, 0.05, 60.9705, -1);
  991. Teleports::PlaceObject(3966705493, -1267.77, -2910.37, 22.9978, 0, 0.05, 60.9705, -1);
  992. Teleports::PlaceObject(3966705493, -1266.49, -2908.08, 22.9987, 0, -0, -119.462, -1);
  993. Teleports::PlaceObject(3966705493, -1265.15, -2905.8, 23.0042, 0, -0, -119.462, -1);
  994. Teleports::PlaceObject(3966705493, -1266.44, -2905.21, 25.6255, 0, -0, -118.761, -1);
  995. Teleports::PlaceObject(3966705493, -1265.66, -2911.99, 25.6968, 0, 0, -30.9603, -1);
  996. Teleports::PlaceObject(3966705493, -1264.88, -2910.66, 25.6982, 0, 0, -30.9603, -1);
  997. Teleports::PlaceObject(3966705493, -1264.84, -2905.14, 25.624, 0, -0, -118.761, -1);
  998. Teleports::PlaceObject(3966705493, -1272.37, -2900.96, 25.6199, 0, -0, -118.761, -1);
  999. Teleports::PlaceObject(3966705493, -1276.35, -2903.91, 25.6214, 0, -0, -151.239, -1);
  1000. Teleports::PlaceObject(3966705493, -1276.35, -2903.91, 28.4329, 0, -0, -151.239, -1);
  1001. Teleports::PlaceObject(3966705493, -1272.37, -2900.96, 28.4385, 0, -0, -118.761, -1);
  1002. Teleports::PlaceObject(3966705493, -1266.44, -2905.21, 28.437, 0, -0, -118.761, -1);
  1003. Teleports::PlaceObject(3966705493, -1265.17, -2905.14, 28.3426, 0, -0, -118.861, -1);
  1004. Teleports::PlaceObject(3966705493, -1271.09, -2902.58, 23.0057, 0, -0, -119.462, -1);
  1005. Teleports::PlaceObject(3966705493, -1272.37, -2904.83, 22.9972, 0, -0, -119.462, -1);
  1006. Vector3 Coords;
  1007. Coords.x = -1208; Coords.y = -2950; Coords.z = 13; //-1208, -2950, 1
  1008. Teleports::TPto(Coords);
  1009. }
  1010. if (Imgui::Option(Language::AirportGateRamp, nullptr))
  1011. {
  1012. Teleports::PlaceObject(2475986526, -1098.36, -2631.17, 19, 0, -0, 152.671, -1);
  1013. Teleports::PlaceObject(2475986526, -1100.26, -2634.64, 21.1976, 16.2002, 0.192059, 150.427, -1);
  1014. Teleports::PlaceObject(2475986526, -1102.26, -2638.02, 25.01, 26.7003, 0.178675, 149.261, -1);
  1015. Teleports::PlaceObject(2475986526, -1103.96, -2640.91, 29.04, 28.3717, -0, 146.82, -1);
  1016. Teleports::PlaceObject(1952396163, -1119.61, -2670.96, -5.125, 0, -0, 150.514, -1);
  1017. Teleports::PlaceObject(1952396163, -1119.61, -2670.96, -5.125, 0, -0, 150.401, -1);
  1018. Teleports::PlaceObject(3137065507, -1044.69, -2530.08, 20.4011, 94.8962, 4.26887e-007, 147.716, -1);
  1019. Vector3 Coords;
  1020. Coords.x = -1046; Coords.y = -2538; Coords.z = 20; //-1208, -2950, 1
  1021. Teleports::TPto(Coords); //-1046, -2538, 20
  1022. }
  1023. }
  1024. break;
  1025. #pragma endregion
  1026. #pragma region GLITCHS TELEPORT TELEPORT OPTIONS
  1027. case GlitchsTeleport:
  1028. {
  1029.  
  1030. Imgui::ParasitaTitle(Language::GlitchsTeleports);
  1031. Imgui::Teleport(Language::Underthebridge, nullptr, -721.6599, -1000.6510, 23.5455, 0.0, 0.0);
  1032. Imgui::Teleport(Language::FIBRoof, nullptr, 135.9541, -749.8984, 258.1520, 0.0, 0.0);
  1033. Imgui::Teleport(Language::CityWall, nullptr, -254.9432, -147.3534, 42.7314, 0.0, 0.0);
  1034. Imgui::Teleport(Language::Mechanic, nullptr, 546.0365, -183.3675, 54.4982, 0.0, 0.0);
  1035. Imgui::Teleport(Language::Apartment, nullptr, -785.4869, 314.7161, 90.2189, 0.0, 0.0);
  1036.  
  1037. }
  1038. break;
  1039. #pragma endregion
  1040. #pragma region AMMUNATION SHOP TELEPORT OPTIONS
  1041. case Ammunationshops:
  1042. {
  1043. Imgui::ParasitaTitle(Language::Ammunation);
  1044. Imgui::Teleport(Language::AmmunationHawick, nullptr, 247.3652, -45.8777, 69.9411, 0.0, 0.0);
  1045. Imgui::Teleport(Language::AmmunationSandyShores, nullptr, 1696.1050, 3755.1670, 34.7053, 0.0, 0.0);
  1046. Imgui::Teleport(Language::AmmunationPaletoBay, nullptr, -326.805542, 6077.797852, 31.454771, 0.0, 0.0);
  1047. Imgui::Teleport(Language::AmmunationRioZancudo, nullptr, -1114.920410, 2692.942627, 18.554146, 0.0, 0.0);
  1048. Imgui::Teleport(Language::AmmunationChumash, nullptr, -3167.360107, 1084.862671, 20.838732, 0.0, 0.0);
  1049. Imgui::Teleport(Language::AmmunationMorningWood, nullptr, -1311.099243, -390.992126, 36.695774, 0.0, 0.0);
  1050. Imgui::Teleport(Language::AmmunationLittleSeoul, nullptr, -663.001648, -940.847290, 21.829235, 0.0, 0.0);
  1051. Imgui::Teleport(Language::AmmunationPillboxHill, nullptr, 19.120440, -1112.312378, 29.797024, 0.0, 0.0);
  1052. Imgui::Teleport(Language::AmmunationCypressFlats, nullptr, 811.547546, -2150.744679, 29.619011, 0.0, 0.0);
  1053. Imgui::Teleport(Language::AmmunationLaMesa, nullptr, 843.549744, -1027.295654, 28.194849, 0.0, 0.0);
  1054. Imgui::Teleport(Language::AmmunationMontanhasTataviam, nullptr, 25668.929199, 300.15732, 108.734879, 0.0, 0.0);
  1055. Imgui::Teleport(Language::AmmunationDesert, nullptr, 1696.1050, 3755.1670, 34.7053, 0.0, 0.0);
  1056. }
  1057. break;
  1058. #pragma endregion
  1059. #pragma region CLOTHING SHOP TELEPORT OPTIONS
  1060. case Clothingshops:
  1061. {
  1062. Imgui::ParasitaTitle(Language::ClothingShops);
  1063. Imgui::Teleport(Language::Ponsonbys, nullptr, -159.2996, -304.3292, 39.7333, 0.0, 0.0);
  1064. Imgui::Teleport(Language::ClothingShop, nullptr, -159.2996f, -304.3292f, 39.7333f, 0.0, 0.0);
  1065. Imgui::Teleport(Language::ClothesStore, nullptr, -718.91, -158.16, 37.00, 0.0, 0.0);
  1066.  
  1067. }
  1068. break;
  1069. #pragma endregion
  1070. #pragma region BARBE SHOP TELEPORT OPTIONS
  1071. case barbershop:
  1072. {
  1073.  
  1074. Imgui::ParasitaTitle(Language::BarberShops);
  1075. Imgui::Teleport(Language::BarberShops, nullptr, -1291.355, -1116.933, 6.6302, 0.0, 0.0);
  1076. }
  1077. break;
  1078. #pragma endregion
  1079. #pragma region LOS SANTOS CUSTOM TELEPORT OPTIONS
  1080. case LosSantosCustom:
  1081. {
  1082.  
  1083. Imgui::ParasitaTitle(Language::LosSantosCustom);
  1084. Imgui::Teleport(Language::LosSantosCustoms, nullptr, -373.01, -124.91, 38.31, 0.0, 0.0);
  1085.  
  1086. Imgui::Teleport(Language::BennysGarage, nullptr, -196.349442f, -1303.103271f, 30.650515f, 0.0, 0.0);
  1087.  
  1088. }
  1089. break;
  1090. #pragma endregion
  1091. #pragma region TATTOO STUDIO TELEPORT OPTIONS
  1092. case tattootattoo:
  1093. {
  1094. Imgui::ParasitaTitle(Language::TattooStudioLocation);
  1095. Imgui::Teleport(Language::PaletoBay, nullptr, -285.910400, 6202.941895, 30.626459, 0.0, 0.0);
  1096. Imgui::Teleport(Language::SandyShores, nullptr, 1853.771851, 3746.440918, 32.395195, 0.0, 0.0);
  1097. Imgui::Teleport(Language::Chumash, nullptr, -3155.888672, 1073.844482, 20.188726, 0.0, 0.0);
  1098. Imgui::Teleport(Language::Vinewood, nullptr, 318.228790, 164.457535, 103.146561, 0.0, 0.0);
  1099. Imgui::Teleport(Language::Vespucci, nullptr, -1163.504639, -1413.232788, 4.360025, 0.0, 0.0);
  1100. Imgui::Teleport(Language::ElBurroHeights, nullptr, 1318.160889, -1642.176147, 51.787762, 0.0, 0.0);
  1101.  
  1102. }
  1103. break;
  1104. #pragma endregion
  1105. #pragma region CAR WAHS LOCATION TELEPORT OPTIONS
  1106. case CarWashCarWash:
  1107. {
  1108. Imgui::ParasitaTitle(Language::CarWashLocation);
  1109. Imgui::Teleport(Language::InnocentBoulevard, nullptr, 10.358195, -1383.540039, 29.295225, 0.0, 0.0);
  1110. Imgui::Teleport(Language::LittleSeoul, nullptr, -699.642944, -950.200562, 19.512533, 0.0, 0.0);
  1111.  
  1112. }
  1113. break;
  1114. #pragma endregion
  1115. #pragma region AIRPORTS LOCATIONS TELEPORT OPTIONS
  1116. case Aiportsteleport:
  1117. {
  1118.  
  1119. Imgui::ParasitaTitle(Language::AiportsLocations);
  1120. Imgui::Teleport(Language::LosSantosAirport, nullptr, -1070.906250, -2972.122803, 13.773568, 0.0, 0.0);
  1121. Imgui::Teleport(Language::FlightSchool, nullptr, -1142.084229, -2697.341553, 13.324973, 0.0, 0.0);
  1122. Imgui::Teleport(Language::SandyShores, nullptr, 1682.196411, 3279.987793, 40.647972, 0.0, 0.0);
  1123. Imgui::Teleport(Language::McKenzieAirfield, nullptr, 2124.625732, 4805.270020, 40.479958, 0.0, 0.0);
  1124. Imgui::Teleport(Language::FortZancudo, nullptr, -2446.711182, 3142.811035, 32.194775, 0.0, 0.0);
  1125. Imgui::Teleport(Language::FortZancudoFront, nullptr, -1563.743286, 2769.382080, 16.819347, 0.0, 0.0);
  1126. Imgui::Teleport(Language::LSAirportHangar, nullptr, -978.708496, -3001.840820, 13.317889, 0.0, 0.0);
  1127.  
  1128. }
  1129. break;
  1130. #pragma endregion
  1131. #pragma region CINEMA LOCATIONS TELEPORT OPTIONS
  1132. case Cinemasteleport:
  1133. {
  1134.  
  1135. Imgui::ParasitaTitle(Language::CinemasLocations);
  1136. Imgui::Teleport(Language::VinewoodCinema, nullptr, 300.407776, 193.051071, 103.590019, 0.0, 0.0);
  1137. Imgui::Teleport(Language::TenCent, nullptr, 401.796814, -713.924988, 28.569710, 0.0, 0.0);
  1138. Imgui::Teleport(Language::MorningwoodCinema, nullptr, -1410.071167, -199.047531, 46.502586, 0.0, 0.0);
  1139.  
  1140. }
  1141. break;
  1142. #pragma endregion
  1143. #pragma region ONLINE LOCATIONS TELEPORT OPTIONS
  1144. case onlinelocations:
  1145. {
  1146. Imgui::ParasitaTitle(Language::OnlineLocations);
  1147. if (Imgui::Option(Language::RemoveAllLoaddersIPLs, nullptr))
  1148. {
  1149. Setting::RemoveAllIPL();
  1150. }
  1151. if (Imgui::Option(Language::IPLsZancudoBunker, nullptr))
  1152. {
  1153. STREAMING::REQUEST_IPL("gr_case10_bunkerclosed");
  1154. }
  1155. Imgui::Teleport(Language::ZancudoBunker, nullptr, -3058.714, 3329.19, 12.5844, 0.0, 0.0);
  1156. if (Imgui::Option(Language::IPLsRoute68Bunker, nullptr))
  1157. {
  1158. STREAMING::REQUEST_IPL("gr_case9_bunkerclosed");
  1159. }
  1160. Imgui::Teleport(Language::Route68Bunker, nullptr, 24.43542, 2959.705, 58.35517, 0.0, 0.0);
  1161. if (Imgui::Option(Language::IPLsModernApartments, nullptr))
  1162. {
  1163. STREAMING::REQUEST_IPL("apa_v_mp_h_01_a");
  1164. STREAMING::REQUEST_IPL("apa_v_mp_h_01_b");
  1165. STREAMING::REQUEST_IPL("apa_v_mp_h_01_c");
  1166. }
  1167. Imgui::Teleport(Language::Modern1Apartment, nullptr, -786.8663, 315.7642, 217.6385, 0.0, 0.0);
  1168. Imgui::Teleport(Language::Modern2Apartment, nullptr, -786.9563, 315.6229, 187.9136, 0.0, 0.0);
  1169. Imgui::Teleport(Language::Modern3Apartment, nullptr, -774.0126, 342.0428, 196.6864, 0.0, 0.0);
  1170. if (Imgui::Option(Language::IPLsExecutiveRich, nullptr))
  1171. {
  1172. STREAMING::REQUEST_IPL("ex_dt1_02_office_02b");
  1173. }
  1174. Imgui::Teleport(Language::ExecutiveRich, nullptr, -141.1987, -620.913, 168.8205, 0.0, 0.0);
  1175. if (Imgui::Option(Language::IPLsOldSpiceClassical, nullptr))
  1176. {
  1177. STREAMING::REQUEST_IPL("ex_dt1_02_office_01b");
  1178. }
  1179. Imgui::Teleport(Language::OldSpiceClassical, nullptr, -141.3997, -620.9006, 168.8204, 0.0, 0.0);
  1180. if (Imgui::Option(Language::IPLsClubhouse1, nullptr))
  1181. {
  1182. STREAMING::REQUEST_IPL("bkr_biker_interior_placement_interior_0_biker_dlc_int_01_milo");
  1183. }
  1184. Imgui::Teleport(Language::Clubhouse1, nullptr, 1107.04, -3157.399, -37.51859, 0.0, 0.0);
  1185. if (Imgui::Option(Language::IPLsCargarage, nullptr))
  1186. {
  1187. STREAMING::REQUEST_IPL("imp_impexp_interior_placement_interior_1_impexp_intwaremed_milo_");
  1188. }
  1189. Imgui::Teleport(Language::Cargarage, nullptr, 994.5925, -3002.594, -39.64699, 0.0, 0.0);
  1190. if (Imgui::Option(Language::IPLsBridgeTrainCrash, nullptr))
  1191. {
  1192. STREAMING::REQUEST_IPL("canyonriver01_traincrash");
  1193. STREAMING::REQUEST_IPL("railing_end");
  1194. }
  1195. Imgui::Teleport(Language::BridgeTrainCrash, nullptr, 532.1309, 4526.187, 89.79387, 0.0, 0.0);
  1196. if (Imgui::Option(Language::IPLsBridgeTrainNormal, nullptr))
  1197. {
  1198. STREAMING::REQUEST_IPL("canyonriver01");
  1199. STREAMING::REQUEST_IPL("railing_start");
  1200. }
  1201. Imgui::Teleport(Language::BridgeTrainNormal, nullptr, 532.1309, 4526.187, 89.79387, 0.0, 0.0);
  1202. if (Imgui::Option(Language::IPLsSummerSpecialYacht, nullptr))
  1203. {
  1204. STREAMING::REQUEST_IPL("sum_lost_yacht_int");
  1205. }
  1206. Imgui::Teleport(Language::SummerSpecialYacht, nullptr, 3610.523f, -4781.021f, 12.000f, 0.0, 0.0);
  1207. if (Imgui::Option(Language::IPLsGunrunningHeistYacht, nullptr))
  1208. {
  1209. STREAMING::REQUEST_IPL("gr_heist_yacht2");
  1210. STREAMING::REQUEST_IPL("Coroner_gr_heist_yacht2_barInt_on");
  1211. STREAMING::REQUEST_IPL("gr_heist_yacht2_bedrm");
  1212. STREAMING::REQUEST_IPL("gr_heist_yacht2_bridge");
  1213. STREAMING::REQUEST_IPL("gr_heist_yacht2_enginrm");
  1214. STREAMING::REQUEST_IPL("gr_heist_yacht2_lounge");
  1215. }
  1216. Imgui::Teleport(Language::GunrunningHeistYacht, nullptr, 1373.828f, 6737.393f, 6.707596f, 0.0, 0.0);
  1217. if (Imgui::Option(Language::IPLsDignityHeistYacht, nullptr))
  1218. {
  1219. STREAMING::REQUEST_IPL("hei_yacht_heist");
  1220. STREAMING::REQUEST_IPL("hei_yacht_heist_enginrm");
  1221. STREAMING::REQUEST_IPL("hei_yacht_heist_Lounge");
  1222. STREAMING::REQUEST_IPL("hei_yacht_heist_Bridge");
  1223. STREAMING::REQUEST_IPL("hei_yacht_heist_Bar");
  1224. STREAMING::REQUEST_IPL("hei_yacht_heist_Bedrm");
  1225. STREAMING::REQUEST_IPL("hei_yacht_heist_DistantLights");
  1226. STREAMING::REQUEST_IPL("hei_yacht_heist_LODLights");
  1227. }
  1228. Imgui::Teleport(Language::DignityHeistYacht, nullptr, -2027.946f, -1036.695f, 6.707587f, 0.0, 0.0);
  1229. if (Imgui::Option(Language::IPLsDignityPartyYacht, nullptr))
  1230. {
  1231. STREAMING::REQUEST_IPL("smboat");
  1232. STREAMING::REQUEST_IPL("smboat_lod");
  1233. }
  1234. Imgui::Teleport(Language::DignityPartyYacht, nullptr, -2023.643f, -1038.119f, 5.576781f, 0.0, 0.0);
  1235. Imgui::Teleport(Language::Penthouse, nullptr, 976.636f, 70.295f, 115.164f, 0.0, 0.0);
  1236. if (Imgui::Option(Language::IPLsAircraftCarrier, nullptr))
  1237. {
  1238. STREAMING::REQUEST_IPL("hei_carrier");
  1239. STREAMING::REQUEST_IPL("hei_carrier_DistantLights");
  1240. STREAMING::REQUEST_IPL("hei_Carrier_int1");
  1241. STREAMING::REQUEST_IPL("hei_Carrier_int2");
  1242. STREAMING::REQUEST_IPL("hei_Carrier_int3");
  1243. STREAMING::REQUEST_IPL("hei_Carrier_int4");
  1244. STREAMING::REQUEST_IPL("hei_Carrier_int5");
  1245. STREAMING::REQUEST_IPL("hei_Carrier_int6");
  1246. STREAMING::REQUEST_IPL("hei_carrier_LODLights");
  1247. }
  1248. Imgui::Teleport(Language::AircraftCarrier, nullptr, 3069.330f, -4632.4f, 15.043f, 0.0, 0.0);
  1249.  
  1250. }
  1251. break;
  1252. #pragma endregion
  1253. #pragma region CASINO LOCATIONS TELEPORT OPTIONS
  1254. case shopsshops:
  1255. {
  1256. Imgui::ParasitaTitle(Language::CassinoLocation);
  1257. if (Imgui::Option(Language::IPLCasinoDiamond, nullptr))
  1258. {
  1259. STREAMING::REQUEST_IPL("vw_casino_main");
  1260. STREAMING::REQUEST_IPL("vw_casino_garage");
  1261. STREAMING::REQUEST_IPL("vw_casino_carpark");
  1262. STREAMING::REQUEST_IPL("vw_casino_penthouse");
  1263.  
  1264. }
  1265. Imgui::Teleport(Language::Casino, nullptr, 1100.000f, 220.000f, -50.000f, 0.0, 0.0);
  1266. Imgui::Teleport(Language::Garage, nullptr, 1295.000f, 230.000f, -50.000f, 0.0, 0.0);
  1267. Imgui::Teleport(Language::CarPark, nullptr, 1380.000f, 200.000f, -50.000f, 0.0, 0.0);
  1268. }
  1269. break;
  1270. #pragma endregion
  1271. #pragma region EXECUTIVE OFFICE TELEPORT OPTIONS
  1272. case ExecutiveOffice:
  1273. {
  1274. Imgui::ParasitaTitle(Language::ExecutiveOffice);
  1275. Imgui::Break(Language::MazeBankWest);
  1276. if (Imgui::Option(Language::IPLsMazeBankWest, nullptr))
  1277. {
  1278. STREAMING::REQUEST_IPL("ex_sm_15_office_02b");
  1279. STREAMING::REQUEST_IPL("ex_sm_15_office_02c");
  1280. STREAMING::REQUEST_IPL("ex_sm_15_office_02a");
  1281. STREAMING::REQUEST_IPL("ex_sm_15_office_01a");
  1282. STREAMING::REQUEST_IPL("ex_sm_15_office_01b");
  1283. STREAMING::REQUEST_IPL("ex_sm_15_office_01c");
  1284. STREAMING::REQUEST_IPL("ex_sm_15_office_03a");
  1285. STREAMING::REQUEST_IPL("ex_sm_15_office_03b");
  1286. STREAMING::REQUEST_IPL("ex_sm_15_office_03c");
  1287. STREAMING::REQUEST_IPL("imp_sm_15_cargarage_a");
  1288. STREAMING::REQUEST_IPL("imp_sm_15_cargarage_b");
  1289. STREAMING::REQUEST_IPL("imp_sm_15_cargarage_c");
  1290. STREAMING::REQUEST_IPL("imp_sm_15_modgarage");
  1291. }
  1292. Imgui::Teleport(Language::ExecutiveRich, nullptr, -1392.667, -480.4736, 72.04217, 0.0, 0.0);
  1293. Imgui::Teleport(Language::ExecutiveCool, nullptr, -1392.542, -480.4011, 72.04211, 0.0, 0.0);
  1294. Imgui::Teleport(Language::ExecutiveContrast, nullptr, -1392.626, -480.4856, 72.04212, 0.0, 0.0);
  1295. Imgui::Teleport(Language::OldSpiceWarm, nullptr, -1392.617, -480.6363, 72.04208, 0.0, 0.0);
  1296. Imgui::Teleport(Language::OldSpiceClassical, nullptr, -1392.532, -480.7649, 72.04207, 0.0, 0.0);
  1297. Imgui::Teleport(Language::OldSpiceVintage, nullptr, -1392.611, -480.5562, 72.04214, 0.0, 0.0);
  1298. Imgui::Teleport(Language::PowerBrokerIce, nullptr, -1392.563, -480.549, 72.0421, 0.0, 0.0);
  1299. Imgui::Teleport(Language::PowerBrokerConvservative, nullptr, -1392.528, -480.475, 72.04206, 0.0, 0.0);
  1300. Imgui::Teleport(Language::PowerBrokerPolished, nullptr, -1392.416, -480.7485, 72.04207, 0.0, 0.0);
  1301. Imgui::Teleport(Language::Garage1, nullptr, -1388.8400, -478.7402, 56.1000, 0.0, 0.0);
  1302. Imgui::Teleport(Language::Garage2, nullptr, -1388.8600, -478.7574, 48.1000, 0.0, 0.0);
  1303. Imgui::Teleport(Language::Garage3, nullptr, -1374.6820, -474.3586, 56.1000, 0.0, 0.0);
  1304. Imgui::Teleport(Language::ModShop, nullptr, -1391.2450, -473.9638, 77.2000, 0.0, 0.0);
  1305. Imgui::Break(Language::LomBank);
  1306. if (Imgui::Option(Language::IPLsLomBank, nullptr))
  1307. {
  1308. STREAMING::REQUEST_IPL("ex_sm_13_office_02b");
  1309. STREAMING::REQUEST_IPL("ex_sm_13_office_02c");
  1310. STREAMING::REQUEST_IPL("ex_sm_13_office_02a");
  1311. STREAMING::REQUEST_IPL("ex_sm_13_office_01a");
  1312. STREAMING::REQUEST_IPL("ex_sm_13_office_01b");
  1313. STREAMING::REQUEST_IPL("ex_sm_13_office_01c");
  1314. STREAMING::REQUEST_IPL("ex_sm_13_office_03a");
  1315. STREAMING::REQUEST_IPL("ex_sm_13_office_03b");
  1316. STREAMING::REQUEST_IPL("ex_sm_13_office_03c");
  1317. STREAMING::REQUEST_IPL("imp_sm_13_cargarage_a");
  1318. STREAMING::REQUEST_IPL("imp_sm_13_cargarage_b");
  1319. STREAMING::REQUEST_IPL("imp_sm_13_cargarage_c");
  1320. STREAMING::REQUEST_IPL("imp_sm_13_modgarage");
  1321. }
  1322. Imgui::Teleport(Language::ExecutiveRich, nullptr, -1579.756, -565.0661, 108.523, 0.0, 0.0);
  1323. Imgui::Teleport(Language::ExecutiveCool, nullptr, -1579.678, -565.0034, 108.5229, 0.0, 0.0);
  1324. Imgui::Teleport(Language::ExecutiveContrast, nullptr, -1579.583, -565.0399, 108.5229, 0.0, 0.0);
  1325. Imgui::Teleport(Language::OldSpiceWarm, nullptr, -1579.702, -565.0366, 108.5229, 0.0, 0.0);
  1326. Imgui::Teleport(Language::OldSpiceClassical, nullptr, -1579.643, -564.9685, 108.5229, 0.0, 0.0);
  1327. Imgui::Teleport(Language::OldSpiceVintage, nullptr, -1579.681, -565.0003, 108.523, 0.0, 0.0);
  1328. Imgui::Teleport(Language::PowerBrokerIce, nullptr, -1579.677, -565.0689, 108.5229, 0.0, 0.0);
  1329. Imgui::Teleport(Language::PowerBrokerConvservative, nullptr, -1579.708, -564.9634, 108.5229, 0.0, 0.0);
  1330. Imgui::Teleport(Language::PowerBrokerPolished, nullptr, -1579.693, -564.8981, 108.5229, 0.0, 0.0);
  1331. Imgui::Teleport(Language::Garage1, nullptr, -1581.1120, -567.2450, 85.5000, 0.0, 0.0);
  1332. Imgui::Teleport(Language::Garage2, nullptr, -1568.7390, -562.0455, 85.5000, 0.0, 0.0);
  1333. Imgui::Teleport(Language::Garage3, nullptr, -1563.5570, -574.4314, 85.5000, 0.0, 0.0);
  1334. Imgui::Teleport(Language::ModShop, nullptr, -1578.0230, -576.4251, 104.2000, 0.0, 0.0);
  1335. Imgui::Break(Language::MazeBankBuilding);
  1336. if (Imgui::Option(Language::IPLsMazeBankBuilding, nullptr))
  1337. {
  1338. STREAMING::REQUEST_IPL("ex_sm_11_office_02b");
  1339. STREAMING::REQUEST_IPL("ex_sm_11_office_02c");
  1340. STREAMING::REQUEST_IPL("ex_sm_11_office_02a");
  1341. STREAMING::REQUEST_IPL("ex_sm_11_office_01a");
  1342. STREAMING::REQUEST_IPL("ex_sm_11_office_01b");
  1343. STREAMING::REQUEST_IPL("ex_sm_11_office_01c");
  1344. STREAMING::REQUEST_IPL("ex_sm_11_office_03a");
  1345. STREAMING::REQUEST_IPL("ex_sm_11_office_03b");
  1346. STREAMING::REQUEST_IPL("ex_sm_11_office_03c");
  1347. STREAMING::REQUEST_IPL("imp_sm_11_cargarage_a");
  1348. STREAMING::REQUEST_IPL("imp_sm_11_cargarage_b");
  1349. STREAMING::REQUEST_IPL("imp_sm_11_cargarage_c");
  1350. STREAMING::REQUEST_IPL("imp_sm_11_modgarage");
  1351. }
  1352. Imgui::Teleport(Language::ExecutiveRich, nullptr, -75.8466, -826.9893, 243.3859, 0.0, 0.0);
  1353. Imgui::Teleport(Language::ExecutiveCool, nullptr, -75.49945, -827.05, 243.386, 0.0, 0.0);
  1354. Imgui::Teleport(Language::ExecutiveContrast, nullptr, -75.49827, -827.1889, 243.386, 0.0, 0.0);
  1355. Imgui::Teleport(Language::OldSpiceWarm, nullptr, -75.44054, -827.1487, 243.3859, 0.0, 0.0);
  1356. Imgui::Teleport(Language::OldSpiceClassical, nullptr, -75.63942, -827.1022, 243.3859, 0.0, 0.0);
  1357. Imgui::Teleport(Language::OldSpiceVintage, nullptr, -75.47446, -827.2621, 243.386, 0.0, 0.0);
  1358. Imgui::Teleport(Language::PowerBrokerIce, nullptr, -75.56978, -827.1152, 243.3859, 0.0, 0.0);
  1359. Imgui::Teleport(Language::PowerBrokerConvservative, nullptr, -75.51953, -827.0786, 243.3859, 0.0, 0.0);
  1360. Imgui::Teleport(Language::PowerBrokerPolished, nullptr, -75.41915, -827.1118, 243.3858, 0.0, 0.0);
  1361. Imgui::Teleport(Language::Garage1, nullptr, -84.2193, -823.0851, 221.0000, 0.0, 0.0);
  1362. Imgui::Teleport(Language::Garage2, nullptr, -69.8627, -824.7498, 221.0000, 0.0, 0.0);
  1363. Imgui::Teleport(Language::Garage3, nullptr, -80.4318, -813.2536, 221.0000, 0.0, 0.0);
  1364. Imgui::Teleport(Language::ModShop, nullptr, -73.9039, -821.6204, 284.0000, 0.0, 0.0);
  1365. Imgui::Break(Language::ArcadiusBusinessCentre);
  1366. if (Imgui::Option(Language::IPLsArcadiusBusinessCentre, nullptr))
  1367. {
  1368. STREAMING::REQUEST_IPL("ex_dt1_02_office_02b");
  1369. STREAMING::REQUEST_IPL("ex_dt1_02_office_02c");
  1370. STREAMING::REQUEST_IPL("ex_dt1_02_office_02a");
  1371. STREAMING::REQUEST_IPL("ex_dt1_02_office_01a");
  1372. STREAMING::REQUEST_IPL("ex_dt1_02_office_01b");
  1373. STREAMING::REQUEST_IPL("ex_dt1_02_office_01c");
  1374. STREAMING::REQUEST_IPL("ex_dt1_02_office_03a");
  1375. STREAMING::REQUEST_IPL("ex_dt1_02_office_03b");
  1376. STREAMING::REQUEST_IPL("ex_dt1_02_office_03c");
  1377. STREAMING::REQUEST_IPL("imp_dt1_02_cargarage_a");
  1378. STREAMING::REQUEST_IPL("imp_dt1_02_cargarage_b");
  1379. STREAMING::REQUEST_IPL("imp_dt1_02_cargarage_c");
  1380. STREAMING::REQUEST_IPL("imp_dt1_02_modgarage");
  1381. }
  1382. Imgui::Teleport(Language::ExecutiveRich, nullptr, -141.1987, -620.913, 168.8205, 0.0, 0.0);
  1383. Imgui::Teleport(Language::ExecutiveCool, nullptr, -141.5429, -620.9524, 168.8204, 0.0, 0.0);
  1384. Imgui::Teleport(Language::ExecutiveContrast, nullptr, -141.2896, -620.9618, 168.8204, 0.0, 0.0);
  1385. Imgui::Teleport(Language::OldSpiceWarm, nullptr, -141.4966, -620.8292, 168.8204, 0.0, 0.0);
  1386. Imgui::Teleport(Language::OldSpiceClassical, nullptr, -141.3997, -620.9006, 168.8204, 0.0, 0.0);
  1387. Imgui::Teleport(Language::OldSpiceVintage, nullptr, -141.5361, -620.9186, 168.8204, 0.0, 0.0);
  1388. Imgui::Teleport(Language::PowerBrokerIce, nullptr, -141.392, -621.0451, 168.8204, 0.0, 0.0);
  1389. Imgui::Teleport(Language::PowerBrokerConvservative, nullptr, -141.1945, -620.8729, 168.8204, 0.0, 0.0);
  1390. Imgui::Teleport(Language::PowerBrokerPolished, nullptr, -141.4924, -621.0035, 168.8205, 0.0, 0.0);
  1391. Imgui::Teleport(Language::Garage1, nullptr, -191.0133, -579.1428, 135.0000, 0.0, 0.0);
  1392. Imgui::Teleport(Language::Garage2, nullptr, -117.4989, -568.1132, 135.0000, 0.0, 0.0);
  1393. Imgui::Teleport(Language::Garage3, nullptr, -136.0780, -630.1852, 135.0000, 0.0, 0.0);
  1394. Imgui::Teleport(Language::ModShop, nullptr, -146.6166, -596.6301, 166.0000, 0.0, 0.0);
  1395.  
  1396. }
  1397. break;
  1398. #pragma endregion
  1399. #pragma region APARTMENT LOCATIONS TELEPORT OPTIONS
  1400. case ApartmentLoc:
  1401. {
  1402. Imgui::ParasitaTitle(Language::ApartmentLocation);
  1403. if (Imgui::Option(Language::IPLsApartment, nullptr))
  1404. {
  1405. STREAMING::REQUEST_IPL("apa_v_mp_h_01_a");
  1406. STREAMING::REQUEST_IPL("apa_v_mp_h_01_c");
  1407. STREAMING::REQUEST_IPL("apa_v_mp_h_01_b");
  1408. STREAMING::REQUEST_IPL("apa_v_mp_h_02_a");
  1409. STREAMING::REQUEST_IPL("apa_v_mp_h_02_c");
  1410. STREAMING::REQUEST_IPL("apa_v_mp_h_02_b");
  1411. STREAMING::REQUEST_IPL("apa_v_mp_h_03_a");
  1412. STREAMING::REQUEST_IPL("apa_v_mp_h_03_c");
  1413. STREAMING::REQUEST_IPL("apa_v_mp_h_03_b");
  1414. STREAMING::REQUEST_IPL("apa_v_mp_h_04_a");
  1415. STREAMING::REQUEST_IPL("apa_v_mp_h_04_c");
  1416. STREAMING::REQUEST_IPL("apa_v_mp_h_04_b");
  1417. STREAMING::REQUEST_IPL("apa_v_mp_h_05_a");
  1418. STREAMING::REQUEST_IPL("apa_v_mp_h_05_c");
  1419. STREAMING::REQUEST_IPL("apa_v_mp_h_05_b");
  1420. STREAMING::REQUEST_IPL("apa_v_mp_h_06_a");
  1421. STREAMING::REQUEST_IPL("apa_v_mp_h_06_b");
  1422. STREAMING::REQUEST_IPL("apa_v_mp_h_06_c");
  1423. STREAMING::REQUEST_IPL("apa_v_mp_h_07_a");
  1424. STREAMING::REQUEST_IPL("apa_v_mp_h_07_c");
  1425. STREAMING::REQUEST_IPL("apa_v_mp_h_07_b");
  1426. STREAMING::REQUEST_IPL("apa_v_mp_h_08_a");
  1427. STREAMING::REQUEST_IPL("apa_v_mp_h_08_c");
  1428. STREAMING::REQUEST_IPL("apa_v_mp_h_08_b");
  1429. }
  1430. Imgui::Teleport(Language::EclipseTowerApartment, nullptr, -810.110901f, 300.467865f, 86.118515f, 0.0, 0.0);
  1431. Imgui::Teleport(Language::TinselTowerApartment, nullptr, -641.864624f, 24.014740f, 39.351025f, 0.0, 0.0);
  1432. Imgui::Teleport(Language::Modern1Apartment, nullptr, -786.8663, 315.7642, 217.6385, 0.0, 0.0);
  1433. Imgui::Teleport(Language::Modern2Apartment, nullptr, -786.9563, 315.6229, 187.9136, 0.0, 0.0);
  1434. Imgui::Teleport(Language::Modern3Apartment, nullptr, -774.0126, 342.0428, 196.6864, 0.0, 0.0);
  1435. Imgui::Teleport(Language::LowEndApartment, nullptr, 261.4586, -998.8196, -99.00863, 0.0, 0.0);
  1436. Imgui::Teleport(Language::MediumEndApartment, nullptr, 347.2686, -999.2955, -99.19622, 0.0, 0.0);
  1437. Imgui::Teleport(Language::IntegrityWayApt28, nullptr, -18.07856, -583.6725, 79.46569, 0.0, 0.0);
  1438. Imgui::Teleport(Language::IntegrityWayApt30, nullptr, -35.31277, -580.4199, 88.71221, 0.0, 0.0);
  1439. Imgui::Teleport(Language::DellPerroHeightsApt4, nullptr, -1468.14, -541.815, 73.4442, 0.0, 0.0);
  1440. Imgui::Teleport(Language::DellPerroHeightsApt7, nullptr, -1477.14, -538.7499, 55.5264, 0.0, 0.0);
  1441. Imgui::Teleport(Language::RichardMajesticApt2, nullptr, -915.811, -379.432, 113.6748, 0.0, 0.0);
  1442. Imgui::Teleport(Language::TinselTowersApt42, nullptr, -614.86, 40.6783, 97.60007, 0.0, 0.0);
  1443. Imgui::Teleport(Language::EclipseTowersApt3, nullptr, -773.407, 341.766, 211.397, 0.0, 0.0);
  1444. Imgui::Teleport(Language::WildOatsDrive, nullptr, -169.286, 486.4938, 137.4436, 0.0, 0.0);
  1445. Imgui::Teleport(Language::NorthConkerAvenue, nullptr, 340.9412, 437.1798, 149.3925, 0.0, 0.0);
  1446. Imgui::Teleport(Language::NorthConkerAvenue, nullptr, 373.023, 416.105, 145.7006, 0.0, 0.0);
  1447. Imgui::Teleport(Language::HillcrestAvenue, nullptr, -676.127, 588.612, 145.1698, 0.0, 0.0);
  1448. Imgui::Teleport(Language::HillcrestAvenue, nullptr, -763.107, 615.906, 144.1401, 0.0, 0.0);
  1449. Imgui::Teleport(Language::HillcrestAvenue, nullptr, -857.798, 682.563, 152.6529, 0.0, 0.0);
  1450. Imgui::Teleport(Language::WhispymoundDrive, nullptr, 120.5, 549.952, 184.097, 0.0, 0.0);
  1451. Imgui::Teleport(Language::MadWayneThunder, nullptr, -1288, 440.748, 97.69459, 0.0, 0.0);
  1452. Imgui::Teleport(Language::Mody1Apartment, nullptr, -787.0749, 315.8198, 217.6386, 0.0, 0.0);
  1453. Imgui::Teleport(Language::Mody2Apartment, nullptr, -786.8195, 315.5634, 187.9137, 0.0, 0.0);
  1454. Imgui::Teleport(Language::Mody3Apartment, nullptr, -774.1382, 342.0316, 196.6864, 0.0, 0.0);
  1455. Imgui::Teleport(Language::Vibrant1Apartment, nullptr, -786.6245, 315.6175, 217.6385, 0.0, 0.0);
  1456. Imgui::Teleport(Language::Vibrant2Apartment, nullptr, -786.9584, 315.7974, 187.9135, 0.0, 0.0);
  1457. Imgui::Teleport(Language::Vibrant3Apartment, nullptr, -774.0223, 342.1718, 196.6863, 0.0, 0.0);
  1458. Imgui::Teleport(Language::Sharp1Apartment, nullptr, -787.0902, 315.7039, 217.6384, 0.0, 0.0);
  1459. Imgui::Teleport(Language::Sharp2Apartment, nullptr, -787.0155, 315.7071, 187.9135, 0.0, 0.0);
  1460. Imgui::Teleport(Language::Sharp3Apartment, nullptr, -773.8976, 342.1525, 196.6863, 0.0, 0.0);
  1461. Imgui::Teleport(Language::Monochrome1Apartment, nullptr, 641.864624f, 24.014740f, 39.351025f, 0.0, 0.0);
  1462. Imgui::Teleport(Language::Monochrome2Apartment, nullptr, -786.9887, 315.7393, 217.6386, 0.0, 0.0);
  1463. Imgui::Teleport(Language::Monochrome3Apartment, nullptr, -786.8809, 315.6634, 187.9136, 0.0, 0.0);
  1464. Imgui::Teleport(Language::Apartment, nullptr, -774.0675, 342.0773, 196.6864, 0.0, 0.0);
  1465. Imgui::Teleport(Language::Seductive1Apartment, nullptr, -787.1423, 315.6943, 217.6384, 0.0, 0.0);
  1466. Imgui::Teleport(Language::Seductive2Apartment, nullptr, -787.0961, 315.815, 187.9135, 0.0, 0.0);
  1467. Imgui::Teleport(Language::Seductive3Apartment, nullptr, -773.9552, 341.9892, 196.6862, 0.0, 0.0);
  1468. Imgui::Teleport(Language::Regal1Apartment, nullptr, -787.029, 315.7113, 217.6385, 0.0, 0.0);
  1469. Imgui::Teleport(Language::Regal2Apartment, nullptr, -787.0574, 315.6567, 187.9135, 0.0, 0.0);
  1470. Imgui::Teleport(Language::Regal3Apartment, nullptr, -774.0109, 342.0965, 196.6863, 0.0, 0.0);
  1471. Imgui::Teleport(Language::Aqua1Apartment, nullptr, -786.9469, 315.5655, 217.6383, 0.0, 0.0);
  1472. Imgui::Teleport(Language::Aqua2Apartment, nullptr, -786.9756, 315.723, 187.9134, 0.0, 0.0);
  1473. Imgui::Teleport(Language::Aqua3Apartment, nullptr, -774.0349, 342.0296, 196.6862, 0.0, 0.0);
  1474.  
  1475. }
  1476. break;
  1477. #pragma endregion
  1478. #pragma region BUNKER LOCATIONS TELEPORT OPTIONS
  1479. case bunkerbunker:
  1480. {
  1481. Imgui::ParasitaTitle(Language::BunkerLocation);
  1482. if (Imgui::Option(Language::IPLsBunkers, nullptr))
  1483. {
  1484. STREAMING::REQUEST_IPL("gr_case10_bunkerclosed");
  1485. STREAMING::REQUEST_IPL("gr_case9_bunkerclosed");
  1486. STREAMING::REQUEST_IPL("gr_case3_bunkerclosed");
  1487. STREAMING::REQUEST_IPL("gr_case0_bunkerclosed");
  1488. STREAMING::REQUEST_IPL("gr_case1_bunkerclosed");
  1489. STREAMING::REQUEST_IPL("gr_case2_bunkerclosed");
  1490. STREAMING::REQUEST_IPL("gr_case5_bunkerclosed");
  1491. STREAMING::REQUEST_IPL("gr_case7_bunkerclosed");
  1492. STREAMING::REQUEST_IPL("gr_case11_bunkerclosed");
  1493. STREAMING::REQUEST_IPL("gr_case6_bunkerclosed");
  1494. STREAMING::REQUEST_IPL("gr_case4_bunkerclosed");
  1495. }
  1496. Imgui::Teleport(Language::ZancudoBunker, nullptr, -3058.714, 3329.19, 12.5844, 0.0, 0.0);
  1497. Imgui::Teleport(Language::Route68Bunker, nullptr, 24.43542, 2959.705, 58.35517, 0.0, 0.0);
  1498. Imgui::Teleport(Language::OilfieldsBunker, nullptr, 481.0465, 2995.135, 43.96672, 0.0, 0.0);
  1499. Imgui::Teleport(Language::DesertBunker, nullptr, 848.6175, 2996.567, 45.81612, 0.0, 0.0);
  1500. Imgui::Teleport(Language::SmokeTreeBunker, nullptr, 2493.654, 3140.399, 51.28789, 0.0, 0.0);
  1501. Imgui::Teleport(Language::ScrapyardBunker, nullptr, 1823.961, 4708.14, 42.4991, 0.0, 0.0);
  1502. Imgui::Teleport(Language::GrapeseedBunker, nullptr, -3058.714, 3329.19, 12.5844, 0.0, 0.0);
  1503. Imgui::Teleport(Language::PalletoBunker, nullptr, -783.0755, 5934.686, 24.31475, 0.0, 0.0);
  1504. Imgui::Teleport(Language::Route1Bunker, nullptr, -3180.466, 1374.192, 19.9597, 0.0, 0.0);
  1505. Imgui::Teleport(Language::FarmhouseBunker, nullptr, 1570.372, 2254.549, 78.89397, 0.0, 0.0);
  1506. Imgui::Teleport(Language::RatonCanyonBunker, nullptr, -391.3216, 4363.728, 58.65862, 0.0, 0.0);
  1507.  
  1508. }
  1509. break;
  1510. #pragma endregion
  1511. #pragma region MOTO CLUB LOCATIONS TELEPORT OPTIONS
  1512. case clubhouse:
  1513. {
  1514. Imgui::ParasitaTitle(Language::MotoClubLocation);
  1515. if (Imgui::Option(Language::IPLsMotoClub, nullptr))
  1516. {
  1517. STREAMING::REQUEST_IPL("bkr_bi_hw1_13_int");
  1518. STREAMING::REQUEST_IPL("imp_impexp_interior_placement_interior_1_impexp_intwaremed_milo_");
  1519. STREAMING::REQUEST_IPL("ex_exec_warehouse_placement_interior_2_int_warehouse_l_dlc_milo");
  1520. STREAMING::REQUEST_IPL("ex_exec_warehouse_placement_interior_0_int_warehouse_m_dlc_milo");
  1521. STREAMING::REQUEST_IPL("ex_exec_warehouse_placement_interior_1_int_warehouse_s_dlc_milo");
  1522. STREAMING::REQUEST_IPL("bkr_biker_interior_placement_interior_6_biker_dlc_int_ware05_milo");
  1523. STREAMING::REQUEST_IPL("bkr_biker_interior_placement_interior_5_biker_dlc_int_ware04_milo");
  1524. STREAMING::REQUEST_IPL("bkr_biker_interior_placement_interior_4_biker_dlc_int_ware03_milo");
  1525. STREAMING::REQUEST_IPL("bkr_biker_interior_placement_interior_3_biker_dlc_int_ware02_milo");
  1526. STREAMING::REQUEST_IPL("bkr_biker_interior_placement_interior_2_biker_dlc_int_ware01_milo");
  1527. STREAMING::REQUEST_IPL("bkr_biker_interior_placement_interior_1_biker_dlc_int_02_milo");
  1528. STREAMING::REQUEST_IPL("bkr_biker_interior_placement_interior_0_biker_dlc_int_01_milo");
  1529. }
  1530. Imgui::Teleport(Language::Clubhouse1, nullptr, 1107.04, -3157.399, -37.51859, 0.0, 0.0);
  1531. Imgui::Teleport(Language::Clubhouse2, nullptr, 998.4809, -3164.711, -38.90733, 0.0, 0.0);
  1532. Imgui::Teleport(Language::LostMCClubhouse, nullptr, 982.0083, -100.8747, 74.84512, 0.0, 0.0);
  1533. Imgui::Teleport(Language::VehicleWarehouse, nullptr, 994.5925, -3002.594, -39.64699, 0.0, 0.0);
  1534. Imgui::Teleport(Language::WarehouseLarge, nullptr, 1006.967, -3102.079, -39.0035, 0.0, 0.0);
  1535. Imgui::Teleport(Language::WarehouseMedium, nullptr, 1056.486, -3105.724, -39.00439, 0.0, 0.0);
  1536. Imgui::Teleport(Language::WarehouseSmall, nullptr, 1094.988, -3101.776, -39.00363, 0.0, 0.0);
  1537. Imgui::Teleport(Language::DocumentForgeryOffice, nullptr, 1165, -3196.6, -39.01306, 0.0, 0.0);
  1538. Imgui::Teleport(Language::CounterfeitCashFactory, nullptr, 1121.897, -3195.338, -40.4025, 0.0, 0.0);
  1539. Imgui::Teleport(Language::CocaineLockup, nullptr, 1093.6, -3196.6, -38.99841, 0.0, 0.0);
  1540. Imgui::Teleport(Language::WeedFarm, nullptr, 1051.491, -3196.536, -39.14842, 0.0, 0.0);
  1541. Imgui::Teleport(Language::MethLab, nullptr, 1009.5, -3196.6, -38.99682, 0.0, 0.0);
  1542.  
  1543.  
  1544. }
  1545. break;
  1546. #pragma endregion
  1547. #pragma region HANGAR LOCATIONS TELEPORT OPTIONS
  1548. case hangarhangar:
  1549. {
  1550.  
  1551. Imgui::ParasitaTitle(Language::HangarLocation);
  1552. if (Imgui::Option(Language::TattooShop, nullptr))
  1553. {
  1554. PED::SET_PED_COORDS_KEEP_VEHICLE(PLAYER::PLAYER_PED_ID(), 319.7877f, 172.2311f, 103.7454f);
  1555. }
  1556. }
  1557. break;
  1558. #pragma endregion
  1559. #pragma region NIGHT CLUBS TELEPORT OPTIONS
  1560. case NightNight:
  1561. {
  1562. Imgui::ParasitaTitle(Language::NightsClubs);
  1563. Imgui::Teleport(Language::StripClub, nullptr, 135.548096f, -1308.388306f, 28.344141f, 0.0, 0.0);
  1564. Imgui::Teleport(Language::StripClubDJBooth, nullptr, 126.135, -1278.583, 29.270, 0.0, 0.0);
  1565. Imgui::Teleport(Language::DowntownVinewood, nullptr, 373.260f, 254.730f, 102.954f, 0.0, 0.0);
  1566. Imgui::Teleport(Language::VinewoodMiddle, nullptr, 7.939f, 218.331f, 107.607f, 0.0, 0.0);
  1567. Imgui::Teleport(Language::DelPerro, nullptr, -1289.758f, -647.775f, 26.573f, 0.0, 0.0);
  1568. Imgui::Teleport(Language::Vespucci, nullptr, -1164.017f, -1199.575f, 3.772f, 0.0, 0.0);
  1569. Imgui::Teleport(Language::Airport, nullptr, -664.626f, -2462.964f, 13.944, 0.0, 0.0);
  1570. Imgui::Teleport(Language::Strawberry, nullptr, 82.522f, -1298.378f, 29.293f, 0.0, 0.0);
  1571. Imgui::Teleport(Language::CypressFlats, nullptr, 377.244f, -1111.520f, 29.406f, 0.0, 0.0);
  1572. Imgui::Teleport(Language::LaMesa, nullptr, 784.305f, -1279.764f, 26.358f, 0.0, 0.0);
  1573. Imgui::Teleport(Language::MissonRow, nullptr, 865.235f, -2094.451f, 30.241f, 0.0, 0.0);
  1574. Imgui::Teleport(Language::ElysianIsland, nullptr, 188.878f, -3161.526f, 5.787f, 0.0, 0.0);
  1575.  
  1576.  
  1577. }
  1578. break;
  1579. #pragma endregion
  1580. #pragma region STATION LOCATIONS TELEPORT OPTIONS
  1581. case facilitfacilit:
  1582. {
  1583. Imgui::ParasitaTitle(Language::StationLocation);
  1584. }
  1585. break;
  1586. #pragma endregion
  1587.  
  1588. #pragma endregion
  1589.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement