Scripting/Squirrel/Functions/CreateRadioStream: Difference between revisions

From Vice City Multiplayer
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing
(Created page with "This function will add a online radio to vehicle's radio. == Syntax == <pre>CreateRadioStream( radioName, radioURL, CanSelect )</pre> == Arguments == * ''string'' '''radio...")
 
Line 12: Line 12:


== Example ==
== Example ==
The following example send a message to all saying '''Hello, have fun here!''':
The following is an example for radio stream. Link not provided.
<source lang=squirrel>
<source lang=squirrel>
function onPlayerCommand( player, cmd, text );
function onPlayerCommand( player, cmd, text );

Revision as of 09:17, 2 March 2015

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 is an example for radio stream. Link not provided.

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.

Related Functions