Rules System

The Rules module allows you to define and manage server rules directly through your Discord bot. These rules can be displayed to members on command and updated without editing your core bot code.

Enabling Rules

To enable the Rules feature, ensure it is activated in your settings configuration.

Enable Rules
rules: {
  enabled: true
}

Adding Rules

Rules can be defined inside your configuration file. Each rule should be added as an item in an array.

Example Configuration
rules: {
  enabled: true,
  list: [
    "Be respectful to all members.",
    "No spam or self-promotion.",
    "Follow Discord's Terms of Service.",
    "Use channels for their intended purpose."
  ]
}

Displaying Rules

Users can retrieve the rules using the built-in command:

Command
!rules

Best Practices

  • Keep rules clear and concise.
  • Avoid overly complex or lengthy descriptions.
  • Update rules when your server policies change.
  • Pin the rules message for visibility.

Continue to Replies to configure automatic response triggers.