From bbe28c5b69deb1a0596b95afdac3f365f8e7901a Mon Sep 17 00:00:00 2001 From: Yimura Date: Tue, 29 Dec 2020 00:20:27 +0100 Subject: [PATCH] feat(Lists & Temp): Added list of locations and weather names/types --- BigBaseV2/src/structs/lists.hpp | 45 +++++++++++++++++++++++++++++++++ BigBaseV2/src/structs/temp.hpp | 2 ++ 2 files changed, 47 insertions(+) create mode 100644 BigBaseV2/src/structs/lists.hpp diff --git a/BigBaseV2/src/structs/lists.hpp b/BigBaseV2/src/structs/lists.hpp new file mode 100644 index 00000000..889ed01d --- /dev/null +++ b/BigBaseV2/src/structs/lists.hpp @@ -0,0 +1,45 @@ +#pragma once + +namespace big +{ + inline const char* location_names[] = + { + "Eclipse Towers", "West Vinewood", "Las Lagunas", "Spanish Ave", "Power St", "Del Perro", + "Milton Rd", "The Royale", "La Puerta", "Rockford Dr", "Dream Tower", "San Vitas", "Vespucci Blvd", + "Cougar Ave", "Prosperity St","Weazel Plaza", "Del Perro Office", "Maze Bank West Office", + "Arcadius Office", "Maze Bank Office" + }; + inline int location_ids[] = { 1, 6, 10, 9, 8, 7, 11, 12, 14, 15, 16, 18, 20, 21, 22, 35, 87, 88, 89, 90 }; + + inline const char* weather_names[] = + { + "Clear", + "Sunny", + "Cloudy", + "Very Cloudy", + "Rain", + "Clearing", + "Thunder", + "Smog", + "Foggy", + "Christmas", + "Light Snow", + "Blizzard" + }; + + inline const char* weather_types[] = + { + "CLEAR", + "EXTRASUNNY", + "CLOUDS", + "OVERCAST", + "RAIN", + "CLEARING", + "THUNDER", + "SMOG", + "FOGGY", + "XMAS", + "SNOWLIGHT", + "BLIZZARD" + }; +} \ No newline at end of file diff --git a/BigBaseV2/src/structs/temp.hpp b/BigBaseV2/src/structs/temp.hpp index 92332e4c..879e3739 100644 --- a/BigBaseV2/src/structs/temp.hpp +++ b/BigBaseV2/src/structs/temp.hpp @@ -13,5 +13,7 @@ namespace big int spoofed_rank = 0; game_time time = game_time{}; int wanted_level = 0; + int teleport_location = 0; + int weather_type = 0; }; } \ No newline at end of file