Compare commits

..

8 Commits

2 changed files with 5 additions and 4 deletions

BIN
block.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -74,7 +74,7 @@ def get_coin(event, amt = 1)
# update score
author = event.methods.include?(:author) ? event.author : event.user
if $coin_state_active
if $coin_state_active != 0
if author.bot_account?
event.respond "Bots don't get coins!"
end
@ -144,7 +144,7 @@ end
bot.message(with_text: 'boobs', in: Integer(ENV['CUM_CHANNEL'])) do |event|
next if not ENV['CUM_CHANNEL']
event.respond "OHHHHHH IM GONNA CUM"
event.respond "# OHHHHHH IM GONNA CUM"
end
bot.reaction_add do |event|
@ -167,7 +167,7 @@ bot.message(in: Integer(ENV['BOT_CHANNEL'])) do |event|
if result == user_result
get_coin(event, MATH_PROBLEM_COIN_GAIN)
else
elsif user_result.is_a? Integer
event.respond "Nice try, but you're wrong!"
end
end
@ -188,7 +188,8 @@ loop do
$mathproblem_operator = rand(2) == 1 ? "+" : "-"
# send the math problem
bot.send_message(ENV['BOT_CHANNEL'], "Solve the following for #{MATH_PROBLEM_COIN_GAIN} coins: `#{$mathproblem_op1} #{$mathproblem_operator} #{mathproblem_op2}`")
bot.send_file(ENV['BOT_CHANNEL'], File.open('./block.gif', 'r'))
bot.send_message(ENV['BOT_CHANNEL'], "Solve the following for #{MATH_PROBLEM_COIN_GAIN} coins: `#{$mathproblem_op1} #{$mathproblem_operator} #{$mathproblem_op2}`")
else
# activate coin state
$coin_state_active = COIN_STATE_ACTIVE