mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Jan 2005
Posts: 2
C
Chmura Offline OP
Bowl of petunias
OP Offline
Bowl of petunias
C
Joined: Jan 2005
Posts: 2
i need a simple script that will make my mirc autoop one person on one channel or any channel whenever the person joins it when im in there, it can op by nick
can someone help me out?

Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
Code:
on @*:Join:#: {
  if ($nick == [color:blue]nick[/color]) { 
    mode $chan +o [color:blue]nick[/color]
  }
}

Joined: Jun 2003
Posts: 5,024
M
Hoopy frood
Offline
Hoopy frood
M
Joined: Jun 2003
Posts: 5,024
You can use mIRC's /aop command. See /help /aop. Here's a few examples:

/aop nickname #channel

This will make you auto-op 'nickname' in #channel, but only if he uses that nickname.

/aop nickname

This will auto-op 'nickname' on any channel you're an op in.

/aop nickname #channel 3

This will add a nickname's *!*user@*.domain to your AOp list, meaning they can join with any nickname, but as long as their [email]user@host[/email] stays the same, they will be opped.

Regards,


Mentality/Chris
Joined: Jan 2005
Posts: 2
C
Chmura Offline OP
Bowl of petunias
OP Offline
Bowl of petunias
C
Joined: Jan 2005
Posts: 2
great
thank you very much smile


Link Copied to Clipboard