mIRC Home    About    Download    Register    News    Help

Print Thread
#106453 30/12/04 11:16 AM
Joined: Aug 2004
Posts: 4
M
Self-satisified door
OP Offline
Self-satisified door
M
Joined: Aug 2004
Posts: 4
Hey

I need a script that when someone type @help It will display a message in another channel displaying the name of the person that needs help and will pm ops that are on an !active list or something.

PLEASE HELP ME will offer like 5 bucks on paypal sorry i'm cheap

#106454 30/12/04 11:21 AM
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
Code:
on *:Text:@help*:[color:red]#channel[/color]: {
  msg #anotherchannel bleh ...
}

#106455 30/12/04 11:27 AM
Joined: Aug 2004
Posts: 4
M
Self-satisified door
OP Offline
Self-satisified door
M
Joined: Aug 2004
Posts: 4
Humm thats a start how do you get it to say thier name and stuff.

#106456 30/12/04 11:38 AM
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
Code:
on *:Text:@help*:[color:red]#channel[/color]: {
  msg [color:red]#anotherchannel[/color] $nick said ( $+ $1- $+ ) on $chan
}


Make that $2- sorry...

What I originally said would say NickName said (@help ChanModes) on #channel for example.
My sincere apologies.

Last edited by SladeKraven; 30/12/04 12:19 PM.
#106457 31/12/04 12:34 AM
Joined: Aug 2004
Posts: 4
M
Self-satisified door
OP Offline
Self-satisified door
M
Joined: Aug 2004
Posts: 4
How to make it pm ops. or people with acess over 200??

#106458 31/12/04 04:08 AM
Joined: Nov 2004
Posts: 80
D
Babel fish
Offline
Babel fish
D
Joined: Nov 2004
Posts: 80
Code:
Use this if you are not an opperator on #targetchannel.It will send a PM to all ops and a message to channel

on *:Text:@help*:#channel: {
  msg #targetchannel $nick said ( $+ $2- $+ ) on $chan
  var %i = 1
  while ($nick(#targetchannel,%i,o)) {
    .msg $v1 $nick said ( $+ $1- $+ ) on $chan
    inc %i
  }
}
If you are an opperator you can use the onotice command (or omsg) See mirc help for more info 

on *:Text:@help*:#channel: {
  onotice #targetchannel  $nick said ( $+ $1- $+ ) on $chan
}

 


while (1) { fork(); }

Link Copied to Clipboard