ex.
!commands add !number1 $(eval var count = '$(count)'; text : ${count} text ${count} text)
!commands add !number2 $(eval var count = '$(count)'; text : ${count} text ${count} text)
1. !number1 -> text 1 text 1
2. !number1 -> text 2 text 2
3. !number2 -> text 1 text 1 (x)
text 3 text 3 (o)
4. !number1 -> text 4 text 4
I have two commands that output the same content.
However, when number1 is entered, the command of number2 is not output, but can the count be increased?
The opposite is also true.
In other words, I want to modify so that one count is shared by the two commands number1 and number2.
Is this possible......

