šŸ•µļøā€ā™‚ļø Keywords identification

  1. By simply sending the keyword, the bot will only recognize it if separated by spaces within the message.

  2. You can use the wildcard character (*), which indicates zero, one or more characters, excluding spaces.

  3. You can use the wildcard character (+), which indicates one or more characters, excluding spaces.

  4. You can use the wildcard character (?), which indicates zero or one characters, excluding spaces.

  5. By using double quotes (Example: "chelpbot"), the keyword will be recognized only if the user's message contains exactly that keyword and nothing else.

  6. Using &&, the keyword will be recognized if the user's message contains all the indicated words but not necessarily consecutive and in the specified order. You can also specify more than 2 words together.

Examples of the numbers shown above can be found here:

Example Nr.

You set

āœ… The bot will recognize

āŒ The bot will NOT recognize

1

chelp

Welcome to chelp

Welcome to chelpbot

2

c(*)bot

Welcome to chelpbot

Welcome to chelp bot

3

c(+)bot

Welcome to chelpbot

Welcome to cbot

4

c(?)bot

Welcome to chbot

Welcome to chelpbot

5

"chelpbot"

chelpbot

Welcome to chelpbot

6

bot && chelp

chelp is a nice bot!

Channel Help is a nice bot!