mIRC Home    About    Download    Register    News    Help

Print Thread
#116645 07/04/05 09:35 AM
Joined: Apr 2005
Posts: 31
V
Valo Offline OP
Ameglian cow
OP Offline
Ameglian cow
V
Joined: Apr 2005
Posts: 31
on !*:JOIN:#:{
.timer 1 2 /notice # 9,1 shi nick smile call your friends to this chanenel wink
if $regex($nick,/^nick\d+$/i) {
.timer 1 3 if ( # ischan) /notice # 9,1 $nick $+ : 7,1 luuplease change your nick, write /nick yournicknick
}
}

can i do in this script that it wont show notice in my status or no?

#116646 07/04/05 09:42 AM
Joined: Feb 2004
Posts: 2,019
Hoopy frood
Offline
Hoopy frood
Joined: Feb 2004
Posts: 2,019
You can silence many commands by prefixing it with a dot .

So .notice instead of notice.

Btw the front slashes are not needed for commands in scripts, so you can put: .notice # ...


Gone.
#116647 07/04/05 09:42 AM
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
try /.notice

#116648 07/04/05 09:43 AM
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
Not needed, though they can be used. Hehe. wink

#116649 07/04/05 06:42 PM
Joined: Apr 2005
Posts: 31
V
Valo Offline OP
Ameglian cow
OP Offline
Ameglian cow
V
Joined: Apr 2005
Posts: 31
on @*:JOIN:#popular:{
.timer 1 2 /.notice # my text
if $regex($nick,/^nick\d+$/i) {
.timer 1 5 if ( # ischan) /.notice # $nick $+ : change nick write /nick yournick
}
}

what should i change now that it will show only to that guy who joins private like notice not notice in public chat?

#116650 07/04/05 06:45 PM
Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
replace the # in your .notice with $nick


Link Copied to Clipboard