Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.20 KB | None | 0 0
  1.         [Command]
  2.         public async Task DefaultHelp()
  3.         {
  4.             EmbedBuilder builder = new EmbedBuilder();
  5.             builder.WithAuthor("Apollo")
  6.                 .AddField(y =>
  7.                 {
  8.                     y.Name = "Administration Module";
  9.                     y.Value = "Use a$help administration\n to see the administration module";
  10.                     y.IsInline = true;
  11.                 })
  12.                 .AddField(y =>
  13.                 {
  14.                     y.Name = "Music Module";
  15.                     y.Value = "Use a$help music\n to see the music module";
  16.                     y.IsInline = true;
  17.                 })
  18.                 .AddField(y =>
  19.                 {
  20.                     y.Name = "Market Module";
  21.                     y.Value = "Use a$help shop\n to see the market module";
  22.                     y.IsInline = true;
  23.                 })
  24.                 .AddField(y =>
  25.                 {
  26.                     y.Name = ":credit_card: [Be my patreon](https://patreon.com/apollounity)";
  27.                     y.IsInline = false;
  28.                 })
  29.                 .WithColor(Color.Green);
  30.             await Context.User.SendMessageAsync("", false, builder);
  31.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement