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
No edit summary |
No edit summary |
||
Line 18: | Line 18: | ||
} | } | ||
</source> | </source> | ||
== Notes == | |||
Destroy a Radio Stream with ID 0 does not work! | |||
== Related Functions == | == Related Functions == | ||
{{Scripting/Squirrel/Functions/Game_Functions}} | {{Scripting/Squirrel/Functions/Game_Functions}} |
Revision as of 14:19, 23 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
Destroy a Radio Stream with ID 0 does not work!