I'm playing Age of Chaos, and the prompt/display command does not offer your max hp/mana/move so I'm having to pull that from the score command. I'm trying to put together an HP bar eventually.
The line I'm trying to trigger is
You have 66(66)[+136] hit, 92(92)[+98] mana and 97(97)[+141] movement points.
And for some reason I can't get anything to trigger correctly.
Here are the triggers I'm trying, and so far I'm just focusing on the first '66' because that's where I'm getting hung. This works:
And this works:
But this does not work:
And this does not work:
As well as this does not work:
What on earth am I doing wrong here?
The line I'm trying to trigger is
You have 66(66)[+136] hit, 92(92)[+98] mana and 97(97)[+141] movement points.
And for some reason I can't get anything to trigger correctly.
Here are the triggers I'm trying, and so far I'm just focusing on the first '66' because that's where I'm getting hung. This works:
^You have ..\((\d+)\)\[\+\d+\] hit, ..\((\d+)\)\[\+\d+\] mana and ..\((\d+)\)\[\+\d+\] movement points\.And this works:
^You have .+\((\d+)\)\[\+\d+\] hit, ..\((\d+)\)\[\+\d+\] mana and ..\((\d+)\)\[\+\d+\] movement points\.But this does not work:
^You have 66\((\d+)\)\[\+\d+\] hit, ..\((\d+)\)\[\+\d+\] mana and ..\((\d+)\)\[\+\d+\] movement points\.And this does not work:
^You have \d+\((\d+)\)\[\+\d+\] hit, ..\((\d+)\)\[\+\d+\] mana and ..\((\d+)\)\[\+\d+\] movement points\.As well as this does not work:
^You have \d\d\((\d+)\)\[\+\d+\] hit, ..\((\d+)\)\[\+\d+\] mana and ..\((\d+)\)\[\+\d+\] movement points\.What on earth am I doing wrong here?