https://github.com/velocitatem/daviddiscordbot
https://github.com/velocitatem/daviddiscordbot
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/velocitatem/daviddiscordbot
- Owner: velocitatem
- Created: 2021-04-13T06:52:24.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-04-13T07:01:01.000Z (about 4 years ago)
- Last Synced: 2025-02-14T16:48:34.159Z (2 months ago)
- Language: C#
- Size: 15.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DavidDiscordBot
## How to add commands
1. create new class that extends IModule
`
public class myCommands : IMoule
`2. creat custom command
```
[Command("your command")]
[Description("about your command")]
public async Task Command(CommandContext ctx) {
await ctx.RespondAsync("Hey");
}
```