Setting specific responses to words?
Hey, im having some trouble getting the bot to respond to specific triggers, for example:

Player: !pop
Bot: Use /pop

Player: !wipe
Bot: Use /wipe

Right now it's responding randomly with any of the answers

Any help would be greatly appreciated :)

My config:
"Auto Responses": [
    {
      "Permission": "smartchatbot.response",
      "Auto Responses": [
        {
          "Is Enabled": true,
          "Remove Message From Sender": true,
          "Send Response For Everyone (true) or Only For Sender (false)": false,
          "Triggers": [
            {
              "Percentage Of Contained Words": 1.0,
              "Regex Enabled": false,
              "Words": [
                "!wipe"
              ]
            },
            {
              "Percentage Of Contained Words": 1.0,
              "Regex Enabled": false,
              "Words": [
                "!pop"
              ]
            }
          ],
          "Answers": [
            "Use <color=#ff6d00>/wipe</color>",
            "Use <color=#ff6d00>/pop</color>"
          ]
        }
      ]
    }
  ]​
Hey!
Create different auto responses from the first { to the last }, cuz with your config it will trigger on !pop AND !wipe and will answer randomly about wipe OR pop.
In response to misticos ():
Hey!
Create different auto responses from the first { to the last }, cuz with your config it wi...
Ahh got it, thanks for the help :) great work on the plugin btw
Thanks