From 64fe8e75a890546a985ba80e32d7946bdcb59f0d Mon Sep 17 00:00:00 2001 From: Blurr Date: Fri, 28 Jun 2019 00:56:23 +0100 Subject: [PATCH] Updated help text --- Globals/CommandModules/AboutModule.cs | 2 +- Globals/CommandModules/GlobalModule.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Globals/CommandModules/AboutModule.cs b/Globals/CommandModules/AboutModule.cs index 8fc13f7..871a9b3 100644 --- a/Globals/CommandModules/AboutModule.cs +++ b/Globals/CommandModules/AboutModule.cs @@ -52,7 +52,7 @@ public async Task HelpAsync() "- `!create` - Create the Globals category and channels in your server. Will only create the channels you have enabled.\n" + "- `!update` - Will delete and create the added or removed channels, make sure you do this everytime you add or remove channels.\n" + "\n**Global Commands**\nCommands that are only available in the global channels.\n" + - "- `!profile ` - View the profile of another user. User @user if they're in the same server as you or their user id if not. User id is in the footer of their message.\n" + + "- `!profile ` - View the profile of another user. User @user if they're in the same server as you or their globals id (GId) if not. GId is in the footer of their message.\n" + "- `!request ` - Suggest new features for the global chat or Discord server, remember to be descriptive! We may message you for more information.\n" + "\n**Other Commands**\nOther commands for you to try out\n" + "- `!help` - Brings up this message derp...\n" + diff --git a/Globals/CommandModules/GlobalModule.cs b/Globals/CommandModules/GlobalModule.cs index addca9b..b1d796a 100644 --- a/Globals/CommandModules/GlobalModule.cs +++ b/Globals/CommandModules/GlobalModule.cs @@ -94,7 +94,7 @@ public async Task ProfileIdAsync(int ID = -1) } else { - var message = await Context.Channel.SendMessageAsync("Correct format of this command is `!profile `, for example `!profile @Blurr#3760` or `!profile 211938243535568896`.\nIf the user is not in the same server as you, you must use the user id."); + var message = await Context.Channel.SendMessageAsync("Correct format of this command is `!profile `, for example using mention `!profile @Blurr#3760` or using GId `!profile 2`.\nIf the user is not in the same server as you, you must use the globals id (GId)."); await Delete.DeleteMessage(message); } } @@ -144,7 +144,7 @@ public async Task ProfileAsync(IUser User = null) } else { - var message = await Context.Channel.SendMessageAsync("Correct format of this command is `!profile `, for example `!profile @Blurr#3760` or `!profile 211938243535568896`.\nIf the user is not in the same server as you, you must use the user id."); + var message = await Context.Channel.SendMessageAsync("Correct format of this command is `!profile `, for example using mention `!profile @Blurr#3760` or using GId `!profile 2`.\nIf the user is not in the same server as you, you must use the globals id (GId)."); await Delete.DeleteMessage(message); } }