Skip to content

Latest commit

Β 

History

History
83 lines (60 loc) Β· 2.03 KB

File metadata and controls

83 lines (60 loc) Β· 2.03 KB

#MAG NOOIT PUBLIC STAAN

πŸ€– 3160 - bot

Language Framework Status

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.


πŸ“‹ Table of Contents


✨ Features

  • 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]

πŸ›  Prerequisites

Ensure you have the following installed on your machine:


πŸš€ Installation & Setup

  1. Clone the repository:

    git clone [https://github.com/HegoBoss/3160discordbot.git)
    cd 3160-bot
  2. Restore dependencies: Navigate to the project folder and run:

    dotnet restore
  3. Build the project:

    dotnet build

βš™οΈ Configuration

The bot uses launchSettings.json for configuration.

  1. Locate launchSettings.json in the root of your project. If it doesn't exist, create it (or rename launchSettings.json if provided).
  2. Update the file with your credentials:
{
  "Discord": {
    "Token": "YOUR_BOT_TOKEN_HERE",
    "Prefix": "!"
  },
  "Logging": {
    "LogLevel": {
      "Default": "Information"
    }
  }
}