Пример #1
0
 public static string UserHasBeenWarned(this ResponsesService responsesService, string grantor, string receiver, string reason)
 {
     return(responsesService.ProcessResponse("UserHasBeenWarned",
                                             new KeyValuePair <string, string>("grantor", grantor),
                                             new KeyValuePair <string, string>("receiver", receiver),
                                             new KeyValuePair <string, string>("reason", reason)));
 }
Пример #2
0
 public static string ResponseHasBeenUpdated(this ResponsesService responsesService, Contexts contexts, string onEvent, string oldMessage, string newMessage)
 {
     return(responsesService.ProcessResponse("ResponseHasBeenUpdated", contexts,
                                             new KeyValuePair <string, string>("onEvent", onEvent),
                                             new KeyValuePair <string, string>("oldMessage", oldMessage),
                                             new KeyValuePair <string, string>("newMessage", newMessage)));
 }
Пример #3
0
 public static string UnmutedUserForUser(this ResponsesService responsesService, UserContext user, DiscordServerContext server)
 {
     return(responsesService.ProcessResponse("UnmutedUserForUser",
                                             new KeyValuePair <string, string>("user", user.Name),
                                             new KeyValuePair <string, string>("server", server.Name)));
 }
Пример #4
0
 public static string MutedUser(this ResponsesService responsesService, UserContext user, DateTime timeEnd)
 {
     return(responsesService.ProcessResponse("MutedUser",
                                             new KeyValuePair <string, string>("user", user.Name), //todo: change to GetMention when message will be send as Embed
                                             new KeyValuePair <string, string>("timeEnd", timeEnd.ToLocalTimeString())));
 }
Пример #5
0
 public static string UserNotFound(this ResponsesService responsesService, string user)
 {
     return(responsesService.ProcessResponse("UserNotFound",
                                             new KeyValuePair <string, string>("user", user)));
 }
Пример #6
0
 public static string NotAdminPermissions(this ResponsesService responsesService)
 {
     return(responsesService.ProcessResponse("NotAdminPermissions"));
 }
Пример #7
0
 public static string NewUserArrived(this ResponsesService responsesService, Contexts contexts)
 {
     return(responsesService.ProcessResponse("NewUserArrived",
                                             new KeyValuePair <string, string>("user", contexts.User.Mention),
                                             new KeyValuePair <string, string>("server", contexts.Server.Name)));
 }
Пример #8
0
 public static string CustomCommandsHeader(this ResponsesService responsesService)
 {
     return(responsesService.ProcessResponse("CustomCommandsHeader"));
 }
Пример #9
0
 public static string AvailableCommands(this ResponsesService responsesService)
 {
     return(responsesService.ProcessResponse("AvailableCommands"));
 }
Пример #10
0
 public static string NoDefaultDescription(this ResponsesService responsesService)
 {
     return(responsesService.ProcessResponse("NoDefaultDescription"));
 }
Пример #11
0
 public static string ThereAreNoMutedUsers(this ResponsesService responsesService)
 {
     return(responsesService.ProcessResponse("ThereAreNoMutedUsers"));
 }
Пример #12
0
 public static string TryToGoogleIt(this ResponsesService responsesService, string link)
 {
     return(responsesService.ProcessResponse("TryToGoogleIt",
                                             new KeyValuePair <string, string>("link", link)));
 }
Пример #13
0
 public static string MutedUsersListSent(this ResponsesService responsesService)
 {
     return(responsesService.ProcessResponse("MutedUsersListSent"));
 }
Пример #14
0
 public static string MoreThanOneRegexHasBeenMatched(this ResponsesService responsesService)
 {
     return(responsesService.ProcessResponse("MoreThanOneRegexHasBeenMatched"));
 }
Пример #15
0
 public static string ServerDoesntHaveAnyTrustedRole(this ResponsesService responsesService)
 {
     return(responsesService.ProcessResponse("ServerDoesntHaveAnyTrustedRole"));
 }
Пример #16
0
 public static string ExampleText(this ResponsesService responsesService)
 {
     return(responsesService.ProcessResponse("ExampleText"));
 }
Пример #17
0
 public static string Roles(this ResponsesService responsesService)
 {
     return(responsesService.ProcessResponse("Roles"));
 }
Пример #18
0
 public static string HereYouCanFindAvailableCommandsWithDescriptions(this ResponsesService responsesService)
 {
     return(responsesService.ProcessResponse("HereYouCanFindAvailableCommandsWithDescriptions"));
 }
Пример #19
0
 public static string SpamAlertRecognized(this ResponsesService responsesService, Contexts contexts)
 {
     return(responsesService.ProcessResponse("SpamAlertRecognized", contexts));
 }
Пример #20
0
 public static string RoleIsInUserAlready(this ResponsesService responsesService, Contexts contexts, string role)
 {
     return(responsesService.ProcessResponse("RoleIsInUserAlready", contexts,
                                             new KeyValuePair <string, string>("role", role)));
 }
Пример #21
0
 public static string UserIsNotAdmin(this ResponsesService responsesService)
 {
     return(responsesService.ProcessResponse("UserIsNotAdmin"));
 }
Пример #22
0
 public static string HowToUseCommand(this ResponsesService responsesService)
 {
     return(responsesService.ProcessResponse("HowToUseCommand"));
 }
Пример #23
0
 public static string UserDidntMentionAnyUser(this ResponsesService responsesService)
 {
     return(responsesService.ProcessResponse("UserDidntMentionAnyUser"));
 }
Пример #24
0
 public static string Type(this ResponsesService responsesService)
 {
     return(responsesService.ProcessResponse("Type"));
 }
Пример #25
0
 public static string RoleNotFound(this ResponsesService responsesService, string role)
 {
     return(responsesService.ProcessResponse("RoleNotFound",
                                             new KeyValuePair <string, string>("role", role)));
 }
Пример #26
0
 public static string Parameters(this ResponsesService responsesService)
 {
     return(responsesService.ProcessResponse("Parameters"));
 }
Пример #27
0
 public static string RoleAddedToUser(this ResponsesService responsesService, Contexts contexts, string role)
 {
     return(responsesService.ProcessResponse("RoleAddedToUser", contexts,
                                             new KeyValuePair <string, string>("role", role)));
 }
Пример #28
0
 public static string ExampleUserMention(this ResponsesService responsesService)
 {
     return(responsesService.ProcessResponse("ExampleUserMention"));
 }
Пример #29
0
 public static string TimeCannotBeNegative(this ResponsesService responsesService)
 {
     return(responsesService.ProcessResponse("TimeCannotBeNegative"));
 }
Пример #30
0
 public static string ExampleSingleWord(this ResponsesService responsesService)
 {
     return(responsesService.ProcessResponse("ExampleSingleWord"));
 }