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
No edit summary
No edit summary
Line 19: Line 19:
</source>
</source>


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


Call [[onScriptUnload]] were used in this example. More info about them in the corresponding pages.
Call [[onScriptUnload]] were used in this example. More info about them in the corresponding pages.

Revision as of 16:45, 25 April 2016

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.


Related Functions