StopAllSoundPlayback
Stops all sounds from playing that were started by Streamer.bot
Signature
public void StopAllSoundPlayback()
Parameters
No parameters.
Return Type
void
Example
using System;
public class CPHInline
{
public bool Execute()
{
CPH.StopAllSoundPlayback();
return true;
}
}