Mudlet YATCO (demonnic) and Tells
I cannot seem to get tells to append to the Tells tab. My trigger, set to a perl regex, looks like this:
^(?:.+\s(\w+) tells you$
I'm not sure what I am doing wrong. I am quite new to coding, so any assistance would be marvelous.
PS- we should totes agree that Imperian should adopt something from Aetolia: the ability to config it to where all tells, regular and 'special' ones, have a prefix of (Tell): !!
Thanks in advance!
^(?:.+\s(\w+) tells you$
I'm not sure what I am doing wrong. I am quite new to coding, so any assistance would be marvelous.
PS- we should totes agree that Imperian should adopt something from Aetolia: the ability to config it to where all tells, regular and 'special' ones, have a prefix of (Tell): !!
Thanks in advance!
1
Comments
([\w\s,]+)tells you, "
Will trigger off the tell with the name of the person telling stored in the first variable. If you want to store the text of the tell too you can do
([\w\s,]+)tells you, "(.+)"