mIRC Home    About    Download    Register    News    Help

Print Thread
#155845 09/08/06 08:08 PM
Joined: Jul 2006
Posts: 1
S
Mostly harmless
OP Offline
Mostly harmless
S
Joined: Jul 2006
Posts: 1
I'm looking for a script that I can installed in remotes, When I join a channel and that channel gives me voice or Ops, it will respond with /p10 Thanks for the Ops!! the /p10 is color that I added in my aliases for color. Also the same for voice ect.

Thank you for taking the time to read my post.

#155846 09/08/06 08:17 PM
Joined: Sep 2005
Posts: 2,881
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Sep 2005
Posts: 2,881
Code:
alias p10 return $chr(3) $+ 04
on *:voice:#:{
  if ($vnick == $me) msg $chan $p10 $+ $nick $+ , thanks for the voice.
}
on *:op:#:{
  if ($opnick == $me) msg $chan $p10 $+ $nick $+ , thanks for the op.
}

#155847 09/08/06 09:48 PM
Joined: Aug 2006
Posts: 6
D
Nutrimatic drinks dispenser
Offline
Nutrimatic drinks dispenser
D
Joined: Aug 2006
Posts: 6
Code:
 #10x on
on *:OP:#: {
  if ($opnick == $me) && ($nick != $me) && ($nick != ChanServ) /msg # Your Message $nick

}

on *:VOICE:#: {
  if ($vnick == $me) && ($nick != $me) && ($nick != ChanServ) /msg #  Your Message $nick
}

#10x end

menu channel,status,menubar {
  ยป Thanks 'bout Op/Voice
  ..-
  ..ON:.enable #10x | echo $colour(info) -a *** %logo 15 10x is ON...
  ..-
  ..OFF:.disable #10x | echo $colour(info) -a *** %logo 15 10x is OFF...    
  ..-
  ..At Moment > $group(#10x):/halt 
grin


Link Copied to Clipboard