Created
November 4, 2022 12:10
-
-
Save SpaghettDev/9c932c02bc3ce526bc0b28b7c215598f to your computer and use it in GitHub Desktop.
All GTA 5 radio stations (including hidden ones).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Taken from https://gist.github.com/Sainan/e290bef8b482005a01f3444d3341ac5f | |
// and https://web.archive.org/web/20211024160434/https://pastebin.com/Kj9t38KF. | |
std::vector<std::string> radio_stations{ | |
"RADIO_11_TALK_02", // Blaine County Radio | |
"RADIO_12_REGGAE", // The Blue Ark | |
"RADIO_13_JAZZ", // Worldwide FM | |
"RADIO_14_DANCE_02", // FlyLo FM | |
"RADIO_15_MOTOWN", // The Lowdown 9.11 | |
"RADIO_20_THELAB", // The Lab | |
"RADIO_16_SILVERLAKE", // Radio Mirror Park | |
"RADIO_17_FUNK", // Space 103.2 | |
"RADIO_18_90S_ROCK", // Vinewood Boulevard Radio | |
"RADIO_21_DLC_XM17", // Blonded Los Santos 97.8 FM | |
"RADIO_22_DLC_BATTLE_MIX1_RADIO", // Los Santos Underground Radio | |
"RADIO_23_DLC_XM19_RADIO", // iFruit Radio | |
"RADIO_19_USER", // Self Radio | |
"RADIO_01_CLASS_ROCK", // Los Santos Rock Radio | |
"RADIO_02_POP", // Non-Stop-Pop FM | |
"RADIO_03_HIPHOP_NEW", // Radio Los Santos | |
"RADIO_04_PUNK", // Channel X | |
"RADIO_05_TALK_01", // West Coast Talk Radio | |
"RADIO_06_COUNTRY", // Rebel Radio | |
"RADIO_07_DANCE_01", // Soulwax FM | |
"RADIO_08_MEXICAN", // East Los FM | |
"RADIO_09_HIPHOP_OLD", // West Coast Classics | |
"RADIO_36_AUDIOPLAYER", // Media Player | |
"RADIO_35_DLC_HEI4_MLR", // The Music Locker | |
"RADIO_34_DLC_HEI4_KULT", // Kult FM | |
"RADIO_27_DLC_PRHEI4", // Still Slipping Los Santos | |
"HIDDEN_RADIO_01_CLASS_ROCK", | |
"HIDDEN_RADIO_AMBIENT_TV_BRIGHT", | |
"HIDDEN_RADIO_AMBIENT_TV", | |
"HIDDEN_RADIO_ADVERTS", | |
"HIDDEN_RADIO_02_POP", | |
"HIDDEN_RADIO_03_HIPHOP_NEW", | |
"HIDDEN_RADIO_04_PUNK", | |
"HIDDEN_RADIO_06_COUNTRY", | |
"HIDDEN_RADIO_07_DANCE_01", | |
"HIDDEN_RADIO_09_HIPHOP_OLD", | |
"HIDDEN_RADIO_12_REGGAE", | |
"HIDDEN_RADIO_15_MOTOWN", | |
"HIDDEN_RADIO_16_SILVERLAKE", | |
"HIDDEN_RADIO_STRIP_CLUB", | |
"RADIO_22_DLC_BATTLE_MIX1_CLUB", | |
"DLC_BATTLE_MIX1_CLUB_PRIV", | |
"HIDDEN_RADIO_BIKER_CLASSIC_ROCK", | |
"DLC_BATTLE_MIX2_CLUB_PRIV", | |
"RADIO_23_DLC_BATTLE_MIX2_CLUB", | |
"HIDDEN_RADIO_BIKER_MODERN_ROCK", | |
"RADIO_25_DLC_BATTLE_MIX4_CLUB", | |
"RADIO_26_DLC_BATTLE_CLUB_WARMUP", | |
"DLC_BATTLE_MIX4_CLUB_PRIV", | |
"HIDDEN_RADIO_BIKER_PUNK", | |
"RADIO_24_DLC_BATTLE_MIX3_CLUB", | |
"DLC_BATTLE_MIX3_CLUB_PRIV", | |
"HIDDEN_RADIO_BIKER_HIP_HOP", | |
"OFF" | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment