mIRC Home    About    Download    Register    News    Help

Print Thread
#155305 05/08/06 02:44 AM
E
eyewii
eyewii
E
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
E
eyewii
eyewii
E
Thanks! Love u dude cool


Link Copied to Clipboard