Using multiple word sets?

Should you be able to enter multiple groupings of words like I have below? I'm having issues getting it to work.

          "Triggers": [
            {
              "Percentage Of Contained Words": 0.75,
              "Regex Enabled": false,
              "Words": [
                "when",
                "wipe"
              ],
				[
				  "when",
				  "server",
				  "reset"
				],
				[
				  "when",
				  "wipe"
				]
            }
          ],
You forgot to change percentage. And no, you should duplicate it from { to }, not just words array without the Words key itself.

Ok, so let me verify what you mean.

Here's a full functioning block with one word set.

        {
          "Is Enabled": true,
          "Remove Message From Sender": false,
          "Send Response For Everyone (true) or Only For Sender (false)": true,
          "Triggers": [
            {
              "Percentage Of Contained Words": 0.75,
              "Regex Enabled": false,
              "Words": [
                "when",
                "wipe"
              ]						  
            }
          ],
          "Answers": [
            "The wipe is every 3rd day"
          ]
        }
      ]
    },​

You're saying if I want to have multiple word sets I have to do this?

        {
          "Is Enabled": true,
          "Remove Message From Sender": false,
          "Send Response For Everyone (true) or Only For Sender (false)": true,
          "Triggers": [
            {
              "Percentage Of Contained Words": 0.75,
              "Regex Enabled": false,
              "Words": [
                "when",
                "wipe"
              ]						  
            }
          ],
          "Triggers": [
            {
              "Percentage Of Contained Words": 0.75,
              "Regex Enabled": false,
              "Words": [
                "when",
                "reset"
              ]						  
            }
          ],
          "Triggers": [
            {
              "Percentage Of Contained Words": 0.75,
              "Regex Enabled": false,
              "Words": [
                "when",
                "blueprint",
                "wipe"
              ]						  
            }
          ],
          "Answers": [
            "The wipe is every 3rd day"
          ]
        }
      ]
    },
From { to }! Without triggers []
5b6ed4c9ac8e4.jpg misticos
From { to }! Without triggers []

Are you saying like this?

{
      "Is Enabled": true,
      "Remove Message From Sender": false,
      "Send Response For Everyone (true) or Only For Sender (false)": true,
      "Triggers": [
        {
          "Percentage Of Contained Words": 0.75,
          "Regex Enabled": false,
          "Words": [
            "when",
            "wipe"
          ]
        },
        {
          "Percentage Of Contained Words": 0.75,
          "Regex Enabled": false,
          "Words": [
            "when",
            "reset"
          ]
        },
        {
          "Percentage Of Contained Words": 0.75,
          "Regex Enabled": false,
          "Words": [
            "when",
            "blueprint",
            "wipe"
          ]
        }
      ],
      "Answers": [
        "The wipe is every 3rd day"
      ]
    }
  ]
},



um. yes. yay.

Merged post

1. Open website: https://jsoneditoronline.org/
2. Paste the JSON (config/data/whatever) on the left side
3. Press the ">" button
4. Edit config on the right side (values, in a list you can duplicate, add or remove entries, every entry is marked with index like 0, 1, 2, etc)
5. Press the "<" button
6. Copy the edited config on the left side
7. Paste the modified config on FTP and save the file
8. Reload the plugin
5b6ed4c9ac8e4.jpg misticos
um. yes. yay.

Merged post

1. Open website: https://jsoneditoronline.org/
2. Paste the JSON (config/data/whatever) on the left side
3. Press the ">" button
4. Edit config on the right side (values, in a list you can duplicate, add or remove entries, every entry is marked with index like 0, 1, 2, etc)
5. Press the "<" button
6. Copy the edited config on the left side
7. Paste the modified config on FTP and save the file
8. Reload the plugin

Was this meant to be for conversion? Unless I'm missing something doing it by hand is easier for me.

This editor is for a 100% valid JSON editing. It has a good user-friendly UI and I just like it.
5b6ed4c9ac8e4.jpg misticos
This editor is for a 100% valid JSON editing. It has a good user-friendly UI and I just like it.
Agreed. It's really sweet for that.