Help/Trigger

From DikuMUD Wiki
Revision as of 12:34, 21 September 2020 by Papi (talk | contribs)
Jump to navigation Jump to search

Trigger

If you're playing DikuMUD with the web-client there is built-in support for triggers. A trigger is useful for sending commands to the MUD when certain text appears on your screen.

Triggers in the web-client are based on Java Script Regular Expressions.They're super powerful but they can also be a bit tricky to use. Best with a few examples:

Usage:

 trigger <regexp> command

Say for example, you want to do whatever the beastly Fido tells you to do. This command will trigger on the tell from beastly fido, will extract what the dog told you and will execute the command (the $ sign):

 {trigger obey /^the Beastly Fido tells you '(.+?)'/ $

Or if maybe, every time one of the city guards leave a room you'd like to say "I love the cityguard. Especially when the guard leaves <direction>.". This is how to do it:

 {trigger loveit /^The Cityguard leaves (.+?)\./ say I love it when the guard leaves. Especially when the guard leaves $1.}

If you want to add to that the use of variables, you can do like this:

 {value friends papi|the cityguard|fido}
 {trigger loveit /^(@friends)\sleaves (.+?)\./ say I love it when $1 leaves. Especially when $1 leaves $2.}

You may notice this is written with Regular Expressions. If you're not familiar or want to learn more this site RegEx Reference allows you to build triggers.

See also:

 {Help bot}
 {Help variable}
 {Help alias}