This is a new twist to a old problem. Recently, there was a small change made to the line "A prickly stinging overcomes your body, fading away into numbness." Before, *'s replaced random letters in the message giving you something like "A p*ickly stinging ov*rcomes yo*r body, fad*ng away into numbness." I searched the forums and found this trigger made by Ked which worked perfectly:
^((?:A|\*)(?: |\*)(?:p|\*)(?:r|\*)(?:i|\*)(?:c|\*)(?:k|\*)(?:l|\*)(?:y|\*)(?: |\*)(?:s|\*)(?:t|\*)(?:i|\*)(?:n|\*)(?:g|\*)(?:i|\*)(?:n|\*)(?:g|\*)(?: |\*)(?:o|\*)(?:v|\*)(?:e|\*)(?:r|\*)(?:c|\*)(?:o|\*)(?:m|\*)(?:e|\*)(?:s|\*)(?: |\*)(?:y|\*)(?:o|\*)(?:u|\*)(?:r|\*)(?: |\*)(?:b|\*)(?:o|\*)(?:d|\*)(?:y|\*)(?:\,|\*)(?: |\*)(?:f|\*)(?:a|\*)(?:d|\*)(?:i|\*)(?:n|\*)(?:g|\*)(?: |\*)(?:a|\*)(?:w|\*)(?:a|\*)(?:y|\*)(?: |\*)(?:i|\*)(?:n|\*)(?:t|\*)(?:o|\*)(?: |\*)(?:n|\*)(?:u|\*)(?:m|\*)(?:b|\*)(?:n|\*)(?:e|\*)(?:s|\*)(?:s|\*)(?:\.|\*))$
Now, however, the *'s can replace two random letters in the message giving you something like this "A pri*ly stinging overcomes your body, fading *ay into numbne*." (Where the *'s replace both the C and K in prickly, the A and W in away, and the two S's in numbness). I tried to use this trigger:
^((A|\*|)(?: |\*|)(?:p|\*|)(?:r|\*|)(?:i|\*|)(?:c|\*|)(?:k|\*|)(?:l|\*|)(?:y|\*|)(?: |\*|)(?:s|\*|)(?:t|\*|)(?:i|\*|)(?:n|\*|)(?:g|\*|)(?:i|\*|)(?:n|\*|)(?:g|\*|)(?: |\*|)(?:o|\*|)(?:v|\*|)(?:e|\*|)(?:r|\*|)(?:c|\*|)(?:o|\*|)(?:m|\*|)(?:e|\*|)(?:s|\*|)(?: |\*|)(?:y|\*|)(?:o|\*|)(?:u|\*|)(?:r|\*|)(?: |\*|)(?:b|\*|)(?:o|\*|)(?:d|\*|)(?:y|\*|)(?:\,|\*|)(?: |\*|)(?:f|\*|)(?:a|\*|)(?:d|\*|)(?:i|\*|)(?:n|\*|)(?:g|\*|)(?: |\*|)(?:a|\*|)(?:w|\*|)(?:a|\*|)(?:y|\*|)(?: |\*|)(?:i|\*|)(?:n|\*|)(?:t|\*|)(?:o|\*|)(?: |\*|)(?:n|\*|)(?:u|\*|)(?:m|\*|)(?:b|\*|)(?:n|\*|)(?:e|\*|)(?:s|\*|)(?:s|\*|)(?:\.|\*|))$
and it matches the line perfectly, but I now get an error when I get a line of only asteriks. Is there another way I should go about triggering this line? Or some way to modify this one to stop getting the error message? Thanks in advance
^((?:A|\*)(?: |\*)(?:p|\*)(?:r|\*)(?:i|\*)(?:c|\*)(?:k|\*)(?:l|\*)(?:y|\*)(?: |\*)(?:s|\*)(?:t|\*)(?:i|\*)(?:n|\*)(?:g|\*)(?:i|\*)(?:n|\*)(?:g|\*)(?: |\*)(?:o|\*)(?:v|\*)(?:e|\*)(?:r|\*)(?:c|\*)(?:o|\*)(?:m|\*)(?:e|\*)(?:s|\*)(?: |\*)(?:y|\*)(?:o|\*)(?:u|\*)(?:r|\*)(?: |\*)(?:b|\*)(?:o|\*)(?:d|\*)(?:y|\*)(?:\,|\*)(?: |\*)(?:f|\*)(?:a|\*)(?:d|\*)(?:i|\*)(?:n|\*)(?:g|\*)(?: |\*)(?:a|\*)(?:w|\*)(?:a|\*)(?:y|\*)(?: |\*)(?:i|\*)(?:n|\*)(?:t|\*)(?:o|\*)(?: |\*)(?:n|\*)(?:u|\*)(?:m|\*)(?:b|\*)(?:n|\*)(?:e|\*)(?:s|\*)(?:s|\*)(?:\.|\*))$
Now, however, the *'s can replace two random letters in the message giving you something like this "A pri*ly stinging overcomes your body, fading *ay into numbne*." (Where the *'s replace both the C and K in prickly, the A and W in away, and the two S's in numbness). I tried to use this trigger:
^((A|\*|)(?: |\*|)(?:p|\*|)(?:r|\*|)(?:i|\*|)(?:c|\*|)(?:k|\*|)(?:l|\*|)(?:y|\*|)(?: |\*|)(?:s|\*|)(?:t|\*|)(?:i|\*|)(?:n|\*|)(?:g|\*|)(?:i|\*|)(?:n|\*|)(?:g|\*|)(?: |\*|)(?:o|\*|)(?:v|\*|)(?:e|\*|)(?:r|\*|)(?:c|\*|)(?:o|\*|)(?:m|\*|)(?:e|\*|)(?:s|\*|)(?: |\*|)(?:y|\*|)(?:o|\*|)(?:u|\*|)(?:r|\*|)(?: |\*|)(?:b|\*|)(?:o|\*|)(?:d|\*|)(?:y|\*|)(?:\,|\*|)(?: |\*|)(?:f|\*|)(?:a|\*|)(?:d|\*|)(?:i|\*|)(?:n|\*|)(?:g|\*|)(?: |\*|)(?:a|\*|)(?:w|\*|)(?:a|\*|)(?:y|\*|)(?: |\*|)(?:i|\*|)(?:n|\*|)(?:t|\*|)(?:o|\*|)(?: |\*|)(?:n|\*|)(?:u|\*|)(?:m|\*|)(?:b|\*|)(?:n|\*|)(?:e|\*|)(?:s|\*|)(?:s|\*|)(?:\.|\*|))$
and it matches the line perfectly, but I now get an error when I get a line of only asteriks. Is there another way I should go about triggering this line? Or some way to modify this one to stop getting the error message? Thanks in advance