mIRC Home    About    Download    Register    News    Help

Print Thread
#106973 05/01/05 08:59 PM
Joined: Aug 2004
Posts: 14
H
Hive Offline OP
Pikka bird
OP Offline
Pikka bird
H
Joined: Aug 2004
Posts: 14
I know you must get asked for this a lot, but this a little different. . .

I'm looking for a script that sets mode +o on all users that join, no matter what.

Thanks in advance.

#106974 05/01/05 09:02 PM
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
Code:
on !*:Join:#: {
  mode $chan +o $nick
}

#106975 05/01/05 09:09 PM
Joined: Aug 2004
Posts: 14
H
Hive Offline OP
Pikka bird
OP Offline
Pikka bird
H
Joined: Aug 2004
Posts: 14
Doesn't appear to be working for me.

#106976 05/01/05 09:12 PM
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
That does work for me, slight alteration though, best check if we are an operator on $chan.
Code:
on @!*:Join:#: {  mode $chan +o $nick }

#106977 05/01/05 09:15 PM
Joined: Feb 2004
Posts: 2,019
Hoopy frood
Offline
Hoopy frood
Joined: Feb 2004
Posts: 2,019
@SladeKraven: little of topic, but when you specify @, the ! becomes obsolete, as you can't be joining and an operator at the same time.

@Hive: Make sure your remotes are on (/remote on), put the code at the top of your current scripts file, or try putting it in a new file.

Greets


Gone.
#106978 05/01/05 09:15 PM
Joined: Aug 2004
Posts: 14
H
Hive Offline OP
Pikka bird
OP Offline
Pikka bird
H
Joined: Aug 2004
Posts: 14
Edit: Sorted now. Thanks for the help.

Last edited by Hive; 05/01/05 09:16 PM.
#106979 05/01/05 09:16 PM
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
Forgot to take it out my bad.


Link Copied to Clipboard