Xtream-ITSolutions UG | Dokumentation
  • introducing
    • ๐Ÿ‘‹Introduction
  • Discord Bots
    • ๐Ÿ“ฆStandard Bot
      • ๐Ÿ’กInstallation
      • โš™๏ธConfiguration
    • ๐ŸŽซTicket System
      • ๐Ÿ’กInstallation
      • โš™๏ธConfiguration
    • ๐Ÿ’ธPayment System
      • ๐Ÿ’กInstallation
      • โš™๏ธConfiguration
    • ๐Ÿ”Verification System
      • ๐Ÿ’กInstallation
      • โš™๏ธConfiguration
    • ๐Ÿ“ฉMessages System
      • ๐Ÿ’กInstallation
      • โš™๏ธConfiguration
    • ๐Ÿ”ขCounter System
      • ๐Ÿ’กInstallation
      • โš™๏ธConfiguration
  • FiveM Bots
    • ๐Ÿ“Whitelist System
      • ๐Ÿ’กInstallation
      • โš™๏ธConfiguration
    • ๐Ÿ›ก๏ธFraktions System
      • ๐Ÿ’กInstallation
      • โš™๏ธConfiguration
    • โš’๏ธSupport System
      • ๐Ÿ’กInstallation
      • โš™๏ธConfiguration
    • ๐ŸŽฎFiveM System
      • ๐Ÿ’กInstallation
      • โš™๏ธConfiguration
    • ๐Ÿ‘ฅTeam Management
      • ๐Ÿ’กInstallation
      • โš™๏ธConfiguration
  • Weitere Links
    • โš™๏ธDiscord
    • โš™๏ธDashboard
    • โš™๏ธServer Status
Bereitgestellt von GitBook
Auf dieser Seite
  • 1. Bot Daten
  • 2. Database Setup

War das hilfreich?

Bearbeiten auf GitHub
  1. FiveM Bots
  2. Team Management

Configuration

In diesem Artikel wird dir die Benutzung des Discord Bots Standard System beschrieben.

1. Bot Daten

In der Config.js musst du nun deinen Discord Bot Token angeben, und weitere Informationen.

config.bot = {
    token: "", // Bot Token (https://discord.com/developers)
    guildId: "",
    license: "",
    activity_enabled: true, // If disabled Bot wont override Activity (if multiple Bots are running on same Token)
    activitys: [
        {
            name: "",
            type: "Watching",
            status: "idle",
        },
        {
            name: "",
            type: "Playing",
            status: "online",
        },
    ],
    intervall: 10 * 1000, // Intervall of Activity Change
};

2. Database Setup

config.database = {
    mysql: {
        host: "",
        user: "",
        password: "",
        database: ""
    }
};

VorherigeInstallation

War das hilfreich?

In der Config.js musst du deine Datenbank angeben.

๐Ÿ‘ฅ
โš™๏ธ
MySQL