First I'd like to say this is very painful. It'd be great if you made a converter. I see the benefits, but it's going to take me hours.
In the old format:
In the new format
How would I create multiple sets of words?
I don't want to create one group of words that is used based on a percentage. I'd like to have multiple sets of words each based on a percentage.
Would it be something like this?
In the old format:
"TriggerWordSets": [
[
"when",
"wipe"
],
[
"how",
"wipe"
],
[
"!wipe"
]
]In the new format
"Words": [
"how",
"when"
]How would I create multiple sets of words?
I don't want to create one group of words that is used based on a percentage. I'd like to have multiple sets of words each based on a percentage.
Would it be something like this?
{
"Percentage Of Contained Words": 1.00,
"Regex Enabled": false,
"Words": [
"when",
"wipe"
]
},
{
"Percentage Of Contained Words": 1.00,
"Regex Enabled": false,
"Words": [
"how",
"wipe"
]
},
{
"Percentage Of Contained Words": 1.00,
"Regex Enabled": false,
"Words": [
"!wipe"
]
}