コード例 #1
0
        public void Process(TwitchClient client, string username, string commandText, bool isMod)
        {
            var vips = vipHelper.GetVipRequests(username);

            if (vips == null)
            {
                client.SendMessage($"Hey @{username}, something went wrong with the chatbot. Ask @CodedGhost2 what he's playing at!");
            }

            if (vips.TotalRemaining == 0)
            {
                client.SendMessage($"Hey @{username}, it looks like you have {vips.TotalRemaining}. :(");
            }
            else
            {
                client.SendMessage($"Hey @{username}, it looks like you have {vips.TotalRemaining} VIPs left!");
            }
        }