Mirc trigger |
Mirc trigger |
SmilinBob |
Jan 31 2009, 07:08 AM
Post
#1
|
Newbie Group: Members Posts: 2 Joined: 31-January 09 Member No.: 672 |
I have been using AMIP for quite a while now. But I never messed around with it much at all.
What I am trying to do is create a remote trigger to display my now playing info when someone says ".np" This is what I have in mirc: Remote: on *:TEXT:.np:#: np4 Alias: /np4 /dde mplug announce preset 4 Preset #4 in the amip config is: //cme is listening to %2 by %1 [%4] I also have the channels I want to announce to in the channel list. This all works exactly as planned as long as the channel that ".np" is said in is the active channel.If i am currently focused on another channel, it won't do anything. |
SmilinBob |
Jan 31 2009, 08:40 AM
Post
#2
|
Newbie Group: Members Posts: 2 Joined: 31-January 09 Member No.: 672 |
Neveremind, I was finally able to figure it out for myself.
:/ Incase anyone was curious, this is what I used: (put in your remotes) CODE on *:TEXT:.np:#: npr alias /npr { describe $chan is listening to: $dde(mplug, var_2) by $dde(mplug, var_1) $chr(91) $+ $dde(mplug, var_4) $+ $chr(93) } |