diff --git a/Bot/GuildEnvironment.fs b/Bot/GuildEnvironment.fs index 9cfbafd..760f720 100644 --- a/Bot/GuildEnvironment.fs +++ b/Bot/GuildEnvironment.fs @@ -42,6 +42,8 @@ let channelMarket = getId "CHANNEL_MARKET" let channelAccessoryShop = getId "CHANNEL_ACCESSORIES" let channelGiveaway = getId "CHANNEL_GIVEAWAY" let channelAnnouncements = getId "CHANNEL_ANNOUNCEMENTS" +let channelGeneral = getId "CHANNEL_GENERAL" +let channelQuests = getId "CHANNEL_QUESTS" //let channelThievery = getId "CHANNEL_THIEVERY" let botIdHackerBattle = getId "BOT_HACKER_BATTLE" diff --git a/Bot/InviteTracker.fs b/Bot/InviteTracker.fs index fcdc6da..a1598f2 100644 --- a/Bot/InviteTracker.fs +++ b/Bot/InviteTracker.fs @@ -289,8 +289,9 @@ let sendInitialEmbed (ctx : IDiscordContext) = 💰 Earn an additional 100 $GBT for every Degen you invite! **__How To Invite:__** -- CLICK THE BUTTON below -- Share your LINK with anyone you want to invite. +1️⃣ CLICK THE BUTTON below +2️⃣ Share your LINK with anyone you want to invite. + **Every invite increases your chances of winning the daily $100 raffles* """ diff --git a/Bot/Whitelist.fs b/Bot/Whitelist.fs index 4dd9a28..9607121 100644 --- a/Bot/Whitelist.fs +++ b/Bot/Whitelist.fs @@ -20,16 +20,16 @@ let sendInitialEmbed (ctx : IDiscordContext) = let channel = ctx.GetGuild().GetChannel(GuildEnvironment.channelWhitelist) let builder = DiscordMessageBuilder() let embed = DiscordEmbedBuilder() - embed.ImageUrl <- "https://s8.gifyu.com/images/ezgif.com-gif-maker-28812274030e36e4b1.gif" + embed.ImageUrl <- "https://s8.gifyu.com/images/whitelist-banner-new-2.gif" embed.Title <- "Degenz Game Whitelist" embed.Color <- DiscordColor.White - embed.Description <- """ + embed.Description <- $""" In **Beautopia ©** you BUY Whitelist with 💰 $GBT... **__To earn $GBT You Can:__** -1️⃣ Recruit other Degenz into the server in #🙋|invite -2️⃣ Be helpful & chat in #💬|general-chat to level up! -3️⃣ Complete Quests inside #🕹|quests +1️⃣ Recruit other Degenz into the server in <#{GuildEnvironment.channelRecruitment}> +2️⃣ Be helpful & chat in <#{GuildEnvironment.channelGeneral}> to level up! +3️⃣ Complete Quests inside <#{GuildEnvironment.channelQuests}> """ builder.AddEmbed embed |> ignore let btn1 = DiscordButtonComponent(ButtonStyle.Success, $"GimmeWhitelist", $"Buy Whitelist") :> DiscordComponent