Notice: Any messages purporting to come from this site telling you that your password has expired, or that you need to verify your details, confirm your email, resolve issues, making threats, or asking for money, are
spam. We do not email users with any such messages. If you have lost your password you can obtain a new one by using the
password reset link.
Due to spam on this forum, all posts now need moderator approval.
Entire forum
➜ MUSHclient
➜ Suggestions
➜ Triggers/Aliases
It is now over 60 days since the last post. This thread is closed.
Refresh page
| Posted by
| Helpless
(48 posts) Bio
|
| Date
| Wed 01 Aug 2007 10:14 PM (UTC) |
| Message
| Can we get a button to click that turns off triggers, and one that turns off aliases? the idea comes from zmud, you click on the little gun and it disables triggers (while putting a red X over the gun) and a little computer (i think) that disables aliases. Maybe a clock too to disable timers? i dont remember seeing a button to turn off timers on zmud but its been awhile.
If not a button to click...how bout a command for those 3? ctrl+whatever, or ctrl+shift+whatever......sorry if this exists in some form and i have yet to find it. (and icons to let you know whats off still sound good even if you cant disable/enable the things by clicking them) | | Top |
|
| Posted by
| Nick Gammon
Australia (23,169 posts) Bio
Forum Administrator |
| Date
| Reply #1 on Wed 01 Aug 2007 10:18 PM (UTC) |
| Message
| | In the trigger configuration list is a checkbox "Enable triggers". If you uncheck that they are all disabled. Same for aliases and timers. |
- Nick Gammon
www.gammon.com.au, www.mushclient.com | | Top |
|
| Posted by
| Helpless
(48 posts) Bio
|
| Date
| Reply #2 on Thu 02 Aug 2007 12:01 AM (UTC) |
| Message
| | i know, i was suggesting an easier way to shut them off | | Top |
|
| Posted by
| David Haley
USA (3,881 posts) Bio
|
| Date
| Reply #3 on Thu 02 Aug 2007 12:42 AM (UTC) |
| Message
| | I'm confused, is it really that hard to go into the menu first? Is turning on/off triggers/aliases/etc by hand something you do that often? |
David Haley aka Ksilyan
Head Programmer,
Legends of the Darkstone
http://david.the-haleys.org | | Top |
|
| Posted by
| Worstje
Netherlands (899 posts) Bio
|
| Date
| Reply #4 on Thu 02 Aug 2007 12:42 AM (UTC) |
| Message
| Three new buttons on the World Toolbar might indeed be nice. They'd toggle respectively Triggers, aliases and timers (of the world, not plugins) off. Pretty much a visual indicator of the checkboxes in the Configuration screen.
I wouldn't use them myself, but I can see how people need them. | | Top |
|
| Posted by
| Nick Gammon
Australia (23,169 posts) Bio
Forum Administrator |
| Date
| Reply #5 on Thu 02 Aug 2007 04:20 AM (UTC) |
| Message
| I actually think that too many buttons that do obscure things reduces functionality rather than adding to it, because you get "button clutter".
You can make a couple of aliases to enable and disable triggers, like this:
<aliases>
<alias
match="disable_triggers"
enabled="y"
send_to="12"
sequence="100"
>
<send>
SetOption ("enable_triggers", 0)
ColourNote ("white", "orangered", "Triggers disabled.")
</send>
</alias>
<alias
match="enable_triggers"
enabled="y"
send_to="12"
sequence="100"
>
<send>
SetOption ("enable_triggers", 1)
ColourNote ("white", "green", "Triggers enabled.")
</send>
</alias>
</aliases>
Now if you want to, you can make an accelerator or macro call those aliases with a single keypress. You could also update the info bar (if you aren't using it for anything else) with a message saying whether or not triggers are enabled.
A bit of copying and pasting, and a couple of minor changes, and you can do similar things for aliases and timers. |
- Nick Gammon
www.gammon.com.au, www.mushclient.com | | Top |
|
The dates and times for posts above are shown in Universal Co-ordinated Time (UTC).
To show them in your local time you can join the forum, and then set the 'time correction' field in your profile to the number of hours difference between your location and UTC time.
19,858 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top