KickDeleteChatMessage
Deletes the selected chat message (by message ID) from the Kick stream
Signature
public bool KickDeleteChatMessage(string messageId)
Parameters
messageId
string required
Return Type
bool
Example
using System;
public class CPHInline
{
public bool Execute()
{
// get the current messaged ID from the Kick chat message
CPH.TryGetArg("messageId", out string messageId);
// delete the associated Kick chat message
CPH.KickDeleteChatMessage(messageId);
return true;
}
}