You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

command_service_creation.cs 250 B

123456789
  1. //create command service
  2. var commandService = new CommandService(new CommandServiceConfig
  3. {
  4. CommandChar = '~', // prefix char for commands
  5. HelpMode = HelpMode.Public
  6. });
  7. //add command service
  8. var commands = client.AddService(commandService);