本帖最后由 lboy 于 2019-3-12 11:20 AM 编辑
In the Pozhen task, there are eight directions. One of the directions is correct. The correct direction and some random directions are blinking. So if a direction is not blinking, the player will know it is wrong. Each time the player goes the wrong direction, he will lose some HP. If the player goes the correct direction, a npc will fight with him. If his HP is very low, he will be defeated by the npc.
Without displaying blinking text, the player has no way to know which directions are wrong. So he is likely to fail in the Pozhen task.
I want to catch the blinking directions so that I can know which directions are wrong.
This is the trigger of "^棒棒糖说道:「你去帮我弄根(.+)过来吧。」$":
New Trigger111
0
0
0
dw
#ff0000
#ffff00
#000000
#000000
^棒棒糖说道:「你去帮我弄根(.+)过来吧。」$
1
The line I want to match is something like:
棒棒糖说道:「你去帮我弄根冰魄杖过来吧。」
Because the "matches" is nil, I have to use varialbe "line". |