mIRC Home    About    Download    Register    News    Help

Print Thread
#100492 13/10/04 12:54 AM
Joined: Oct 2004
Posts: 2
S
shea Offline OP
Bowl of petunias
OP Offline
Bowl of petunias
S
Joined: Oct 2004
Posts: 2
can someone help me with the code that will op people when they join a channel.

just so when ever a user joins they get opped?

thanks

shea.

#100493 13/10/04 12:57 AM
Joined: Mar 2004
Posts: 175
Vogon poet
Offline
Vogon poet
Joined: Mar 2004
Posts: 175
Code:
On *:JOIN:#YourChannelName: {
If ($Me !isvoice #) && ($Me !isreg #) { mode # +o $Nick }
}

The only thing you should edit from there is the #YourChannelName nothing else.


- Relinsquish
#100494 13/10/04 01:05 AM
Joined: Oct 2004
Posts: 2
S
shea Offline OP
Bowl of petunias
OP Offline
Bowl of petunias
S
Joined: Oct 2004
Posts: 2
thank you veyr much

#100495 13/10/04 03:14 AM
Joined: Jan 2003
Posts: 13
B
Pikka bird
Offline
Pikka bird
B
Joined: Jan 2003
Posts: 13
Or you could go to the Address Book (alt+b), Control Tab, select "Op", Click Add, enter *!*@*, the channel and the network,, OK, make sure it's enabled.

The advantage of doing it this way is that it won't excess flood on a netsplit rejoin.


Show me the steps to somewhere in the sky...
#100496 13/10/04 11:50 AM
Joined: Mar 2004
Posts: 45
D
Ameglian cow
Offline
Ameglian cow
D
Joined: Mar 2004
Posts: 45
on @*:JOIN:#YourChannelName: { mode # +o $nick }


Link Copied to Clipboard