This commit is contained in:
Joseph Ferano 2022-03-21 14:05:55 +07:00
parent acb71cc37d
commit bc99165de6

View File

@ -134,8 +134,8 @@ let createGuildInvite (ctx : IDiscordContext) =
let embed =
DiscordEmbedBuilder()
.WithDescription($"**⏀ Your Mission:**\n`Copy this link` & share it with Degenz you want to `/recruit`.\n\n" +
$"**⌼ Your Reward:**\n`Earn {InviteRewardAmount} $GBT` 💰 for every Degen you've `/RECRUITED`." +
.WithDescription($"**⏀ | Your Mission:**\n`Copy this link` & share it with Degenz you want to `/recruit`.\n\n" +
$"**⌼ | Your Reward:**\n`Earn {InviteRewardAmount} $GBT` 💰 for every Degen you've `/recruited`." +
$"```https://discord.gg/{invite.Code}```")
.WithImageUrl("https://pbs.twimg.com/profile_banners/1449270642340089856/1640071520/1500x500")
// .WithImageUrl("https://s7.gifyu.com/images/Resistance_Poster_Final_1.jpg")
@ -181,7 +181,7 @@ let getInvitedUsersForId (ctx : IDiscordContext) = task {
let msg =
let str =
if users.Length > 0 then
$"**Total Recruited:**`{users.Length} Degenz`\n\n**Total Earned:** `{users.Length * InviteRewardAmount} 💰$GBT `\n\n**Last 10 users recruited:**\n{sb}"
$"**Total Recruited:** `{users.Length} Degenz`\n\n**Total Earned:** `{users.Length * InviteRewardAmount} 💰$GBT`\n\n**Last 10 users recruited:**\n{sb}"
else
$"You haven't recruited anyone yet, use the `/recruit` command to get the recruitment link"
DiscordInteractionResponseBuilder()