diff --git a/Bot/InviteTracker.fs b/Bot/InviteTracker.fs index 943fe9f..1aea807 100644 --- a/Bot/InviteTracker.fs +++ b/Bot/InviteTracker.fs @@ -134,11 +134,12 @@ let createGuildInvite (ctx : IDiscordContext) = let embed = DiscordEmbedBuilder() - .WithDescription($"Copy this link and share it with any Degenz you want to recruit to the Degenz Army.\n\n" + - "**YOUR REWARD:** Eartn 10 💰$GBT for every person you recruit that comes into the server" + + .WithDescription($"**⏀ Your Mission:**\n`Copy this link` & share it with any Degenz you want to `/RECRUIT`.\n\n" + + "**⌼ Your Reward:**\n`Earn 10 $GBT` 💰 for every Degen you've `/RECRUITED`." + $"```https://discord.gg/{invite.Code}```") .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 = DiscordInteractionResponseBuilder() @@ -180,7 +181,7 @@ let getInvitedUsersForId (ctx : IDiscordContext) = task { let msg = DiscordInteractionResponseBuilder() .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) }