From b24afe7b80df88556665790dae86ab1e0e22c975 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lera=20Elvo=C3=A9?= Date: Mon, 7 Nov 2022 15:20:44 +0300 Subject: [PATCH] give coin with react --- coin.rb | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/coin.rb b/coin.rb index 1d5b4db..b6af3b4 100644 --- a/coin.rb +++ b/coin.rb @@ -8,6 +8,7 @@ COIN_TIMEOUT = 15 SCOREBOARD = './scoreboard.yml' DUMBASS = 521596582962003968 DUMBASS_BOT = 1034966228755820575 +COIN_EMOJI = '🪙' coin_state_active = false coins_offered_today = 0 @@ -98,6 +99,25 @@ bot.message(from: DUMBASS_BOT) do |event| end +bot.reaction_add do |event| + next unless event.emoji.name == COIN_EMOJI + reactor_coins = get_coin_count(event.user.id) + if reactor_coins == 0 + event.respond("<@#{event.user.id}>, you're a poor shmuck!") + next + end + + if event.message.author == event.user + event.respond("<@#{event.user.id}>, you can't give coins to yourself!") + next + end + + increment_coin(event.message.author.id) + increment_coin(event.user.id, -1) + + event.respond "<@#{event.message.author.id}>, you have been given a coin by <@#{event.user.id}>!" +end + bot.run(true) loop do