i want to write a script that if i chat "!OptionA" will return: Option A: write option A and if i chat "!OptionB" will return: Option B, write option B I have done this: On('ready', () =>{ On('chat:message', (msg) =>{ if ('api' === msg.type && msg.content.match(/^!OptionA/)){ {sendChat('Option A', `write option A`)} } }) On('chat:message', (msg) =>{ if ('api' === msg.type && msg.content.match(/^!OptionB/)){ sendChat('Option B', `write option B`)} }) }) but the system say me "on is not defined). Where i'm wrong?