Two suggestions

Posted by Waps on Sun 21 Jun 2020 12:26 AM — 3 posts, 14,027 views.

#0
- A find next button in the CTL+F search interface

- Can a trigger with * at start end end still match if the text is actually not preceded by anything?

For example...

Trigger for "*You find a potion*"

Would still work even if the MUD says

You find a potion

As opposed only when there is a character before "Y"

It's possible I'm misunderstanding something. But just wanted to share. I searched but didn't find; likely some poor terminology above, I admit.

Thanks
Australia Forum Administrator #1
Quote:

- A find next button in the CTL+F search interface


Shift+Ctrl+F finds the next occurrence.

Quote:

- Can a trigger with * at start end end still match if the text is actually not preceded by anything?


Yes. The "*" in a non-regexp trigger is the same as ".*" in a regular expression which matches "zero or more of any character" so therefore it matches "no text" as well.
#2
Thank you!