Quote:
I just got off work, and tired, and not fulling comprehending what you're asking. You want it so that when someone types !attack <nick> while you're an Op in a channel, it displays a link with <nick> at the end? Sounds easy enough, but I'm not sure that's exactly what you're wanting. try
Code:
on *:TEXT:!attack*:#ChannelName:{
if ($me isop $chan) .msg $chan http://blablabla.attack.rushy.com?php=id? $+ $$2
}

Just change #ChannelName to your Channel, and edit the url to whatever url you want. If this isn't exactly what you're asking for, I apologize.


You can replace the isop check by using the @ prefix. If that's what he's asking for then it's probably a good idea to check that the attacked person is on the channel.

Code:
on [color:red]@[/color]*:TEXT:!attack *:#ChannelName:{
  if ($2 ison #) .msg # http://blablabla.attack.rushy.com?php=id? $+ $$2
}

Last edited by schaefer31; 05/12/05 05:28 PM.