Scripting/Squirrel/Functions/DestroyRadioStream
This wiki is using an old backup from 2020
Some information may be old/missing
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;
}