Fix the copy for recruitement

This commit is contained in:
Joseph Ferano 2022-03-21 13:11:44 +07:00
parent 0f78219635
commit 769a7ec504

View File

@ -134,11 +134,12 @@ let createGuildInvite (ctx : IDiscordContext) =
let embed = let embed =
DiscordEmbedBuilder() DiscordEmbedBuilder()
.WithDescription($"Copy this link and share it with any Degenz you want to recruit to the Degenz Army.\n\n" + .WithDescription($"**⏀ Your Mission:**\n`Copy this link` & share it with any Degenz you want to `/RECRUIT`.\n\n" +
"**YOUR REWARD:** Eartn 10 💰$GBT for every person you recruit that comes into the server" + "**Your Reward:**\n`Earn 10 $GBT` 💰 for every Degen you've `/RECRUITED`." +
$"```https://discord.gg/{invite.Code}```") $"```https://discord.gg/{invite.Code}```")
.WithImageUrl("https://pbs.twimg.com/profile_banners/1449270642340089856/1640071520/1500x500") .WithImageUrl("https://pbs.twimg.com/profile_banners/1449270642340089856/1640071520/1500x500")
.WithTitle("Your mission") // .WithImageUrl("https://s7.gifyu.com/images/Resistance_Poster_Final_1.jpg")
.WithTitle("Recruit")
let msg = let msg =
DiscordInteractionResponseBuilder() DiscordInteractionResponseBuilder()
@ -180,7 +181,7 @@ let getInvitedUsersForId (ctx : IDiscordContext) = task {
let msg = let msg =
DiscordInteractionResponseBuilder() DiscordInteractionResponseBuilder()
.AsEphemeral(true) .AsEphemeral(true)
.WithContent($"**Total Earned:** `{users.Length * InviteRewardAmount} 💰$GBT `\n\n**Last 10 users recruited:**\n{sb}") .WithContent($"**Total Recruited:**`{users.Length} Degenz`\n\n**Total Earned:** `{users.Length * InviteRewardAmount} 💰$GBT `\n\n**Last 10 users recruited:**\n{sb}")
do! ctx.Respond(InteractionResponseType.ChannelMessageWithSource, msg) do! ctx.Respond(InteractionResponseType.ChannelMessageWithSource, msg)
} }