Scripting/Squirrel/Functions/CreateRadioStream
This wiki is using an old backup from 2020
Some information may be old/missing
This function will add a online radio to vehicle's radio.
Syntax
CreateRadioStream( radioName, radioURL, CanSelect )
Arguments
- string radioName - The radio name
- string radioURL - The online radio URL
- bool CanSelect - Show the radio stream on vehicle's radio list.
Example
The following example send a message to all saying Hello, have fun here!:
function onPlayerCommand( player, cmd, text );
{
if ( cmd == "radio" )
{
player.Vehicle.Radio = CreateRadioStream( "TestRadio", "YourURL", true );
}
}
Notes
Call onPlayerCommand were used in this example. More info about them in the corresponding pages.