What Nick pasted is actually the XML output for a trigger configuration. It can be a little confusing if you don't have any experience with this sort of thing. This is the format that triggers are actually saved in. Let's ignore that for now.
Bishoposiris said:
Do I just enter this in the command box where I enter regular commands for the MUD?
The "send" portion of this trigger is what goes in the "send" box for your trigger, which either sends commands to the mud or processes scripts depending on the "send to" option you pick in the dropdown box.
Bishoposiris said:
What if I need to edit the trigger/variable later? Can I do that from the GUI?
Yes, absolutely. You can click the trigger icon or push "shift+ctrl+8" to bring up your trigger interface. You can either click already entered triggers, or click add to add a new one. Once you click add, you will see the "send" box and the "send to" dropdown I mentioned earlier.
Bishoposiris said:
Is this LUA?
Yes, Lua is the default scripting language for MUSHclient and has the most power and flexibility. Mostly what you see here are function calls to save, retrieve, and modify a variable. There is a comprehensive list of built in MUSHclient functions you can view on this website. Alternatively you can search for a function by name to find the documentation.
Bishoposiris said:
What do these two items do:
send_to="12"
sequence="100"
"Send to" is just a numbered reference for the "send to" dropdown box on the add trigger interface. In this case the 12 means "script." (script is the 12th option in the dropdown).
If you want to just add what Nick posted you can copy the tags from triggers to /trigger, go to MUSHclient and push "shift+ctrl+8", then click the "paste" button at the bottom. You should then change the trigger text from "blah blah" to whatever text you need this trigger to fire on.
Hope this helps!