diff --git a/Bot/Games/Store.fs b/Bot/Games/Store.fs index f5edd04..9d59bc0 100644 --- a/Bot/Games/Store.fs +++ b/Bot/Games/Store.fs @@ -276,11 +276,11 @@ let checkHasRequiredInvites storeItem player = let embed = DiscordEmbedBuilder() embed.Description <- $""" ❌ **Degen**, can’t you **READ**?! -⚠️ **__Entry Requirements:__** 1x Invited User +⚠️ **__Entry Requirements:__** {amount}x Invited User -To Enter this Raffle you must have **__INVITED__** 1 Degen. +To Enter this Raffle you must have **__INVITED__** {amount} Degen. ☑️ Go to <#{GuildEnvironment.channelRecruitment}> -☑️ Invite just 1 Degen! +☑️ Invite just {amount} Degen! Then try again… """ @@ -299,7 +299,8 @@ let checkHasRequiredRole storeItem (user : DiscordMember) = Ok () else let embed = DiscordEmbedBuilder() - embed.Description <- $""" + if roleId = GuildEnvironment.roleMagicEden then + embed.Description <- $""" ❌ **Degen**, can’t you **READ**?! ⚠️ **__Entry Requirements:__** Have the <@&{GuildEnvironment.roleMagicEden}> @@ -307,6 +308,12 @@ To get the <@&{GuildEnvironment.roleMagicEden}> role: ☑️ Upvote us on magic here: https://magiceden.io/drops/degenz_game ☑️ Post Proof in <#{GuildEnvironment.channelQuestProof}> +Then try again…""" + else + embed.Description <- $""" +❌ **Degen**, can’t you **READ**?! +⚠️ **__Entry Requirements:__** Have the <@&{roleId}> + Then try again… """ DiscordFollowupMessageBuilder()