Hi, I am trying to get the following trigger to work:
** You gain a practice point from *. **
Send to: Notepad(append) -> Prac from %3
The first and last two ** are sent by the mud, and the third * is the variable. Ive tried using reg expression like this:
^\*\* You gain a practice point from *. \*\*$
Then youll use:
^\*\* You gain a practice point from (.*?)\. \*\*$
with %1 being the thing.
And:
^You lose (.*?) points and your opponent loses (.*?) points\.$
This wont match on singular points (unless they keep the s), you might want to try this instead:
^You lose (.*?) points? and your opponent loses (.*?) points?\.$
or if you want to get really picky and only match on digits, you could do this:
^You lose (\d+) points and your opponent loses (\d+) points\.$
And once again, that wont match if they drop the 's'.