コード例 #1
0
ファイル: ChatbotService.cs プロジェクト: Farami/CodedChatbot
 private void onNewSub(object sender, OnNewSubscriberArgs e)
 {
     try
     {
         Console.Out.WriteLine("New Sub! WOOOOO");
         Console.Out.WriteLine(e.Subscriber.DisplayName);
         vipHelper.GiveSubVip(e.Subscriber.DisplayName);
     }
     catch (Exception ex)
     {
         Console.Out.WriteLine(ex.ToString());
     }
 }