Stop All Sound Playback
Stops all sounds that are currently playing in Streamer.bot
Parameters
No parameters required.Variables
Name | Type | Description |
---|---|---|
No data |
C# Usage
Stops all sounds from playing that were started by Streamer.bot
0.2.4
public void StopAllSoundPlayback()
No parameters
using System;
public class CPHInline
{
public bool Execute()
{
CPH.StopAllSoundPlayback();
return true;
}
}