diff --git a/TwitchBot.rb b/TwitchBot.rb index 36951e8..b62b036 100644 --- a/TwitchBot.rb +++ b/TwitchBot.rb @@ -39,9 +39,9 @@ message_count = 0 message_limit = Time.now.to_i # Commands -commands = ["!about","!uptime","!commands","!cortexio","!followed"] # Add commands here -api_commands = ["!followed","!uptime"] -admin_commands = ["!disconnect"] +commands = ["!examplecommand","!ping"] # Add commands here +api_commands = ["!followed","!uptime"] # API commands here +admin_commands = ["!disconnect"] # Channel owner commands here # Authorization Login socket.puts("PASS #{OAUTH}") # Send the password(oauth) to Twitch @@ -152,4 +152,4 @@ end # Loop to keep bot going while (running) do gets.chomp -end \ No newline at end of file +end