You seem to be still confused about the wildcards in regexp's. Here, by doing '\*' you are actually telling the client to match on, for example:
*You have a particularly intense shiver*
this is the literal string that your trigger will match on. It won't match on something like:
3245h, 1256m cexkdb-You have a particularly intense shiver.
The reason for this is that you are using an escape character ('\') before an asterix, which itself is a special character denoting any number of whatever precedes it. However, when escaped with '\' any special character is interpreted literally. So to cut the long story short, in order to match on:
3245h, 1256m cexkdb-You have a particularly intense shiver.
you'd need to use wildcards, and a basic wildcard in regexp is denoted by '.' (period). There are other types of wildcards but this one works in all cases. The most basic form of a wildcard in regexp looks like:
which tells the client to match on any number of anything.
Thus, you could amend your trigger to include:
.*You have a particularly intense shiver.*
To reiterrate on the meaning of the escape character using the above example - if you actually wanted to include the period at the end of the above line (the actual period in the end of the sentance), instead of a wildcard that would match that period among other things, you would do:
.*You have a particularly intense shiver\.
By prepending an escape character to a special wildcard character '.' you are stripping any "specialness" off the latter and turn it into a simple literal, just like any letter in the string >You have a particularly intense shiver". Hope that makes sense. As Nick suggested, one of the best ways to figure out the basic regexp syntax is to use Mushclient's 'Convert to regular expression' option in the Add Trigger dialogue, that will take your trigger (normal one, without any special syntax, like "*You have a particularly intense shiver*") and turn it into a corresponding regexp, showing you how the syntax works. Although that provides only the minimum functionality of regexp, it can be very useful when just starting out.