Created
August 20, 2014 16:16
-
-
Save llkats/59eb1d21938a390925c5 to your computer and use it in GitHub Desktop.
only reply to listed bots
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BOTS = ['imakewebthings', 'jensechu__', 'spladow_ebooks', '__skalnik', '__briantford', 'daveleeeeee', 'leadfriedman', 'jpnutsbach'] | |
bot.on_mention do |tweet, meta| | |
# Avoid infinite reply chains (very small chance of crosstalk) | |
next if BOTS.include?(tweet[:user][:screen_name]) && rand > 0.2 | |
# ... | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment