Ejemplo n.º 1
0
 private void Client_OnJoinedChannel(object sender, OnJoinedChannelArgs e)
 {
     //client.SendMessage(ChannelToMod, "Successfully Joined");
 }
Ejemplo n.º 2
0
        private void Client_OnJoinedChannel(object sender, OnJoinedChannelArgs e)
        {
            Channel channel = channelDict[e.Channel];

            channel.Handler.OnJoin(channel);
        }
Ejemplo n.º 3
0
 private void Client_OnJoinedChannel(object sender, OnJoinedChannelArgs e)
 {
     mainForm.ChangeConnectionStatusLabel("Connectat a: " + char.ToUpper(e.Channel[0]) + e.Channel.Substring(1));
 }
Ejemplo n.º 4
0
 private void Client_OnJoinedChannel(object sender, OnJoinedChannelArgs e)
 {
     Console.WriteLine("Hey guys! I am a bot connected via TwitchLib!");
     client.SendMessage(e.Channel, "Hey guys! I am a bot connected via TwitchLib!");
 }
Ejemplo n.º 5
0
        // TWITCHLIB - for chat

        private void Client_OnJoinedChannel(object sender, OnJoinedChannelArgs e)
        {
            Console.WriteLine("Just connected to " + e.Channel);
            BotConnected?.Invoke(this, e);
        }
Ejemplo n.º 6
0
 private static void OnJoinedChannel(object sender, OnJoinedChannelArgs e)
 {
     Log($"Successfully joined channel {e.Channel}.");
 }
Ejemplo n.º 7
0
 private static void onJoinedChannel(object sender, OnJoinedChannelArgs e)
 {
     client.SendMessage(e.Channel, "Successfully connected, hello!");
 }
Ejemplo n.º 8
0
 private void Client_OnJoinedChannel(object sender, OnJoinedChannelArgs e)
 {
     this.WriteLine("Hey guys! I am a bot connected via TwitchLib at " + e.Channel);
 }
Ejemplo n.º 9
0
 private void Client_OnJoinedChannel(object sender, OnJoinedChannelArgs e)
 {
     Console.WriteLine("Hey guys! I am a bot connected via TwitchLib!");
     client.SendMessage(e.Channel, "Hi, tiptippy the tipping bot has arrived. I'll help you share the love. Try out <@tiptippy balance>.");
 }
 private async void Client_OnJoinedChannel(object sender, OnJoinedChannelArgs e)
 {
     await _eventProxy.PublishAsync(new TwitchJoinedChannelNotification(this, e.Channel, e.BotUsername))
     .ConfigureAwait(false);
 }
Ejemplo n.º 11
0
 private void Client_OnJoinedChannel(object sender, OnJoinedChannelArgs e)
 {
     Console.WriteLine("The bot has joined the channel.");
     Client.SendMessage(e.Channel, "The bot has arrived!");
 }
Ejemplo n.º 12
0
 private void TwitchClientOnOnJoinedChannel(object sender, OnJoinedChannelArgs e)
 {
     SendMessage($"{e.BotUsername} just entered. Behave!");
 }
Ejemplo n.º 13
0
 private void Client_OnJoinChannel(object sender, OnJoinedChannelArgs onJoindedChannelArgs)
 {
     Debug.Log("User " + onJoindedChannelArgs.Username + " joined channel");
 }
Ejemplo n.º 14
0
 private void ClientOnJoinedChannel(object?sender, OnJoinedChannelArgs e)
 {
     _twitchClientServices.Client.SendMessage(e.Channel, "Hello peeps! Yeet all the thingz!");
 }
Ejemplo n.º 15
0
 private void OnJoinChannel(object sender, OnJoinedChannelArgs e)
 {
     Debug.Log("<color=green> JOINED:  " + e.Channel + "</color>");
 }
Ejemplo n.º 16
0
 private void Client_OnJoinedChannel(object sender, OnJoinedChannelArgs e)
 {
     Console.WriteLine("Hey guys! I am a bot connected via TwitchLib!");
     twitchClient.SendMessage(e.Channel, "Hey guys! I am DiceMastersBot! I do not play marbles, sorry.");
 }
Ejemplo n.º 17
0
 /// <summary>
 /// Called when the twitch client joins a channel (callback)
 /// </summary>
 private void OnJoinedChannel(object sender, OnJoinedChannelArgs e)
 {
     logger.Information($"successfully joined twitch channel \"{config.ChannelName}\"");
 }
Ejemplo n.º 18
0
 private void OnJoinedChannel(object sender, OnJoinedChannelArgs e)
 {
     Console.ForegroundColor = ConsoleColor.Green;
     Console.WriteLine($"Successfully joined Channel: {e.Channel}");
     Console.ForegroundColor = ConsoleColor.Gray;
 }
Ejemplo n.º 19
0
 private void Client_OnJoinedChannel(object sender, OnJoinedChannelArgs e)
 {
     channel = e.Channel;
     TwitchClient.SendMessage(channel, $"Jeu des viewers opérationnel");
 }
Ejemplo n.º 20
0
 private void Client_OnJoinedChannel(object sender, OnJoinedChannelArgs e)
 {
     Console.WriteLine("J5 is connected to chat");
     //Run_cmd("D:\\Dev\\Stream\\Vector\\VectorREST\\remote_control.py","");
 }
Ejemplo n.º 21
0
 private void onJoinedChannel(object sender, OnJoinedChannelArgs e)
 {
     UIManager.Instance.printMessage($"Connected to channel: {e.Channel}");
 }
Ejemplo n.º 22
0
 protected virtual void Client_OnJoinedChannel(object?sender, OnJoinedChannelArgs e)
 {
 }
Ejemplo n.º 23
0
 private void ClientOnJoinedChannel(object sender, OnJoinedChannelArgs e)
 {
     joinedChannel = new JoinedChannel(channel_name);
     botChannel    = new JoinedChannel(bot_name);
     //client.SendMessage(joinedChannel, "SimpaGameBotConnected");
 }
 private void ClientOnJoinedChannel(object sender, OnJoinedChannelArgs e)
 {
     Debug.Log("CommandController has connected.");
 }
Ejemplo n.º 25
0
 private void client_OnJoinedChannel(object sender, OnJoinedChannelArgs e)
 {
     this.Dispatcher.Invoke(() => Chat.Items.Insert(0, "Client has joined the Channel " + channel));
     this.Dispatcher.Invoke(() => controlListMemory());
 }
Ejemplo n.º 26
0
 private void Client_OnJoinedChannel(object sender, OnJoinedChannelArgs e)
 {
 }
 private void Twitch_OnJoinedChannel(object sender, OnJoinedChannelArgs e)
 {
     _twitch.SendMessage(e.Channel, "Hi chat! I'm watching for light commands now!");
     _logger.LogInformation($"Connected to Twitch Channel {e.Channel}");
 }
Ejemplo n.º 28
0
 private void Client_OnJoinedChannel(object sender, OnJoinedChannelArgs e)
 {
     client.SendMessage(e.Channel, "Привет! Я неофициальный бот HPG 2.0. Пиши !команды в чат, чтобы узнать список доступных команд.");
 }
Ejemplo n.º 29
0
 private void Client_OnJoinedChannel(object sender, OnJoinedChannelArgs e)
 {
     LogUtil.LogInfo($"Joined {e.Channel}", e.BotUsername);
     client.SendMessage(e.Channel, "Connected!");
 }
Ejemplo n.º 30
0
 private void clientJoinedChannel(object sender, OnJoinedChannelArgs e)
 {
     //chatAccess($"Client joined channel: {e.Channel}");
 }