From 2519220ea5cce6c26a23e8f29359f9dcbfb6e94f Mon Sep 17 00:00:00 2001 From: Joseph Ferano Date: Mon, 28 Mar 2022 18:29:50 +0700 Subject: [PATCH] Moar --- Bot/GuildEnvironment.fs | 1 - Bot/InviteTracker.fs | 13 +++++-------- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/Bot/GuildEnvironment.fs b/Bot/GuildEnvironment.fs index 902c5da..5620d05 100644 --- a/Bot/GuildEnvironment.fs +++ b/Bot/GuildEnvironment.fs @@ -26,7 +26,6 @@ let channelArmory = getId "CHANNEL_ARMORY" let channelBattle = getId "CHANNEL_BATTLE" let channelWelcome = getId "CHANNEL_WELCOME" let channelWhitelist = getId "CHANNEL_WHITELIST" -let channelElite = getId "CHANNEL_ELITE" let channelTosserTed = getId "CHANNEL_TOSSERTED" let channelShelters = getId "CHANNEL_SHELTERS" //let channelBackAlley = getId "CHANNEL_BACKALLEY" diff --git a/Bot/InviteTracker.fs b/Bot/InviteTracker.fs index 377175d..45298a7 100644 --- a/Bot/InviteTracker.fs +++ b/Bot/InviteTracker.fs @@ -184,7 +184,7 @@ let guildInviteEmbed = .AddEmbed(embed) .AsEphemeral(true) - let button = DiscordButtonComponent(ButtonStyle.Success, $"CreateGuildInvite", $"Give Me the Link") :> DiscordComponent + let button = DiscordButtonComponent(ButtonStyle.Success, $"CreateGuildInvite", $"GET MY UNIQUE LINK") :> DiscordComponent builder.AddComponents [| button |] let private showInviteMessage (ctx : IDiscordContext) = @@ -378,7 +378,9 @@ Go to <#{GuildEnvironment.channelShelters}> NOW to get assigned a bunk, and **JO let alreadyWhitelistedMsg = $""" ✅ You’re **ALREADY** Whitelisted! Save some for other Degenz… -Remember, you can earn `{InviteRewardAmount} $GBT` 💰 for every Degen you `/recruit` into the game! +**Remember:** +Earn `100 $GBT` 💰 for every Degen you recruit into the game! +Just type `/recruit` anywhere, or press the button below... **Commands:** `/recruit` - Invite Degenz into the server. @@ -459,12 +461,7 @@ let handleBuyWhitelist (ctx : IDiscordContext) = match! tryGrantWhitelist ctx with | NotAHacker -> builder.Content <- $"You are somehow not a hacker anymore, what exactly are you doing?" | NotInGame -> builder.Content <- $"You somehow have left the game, what exactly are you doing?" - | AlreadyWhitelisted -> - builder.Content <- $""" -🎉 You're already WHITELISTED! - -Come hang with all the other VIP Degenz in the <#{GuildEnvironment.channelElite}> -""" + | AlreadyWhitelisted -> builder.Content <- "🎉 You're already WHITELISTED!" | NotEnoughGBT _ -> builder.Content <- $"You somehow do not have enough $GBT, what exactly are you doing?" | Granted player -> let embed = DiscordEmbedBuilder()