Scripting/Squirrel/Functions/DestroyRadioStream: 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 destroy a radio stream. == Syntax == <pre>DestroyRadioStream(radioID)</pre> == Arguments == * ''int'' '''radioID''' - The radio ID. == Example == {{Sc...")
 
No edit summary
Line 3: Line 3:
== Syntax ==
== Syntax ==


<pre>DestroyRadioStream(radioID)</pre>
<pre>DestroyRadioStream(streamID)</pre>


== Arguments ==
== Arguments ==


* ''int'' '''radioID''' - The radio ID.
* ''int'' '''streamID''' - The radio ID.


== Example ==
== Example ==


{{Scripting/Needs_Example}}
<source lang=squirrel>
function onScriptUnload()
{
DestroyRadioStream(0);//0 = the ID you used in CreateRadioStream
return 1;
}
</source>


=== Notes ===
=== Notes ===

Revision as of 14:13, 23 April 2016

This function will destroy a radio stream.

Syntax

DestroyRadioStream(streamID)

Arguments

  • int streamID - The radio ID.

Example

function onScriptUnload()
{
	DestroyRadioStream(0);//0 = the ID you used in CreateRadioStream
	return 1;
}

Notes

Related Functions