forked from mud/bankerbot-rb
Compare commits
10 Commits
b24afe7b80
...
f3d2ba62f0
Author | SHA1 | Date | |
---|---|---|---|
f3d2ba62f0 | |||
702f0ca119 | |||
29bca2cafc | |||
f188c90284 | |||
ccc19b384e | |||
5e98f7353b | |||
6e492fc296 | |||
0c94e60258 | |||
cc0c60a82b | |||
66e6c3f688 |
19
coin.rb
19
coin.rb
@ -3,12 +3,17 @@ require 'yaml'
|
|||||||
require 'discordrb'
|
require 'discordrb'
|
||||||
|
|
||||||
|
|
||||||
MAX_COINS_PER_DAY = 3
|
MAX_COINS_PER_DAY = 4
|
||||||
COIN_TIMEOUT = 15
|
COIN_TIMEOUT = 15
|
||||||
SCOREBOARD = './scoreboard.yml'
|
SCOREBOARD = './scoreboard.yml'
|
||||||
|
<<<<<<< HEAD
|
||||||
|
|
||||||
|
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"'
|
||||||
|
=======
|
||||||
DUMBASS = 521596582962003968
|
DUMBASS = 521596582962003968
|
||||||
DUMBASS_BOT = 1034966228755820575
|
DUMBASS_BOT = 1034966228755820575
|
||||||
COIN_EMOJI = '🪙'
|
COIN_EMOJI = '🪙'
|
||||||
|
>>>>>>> b24afe7 (give coin with react)
|
||||||
|
|
||||||
coin_state_active = false
|
coin_state_active = false
|
||||||
coins_offered_today = 0
|
coins_offered_today = 0
|
||||||
@ -92,11 +97,13 @@ bot.message(with_text: '/coins') do |event|
|
|||||||
event.respond "#{clean_name event.author.display_name}, you have #{plural('coin', coins)}!"
|
event.respond "#{clean_name event.author.display_name}, you have #{plural('coin', coins)}!"
|
||||||
end
|
end
|
||||||
|
|
||||||
bot.message(from: DUMBASS_BOT) do |event|
|
bot.message(with_text: '!leave') do |event|
|
||||||
next unless event.message.content.scan(/(?=no swearing)/).count > 0
|
event.respond PASTA
|
||||||
coins = increment_coin(DUMBASS, -1)
|
end
|
||||||
event.respond "<@#{DUMBASS}>, you have been penalized 1 coin for the grossly negligent behavior of your Intellectual Offspring! You now have #{plural('coin', coins)}."
|
|
||||||
|
|
||||||
|
bot.message(with_text: '!cum', in: Integer(ENV['CUM_CHANNEL'])) do |event|
|
||||||
|
next if not ENV['CUM_CHANNEL']
|
||||||
|
event.respond "OHHHHHH IM GONNA CUM"
|
||||||
end
|
end
|
||||||
|
|
||||||
bot.reaction_add do |event|
|
bot.reaction_add do |event|
|
||||||
@ -132,7 +139,7 @@ loop do
|
|||||||
# if max coins per day has reached, sleep until midnight
|
# if max coins per day has reached, sleep until midnight
|
||||||
if coins_offered_today >= MAX_COINS_PER_DAY
|
if coins_offered_today >= MAX_COINS_PER_DAY
|
||||||
sleep(get_seconds_to_midnight(Time.now))
|
sleep(get_seconds_to_midnight(Time.now))
|
||||||
sleep(get_random_hours(0, 11))
|
sleep(get_random_hours(5, 11))
|
||||||
coins_offered_today = 0
|
coins_offered_today = 0
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user