mIRC Home    About    Download    Register    News    Help

Print Thread
#33591 02/07/03 11:37 AM
Joined: Jul 2003
Posts: 9
T
Teclis Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
T
Joined: Jul 2003
Posts: 9
I'm just starting to use scripts, so I don't really know the language. Can anyone give me a script that allows me to put an autogreeting in the channel window if a new user joins, and will beep at me if they type a specified word/phrase?Thanks.

#33592 02/07/03 11:45 AM
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
Code:
on !*:JOIN:#: {
msg $chan <Your greeting> | halt }
}


Code:
on *:TEXT:*word or phrase*:#: {
beep 3
;You could also choose /splay path\filename instead of beep 3
}

#33593 02/07/03 11:57 AM
Joined: Jul 2003
Posts: 9
T
Teclis Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
T
Joined: Jul 2003
Posts: 9
thanks


Link Copied to Clipboard