GetRadioChannel

From Multi Theft Auto: Wiki
Revision as of 18:28, 25 March 2009 by Robhol (talk | contribs) (Created page!)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function retrieves the ID of the currently active radio channel.

Syntax

int getRadioChannel ( )             

Returns

Returns the ID of the radio channel.

  • 0: Radio off
  • 1: Playback FM
  • 2: K-Rose
  • 3: K-DST
  • 4: Bounce FM
  • 5: SF-UR
  • 6: Radio Los Santos
  • 7: Radio X
  • 8: CSR 103.9
  • 9: K-Jah West
  • 10: Master Sounds 98.3
  • 11: WCTR
  • 12: User track station

Example

addCommandHandler("getradio",
function ()

    outputChatBox("Your current radio station is: " .. getRadioChannel())

end
)

See Also

Shared