Exemplo n.º 1
0
        private void Client_OnJoinedChannel(object sender, TwitchLib.Client.Events.OnJoinedChannelArgs e)
        {
            Console.WriteLine($"Channel Joined: {e.Channel}.");

#if RELEASE
            client.SendMessage(e.Channel, "Hey guys!");
#endif
        }
Exemplo n.º 2
0
 private void TwitchClient_OnJoinedChannel(object sender, TwitchLib.Client.Events.OnJoinedChannelArgs e)
 {
 }
Exemplo n.º 3
0
 private void Client_OnJoinedChannel(object sender, TwitchLib.Client.Events.OnJoinedChannelArgs e)
 {
     client.SendMessage(channel, "차차가 입장했어요~");
 }
Exemplo n.º 4
0
 private void OnJoinedChannel(object sender, TwitchLib.Client.Events.OnJoinedChannelArgs e)
 {
     Debug.Log($"The bot {e.BotUsername} just joined the channel: {e.Channel}");
     _client.SendMessage(e.Channel, "I just joined the channel! PogChamp");
 }
Exemplo n.º 5
0
 private static void Client_OnJoinedChannel(object sender, TwitchLib.Client.Events.OnJoinedChannelArgs e)
 {
     SendMessage("SYSTEM", "joined channel");
 }
Exemplo n.º 6
0
 private static void OnJoinedChannel(object sender, Client.Events.OnJoinedChannelArgs joined) => LoggingManager.Log.Info($"Joined Twitch channel: {joined.Channel}");
Exemplo n.º 7
0
 private async void Client_OnJoinedChannel(object sender, TwitchLib.Client.Events.OnJoinedChannelArgs e)
 {
     await BotWrapper.DiscordBot.sendDebugMessage($"Joined chanenel {e.Channel}");
 }
Exemplo n.º 8
0
 private void TwitchClient_OnJoinedChannel(object sender, TwitchLib.Client.Events.OnJoinedChannelArgs e)
 {
     twitchClient.SendMessage(e.Channel, "Colorbot joined");
 }
Exemplo n.º 9
0
 private void OnJoinedChannel(object sender, TwitchLib.Client.Events.OnJoinedChannelArgs e)
 {
     Debug.Log($"The bot {e.BotUsername} just joined the channel: {e.Channel}");
     chat.NewMessage(new TwitchChat.Message("TwitchFliesOPFOR", "Connected to channel!"));
     _client.SendMessage(e.Channel, "VTOL VR connected!");
 }
 /// <summary>
 /// Clients the on joined channel.
 /// </summary>
 /// <param name="sender">The sender.</param>
 /// <param name="e">The e.</param>
 private void _client_OnJoinedChannel(object sender, TwitchLib.Client.Events.OnJoinedChannelArgs e)
 {
     _logger.LogInformation("Joined Twitch Channel: '{channel}'", _settings.Twitch.Channel);
 }
Exemplo n.º 11
0
        private void ChatClient_OnJoinedChannel(object sender, TwitchLib.Client.Events.OnJoinedChannelArgs e)
        {
#if DEBUG
            Trace.WriteLine($"Joined channel: {e.Channel}");
#endif
        }
Exemplo n.º 12
0
 private void _client_OnJoinedChannel(object sender, TwitchLib.Client.Events.OnJoinedChannelArgs e)
 {
     _logger.Log(_logId++, $"Joined channel {e.Channel}", DateTime.Now);
 }