Audio::setRadioTrack: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
(yay)
Line 1: Line 1:
Only found this one in the decompiled scripts:<br><br>AUDIO::SET_RADIO_TRACK('RADIO_03_HIPHOP_NEW', 'ARM1_RADIO_STARTS');<br>
Only found this one in the decompiled scripts:<br><br>AUDIO::SET_RADIO_TRACK('RADIO_03_HIPHOP_NEW', 'ARM1_RADIO_STARTS');<br>
==Syntax==
==Syntax==
<syntaxhighlight lang="javascript">audio.setRadioTrack(radioStation, radioTrack);</syntaxhighlight>
<syntaxhighlight lang="javascript">mp.game.audio.setRadioTrack(radioStation, radioTrack);</syntaxhighlight>
=== Required Arguments ===
=== Required Arguments ===
*'''radioStation:''' String
*'''radioStation:''' String

Revision as of 21:04, 6 May 2017

Only found this one in the decompiled scripts:

AUDIO::SET_RADIO_TRACK('RADIO_03_HIPHOP_NEW', 'ARM1_RADIO_STARTS');

Syntax

mp.game.audio.setRadioTrack(radioStation, radioTrack);

Required Arguments

  • radioStation: String
  • radioTrack: String

Return value

  • Undefined

Example

// todo

See also