mIRC Homepage
Posted By: gomp A "now playing" response. - 13/01/08 02:10 PM
I got this:

Code:
on *:text:!np:#: { 
  msg $chan /np
}


But, it only makes me say, [15:06:30] <Curious> /np ..
Where I would like it to do that command. As when I type /np, then I show like this, [15:08:50] <Curious> Now Playing: Alice in Chains- Heaven Beside You ..

What am I doing wrong? I cannot figure why it will not work..
Posted By: OrionsBelt Re: A "now playing" response. - 13/01/08 02:21 PM
You need to install a winamp plugin.
If you search www.mirc.net you will find some of these plugins.
Posted By: Tewl Re: A "now playing" response. - 13/01/08 02:21 PM
depending on what the np alias does..

on *:text:!np:#: {
msg $chan $np
}


Posted By: gomp Re: A "now playing" response. - 13/01/08 02:31 PM
I got that plugin. smile I wonder how to make it possible for other to trigger.
Posted By: gomp Re: A "now playing" response. - 13/01/08 02:33 PM
Originally Posted By: Tewl
depending on what the np alias does..

on *:text:!np:#: {
msg $chan $np
}




The np alias does this: When I type /np.. I get:
13 15:31:19 <Curious> Now Playing: Bedrock - Beautiful Strange ..

I want others to be able to trigger it, instead of asking what I am playing all the time. I get really tired of answering, when people ask for every 4'th minute.

Tested that script:

Code:
on *:text:!npC:#: {
  msg $chan $np
}


But, nothing happens when people type !npC .. am I doing wrong?

I get this it seems: * You are not on a channel (line 201, aliases.ini) And line 201 is this: n201=

(Nothing.)
Posted By: Riamus2 Re: A "now playing" response. - 13/01/08 09:22 PM
Heh. If it is an alias already, then you want to just do:
Code:
on *:text:!np:#: {
  np
}
© mIRC Discussion Forums