StopSoundPlayback

Stops the currently playing sound from Streamer.bot, by name

Signature

public void StopSoundPlayback(string soundName)

Parameters

soundName
string required

No description provided.

Return Type

void

Example

using System;
public class CPHInline
{
    public bool Execute()
    {
        //Stop all sounds with the name "Kachow"
        CPH.StopSoundPlayback("Kachow");         
        return true;
    }
}