CommandResetAllUserCooldowns

Reset all users cooldowns on all platforms associated with the specified command, by ID

public void CommandResetAllUserCooldowns(string id)
id
string required
void
using System;
public class CPHInline
{
    public bool Execute()
    {
        //Define string of commandId
        string commandId = "4fcc2d13-9bcf-4c18-9d91-821a15f4b6e5";
        
        //Reset all user cooldowns
        CPH.CommandResetAllUserCooldowns(commandId);         
        return true;
    }
}