#MAG NOOIT PUBLIC STAAN
3160 - bot is a custom Discord bot built using C# and the Discord.Net library. It is designed to automate server tasks, handle moderation, or provide utility commands.
- Core: Built on the robust Discord.Net asynchronous framework.
- Moderation: [e.g., Kick, Ban, Purge messages]
- Utility: [e.g., User info, Server info, Latency check]
- Custom: [Mention unique logic specific to 3160]
Ensure you have the following installed on your machine:
- .NET 8.0 SDK (or newer)
- Git (for version control)
- A text editor or IDE (Recommended: Visual Studio 2022 or VS Code)
- A Discord Bot Token from the Discord Developer Portal
-
Clone the repository:
git clone [https://github.com/HegoBoss/3160discordbot.git) cd 3160-bot -
Restore dependencies: Navigate to the project folder and run:
dotnet restore
-
Build the project:
dotnet build
The bot uses launchSettings.json for configuration.
- Locate
launchSettings.jsonin the root of your project. If it doesn't exist, create it (or renamelaunchSettings.jsonif provided). - Update the file with your credentials:
{
"Discord": {
"Token": "YOUR_BOT_TOKEN_HERE",
"Prefix": "!"
},
"Logging": {
"LogLevel": {
"Default": "Information"
}
}
}