I used to have a setting for being able to type ET for Enable Triggers, and DT for disable triggers, but I've lose those settings. Can anyone help me recreate one?
ET/DT
Posted by Kresslack on Mon 07 Sep 2009 12:34 AM — 3 posts, 15,606 views.
<aliases>
<alias
name="trigger_controller"
match="^(et|dt)$"
enabled="y"
regexp="y"
send_to="12"
sequence="100"
>
<send>
if "%1" == "et" then
SetOption ("enable_triggers", 1)
Note "Triggers enabled"
else
SetOption ("enable_triggers", 0)
Note "Triggers disabled"
end -- if
</send>
</alias>
</aliases>
For advice on how to copy the above, and paste it into MUSHclient, please see Pasting XML.
This uses et/dt (lower-case).
Thanks Nick. :)