feat(Lists & Temp): Added list of locations and weather names/types

This commit is contained in:
Yimura 2020-12-29 00:20:27 +01:00
parent e3ecc0a809
commit bbe28c5b69
No known key found for this signature in database
GPG Key ID: 54EFAD29393A6E78
2 changed files with 47 additions and 0 deletions

View File

@ -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"
};
}

View File

@ -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;
};
}