Radio station identifiers are used to control in-game radio. Use these with natives
like SetRadioToStationName, GetPlayerRadioStationName, and SetVehRadioStation.
-- Set player's radio station
SetRadioToStationName("RADIO_03_HIPHOP_NEW") -- Radio Los Santos
-- Turn radio off
SetRadioToStationName("OFF")
-- Get current station
local station = GetPlayerRadioStationName()
print(station)// JavaScript equivalent
SetRadioToStationName("RADIO_03_HIPHOP_NEW");
const station = GetPlayerRadioStationName();
console.log(station);| Internal Name | Station Name | Genre |
|---|---|---|
| RADIO_01_CLASS_ROCK | Los Santos Rock Radio | Classic Rock |
| RADIO_02_POP | Non-Stop-Pop FM | Pop |
| RADIO_03_HIPHOP_NEW | Radio Los Santos | Hip-Hop |
| RADIO_04_PUNK | Channel X | Punk Rock |
| RADIO_05_TALK_01 | West Coast Talk Radio | Talk Radio |
| RADIO_06_COUNTRY | Rebel Radio | Country |
| RADIO_07_DANCE_01 | Soulwax FM | Dance/Electronic |
| RADIO_08_MEXICAN | East Los FM | Mexican/Latin |
| RADIO_09_HIPHOP_OLD | West Coast Classics | Classic Hip-Hop |
| RADIO_11_TALK_02 | Blaine County Radio | Talk Radio |
| RADIO_12_REGGAE | Blue Ark | Reggae/Dub |
| RADIO_13_JAZZ | Worldwide FM | Jazz/World |
| RADIO_14_DANCE_02 | FlyLo FM | Electronic/Experimental |
| RADIO_15_MOTOWN | The Lowdown 91.1 | Motown/Soul |
| RADIO_16_SILVERLAKE | Radio Mirror Park | Indie/Alternative |
| RADIO_17_FUNK | Space 103.2 | Funk/Disco |
| RADIO_18_90S_ROCK | Vinewood Boulevard Radio | 90s Rock |
| RADIO_19_USER | Self Radio | User Music |
| RADIO_20_THELAB | The Lab | Hip-Hop/Electronic |
| RADIO_21_DLC_XM17 | Blonded Los Santos 97.8 FM | R&B/Experimental |
| RADIO_22_DLC_BATTLE_MIX1_RADIO | Los Santos Underground Radio | Electronic |
| RADIO_23_DLC_XM19_RADIO | iFruit Radio | Hip-Hop |
| RADIO_27_DLC_PRHEI4 | Still Slipping Los Santos | Grime/Electronic |
| RADIO_34_DLC_HEI4_KULT | Kult FM | Alternative |
| RADIO_35_DLC_HEI4_MLR | The Music Locker | Dance/House |
| RADIO_OFF | Radio Off | N/A |