Scripting/Squirrel/Functions/DestroyRadioStream: Difference between revisions
Jump to navigation
Jump to search
This wiki is using an old backup from 2020
Some information may be old/missing
(Created page with "This function will destroy a radio stream. == Syntax == <pre>DestroyRadioStream(radioID)</pre> == Arguments == * ''int'' '''radioID''' - The radio ID. == Example == {{Sc...") |
No edit summary |
||
(6 intermediate revisions by one other user not shown) | |||
Line 3: | Line 3: | ||
== Syntax == | == Syntax == | ||
<pre>DestroyRadioStream( | <pre>DestroyRadioStream(streamID)</pre> | ||
== Arguments == | == Arguments == | ||
* ''int'' ''' | * ''int'' '''streamID''' - The radio ID. | ||
== Example == | == Example == | ||
{ | <source lang=squirrel> | ||
function onScriptUnload() | |||
{ | |||
DestroyRadioStream(1);//1 = the ID you used in CreateRadioStream | |||
return 1; | |||
} | |||
</source> | |||
=== Notes === | === Notes === | ||
Call [[onScriptUnload]] were used in this example. More info about them in the corresponding pages. | |||
== Related Functions == | == Related Functions == | ||
{{Scripting/Squirrel/Functions/Game_Functions}} | {{Scripting/Squirrel/Functions/Game_Functions}} | ||
[[Category:Scripting/Squirrel/Functions/Game_Functions]] |
Latest revision as of 18:04, 30 January 2017
This function will destroy a radio stream.
Syntax
DestroyRadioStream(streamID)
Arguments
- int streamID - The radio ID.
Example
function onScriptUnload()
{
DestroyRadioStream(1);//1 = the ID you used in CreateRadioStream
return 1;
}
Notes
Call onScriptUnload were used in this example. More info about them in the corresponding pages.