2022-10-07 15:12:06 +00:00
require 'dotenv/load'
require 'yaml'
require 'discordrb'
2022-10-10 07:40:47 +00:00
2022-11-09 07:59:08 +00:00
MAX_COINS_PER_DAY = 4
2022-10-07 15:12:06 +00:00
COIN_TIMEOUT = 15
SCOREBOARD = './scoreboard.yml'
2022-11-04 13:31:32 +00:00
2022-11-09 14:12:41 +00:00
PASTA = 'You know what? Im done, i am leaving, we were friendly talking about the subject. This crossed the line of "ok killer of joy" to "no fun allowed"'
2022-10-07 15:12:06 +00:00
coin_state_active = false
2022-10-10 07:40:47 +00:00
coins_offered_today = 0
2022-10-07 15:12:06 +00:00
bot = Discordrb :: Bot . new token : ENV [ 'DISCORD_TOKEN' ]
def get_seconds_to_midnight ( time )
t2 = Time . new ( time . year , time . month , time . day + 1 )
return t2 - time
end
2022-10-10 07:40:47 +00:00
def get_random_hours ( min , max )
min_hours = min * 60 * 60
max_hours = max * 60 * 60
return rand ( min_hours .. max_hours )
2022-10-07 15:12:06 +00:00
end
def load_scoreboard ( )
YAML :: load_file ( SCOREBOARD ) || { }
end
2022-10-11 12:45:15 +00:00
def get_coin_count ( user )
scoreboard = load_scoreboard ( )
2022-10-07 15:12:06 +00:00
scoreboard [ user ] || 0
end
2022-10-11 14:14:09 +00:00
def increment_coin ( user , amount = 1 )
2022-10-11 11:24:06 +00:00
scoreboard = load_scoreboard ( )
2022-10-11 14:14:09 +00:00
coins = get_coin_count ( user ) + amount
2022-10-07 15:12:06 +00:00
scoreboard [ user ] = coins
File . write ( SCOREBOARD , scoreboard . to_yaml )
2022-10-11 14:14:09 +00:00
return coins
2022-10-07 15:12:06 +00:00
end
2022-10-11 11:24:06 +00:00
def empty_coin ( user )
scoreboard = load_scoreboard ( )
scoreboard [ user ] = 0
File . write ( SCOREBOARD , scoreboard . to_yaml )
end
2022-10-07 15:12:06 +00:00
def plural ( string , count )
2022-10-07 18:50:01 +00:00
" #{ count } #{ string } #{ count != 1 ? 's' : '' } "
2022-10-07 15:12:06 +00:00
end
2022-10-27 22:10:53 +00:00
def clean_name ( input )
input . tr '@' , ''
end
2022-10-11 11:24:06 +00:00
bot . message ( in : Integer ( ENV [ 'BOT_CHANNEL' ] ) ) do | event |
if event . message . attachments . count { | x | x . filename . scan ( / coin* / ) . length > 0 } > 0
2022-10-27 22:10:53 +00:00
event . respond " Oh no! Looks like you tried to post a fradulent coin! #{ clean_name event . author . display_name } , your coin balance has now been emptied. Let that be a lesson for next time! "
2022-10-11 11:24:06 +00:00
empty_coin ( event . author . id )
end
end
bot . message ( content : 'GET COIN' ) do | event |
2022-10-07 15:12:06 +00:00
# update score
if coin_state_active
2022-10-27 22:15:20 +00:00
if event . author . bot_account?
event . respond " Bots don't get coins! "
end
2022-10-20 09:20:05 +00:00
coin_state_active = false
2022-10-27 22:15:20 +00:00
if ( rand ( 100 ) == 47 )
2022-10-11 14:14:09 +00:00
hyper_coin_amount = rand ( 100 )
coins = increment_coin ( event . author . id , hyper_coin_amount )
2022-10-27 22:10:53 +00:00
event . respond " What astounding luck!!! #{ clean_name event . author . display_name } , you've just activated HYPER COIN EVENT and have received #{ hyper_coin_amount } coins for a grand total of #{ coins } coins! "
2022-10-11 14:14:09 +00:00
else
coins = increment_coin ( event . author . id )
2022-10-27 22:10:53 +00:00
event . respond " Nice catch, #{ clean_name event . author . display_name } ! You have #{ plural ( 'coin' , coins ) } now! "
2022-10-11 14:14:09 +00:00
end
2022-10-07 15:12:06 +00:00
else
2022-10-27 22:10:53 +00:00
event . respond " No coins for you, #{ clean_name event . author . display_name } ! "
2022-10-07 15:12:06 +00:00
end
end
bot . message ( with_text : '/coins' ) do | event |
2022-10-11 12:45:15 +00:00
coins = get_coin_count ( event . author . id )
2022-10-27 22:10:53 +00:00
event . respond " #{ clean_name event . author . display_name } , you have #{ plural ( 'coin' , coins ) } ! "
2022-10-07 15:12:06 +00:00
end
2022-11-09 14:12:41 +00:00
bot . message ( with_text : '!leave' ) do | event |
event . respond PASTA
end
2022-10-07 15:12:06 +00:00
bot . run ( true )
2022-10-27 22:15:20 +00:00
loop do
2022-10-10 07:40:47 +00:00
# sleep random amount of time between 1 and 4 hours
sleep ( get_random_hours ( 1 , 4 ) )
2022-10-10 19:47:09 +00:00
# activate coin state
coin_state_active = true
2022-10-07 15:12:06 +00:00
# send coin GIF
bot . send_file ( ENV [ 'BOT_CHANNEL' ] , File . open ( './coin.gif' , 'r' ) )
2022-10-10 07:40:47 +00:00
coins_offered_today += 1
2022-10-07 15:12:06 +00:00
2022-10-10 07:40:47 +00:00
# if max coins per day has reached, sleep until midnight
if coins_offered_today > = MAX_COINS_PER_DAY
sleep ( get_seconds_to_midnight ( Time . now ) )
2022-11-09 07:58:17 +00:00
sleep ( get_random_hours ( 5 , 11 ) )
2022-10-10 07:40:47 +00:00
coins_offered_today = 0
end
2022-10-07 15:12:06 +00:00
end
bot . join ( )