Triggers react to MUD text. Hotkeys react to the keyboard. Both can send plain commands without a script.
This trigger sends eat bread when the MUD prints exactly You are hungry.
eat-when-hungry.^You are hungry\.$ as the pattern. The backslash makes the period literal.You are hungry. in Test against a line. The pattern's status dot should show a match.eat bread in Script.Test while watching the session. Disable the trigger if the MUD uses the same sentence in room descriptions, help text, or player messages.
Add a Match row when another pattern may start the same trigger. Add an Anti-match row to prevent firing on a line that also contains an unwanted form. Raw regex is for matching the unprocessed incoming line; use it only when formatting or protocol-adjacent text makes a normal match insufficient.
A prompt may arrive without a newline. Saved triggers created in the window match completed lines; a script author can opt a script-created trigger into prompt matching. Use that option only for a pattern deliberately written for prompts, because it can run more often than a line trigger.
Captured text works in a plain action just as it does for an alias. For ^You receive (\d+) gold\.$, an action can refer to the amount as $1.
move-north.north in Script, then choose Create hotkey.Choose combinations that do not conflict with text editing, operating-system shortcuts, or accessibility tools. A hotkey belongs to its session; it fires when an input owned by that session has focus.
Open Automations and turn off the item's enabled switch. If a trigger is sending too quickly to work safely, disconnect first, open the profile offline, and disable or repair it there.