mIRC Home    About    Download    Register    News    Help

Print Thread
#100642 14/10/04 06:39 PM
Joined: Jun 2004
Posts: 133
S
state Offline OP
Vogon poet
OP Offline
Vogon poet
S
Joined: Jun 2004
Posts: 133
how can i have it so that when some 1 whispers me i whisper them back saying hi know ones here etc. then if they try to whisper me more then twice in 5seconds i ignore them for 5 seconds.

#100643 14/10/04 08:10 PM
Joined: Mar 2004
Posts: 175
Vogon poet
Offline
Vogon poet
Joined: Mar 2004
Posts: 175
The correct term for "Whisper" is a Query or Private Message. To do what you're asking, insert the following code in your Remotes section:
Code:
On *:TEXT:*:?: {
If (%Query. [ $+ [ $Nick ] ] == 2) {
ignore -pu5 $Nick
unset %Query. [ $+ [ $Nick ] ]
}
Else {
msg $Nick Hi, no one's here.
inc -u5 %Query. [ $+ [ $Nick ] ]
}
}


- Relinsquish
#100644 14/10/04 09:49 PM
Joined: Jun 2004
Posts: 133
S
state Offline OP
Vogon poet
OP Offline
Vogon poet
S
Joined: Jun 2004
Posts: 133
thank you


Link Copied to Clipboard