mIRC Home    About    Download    Register    News    Help

Print Thread
#155305 05/08/06 02:44 AM
Joined: Aug 2006
Posts: 2
E
eyewii Offline OP
Bowl of petunias
OP Offline
Bowl of petunias
E
Joined: Aug 2006
Posts: 2
Hey.. I need some help with a script that will make me say excact what a specified person says.. I already have this:

on 1:TEXT:*:#:{
/say $1-
}

but that makes me say what everyone is saying. I want to teas a guy and therefore i need help:

example:

-Tom: hehe
-eyewii: hehe
melissa: gj
John: haha
-Tom: stop repeat me!
-eyewii: stop repeat me!


Help me out folks smile

#155306 05/08/06 02:48 AM
Joined: Apr 2006
Posts: 464
O
Fjord artisan
Offline
Fjord artisan
O
Joined: Apr 2006
Posts: 464
Try this:

Code:
on 1:TEXT:*:#:{
  if ($nick == Tom) {
    msg $chan $1-
  }
}

#155307 05/08/06 03:24 AM
Joined: Aug 2006
Posts: 2
E
eyewii Offline OP
Bowl of petunias
OP Offline
Bowl of petunias
E
Joined: Aug 2006
Posts: 2
Thanks! Love u dude cool


Link Copied to Clipboard