mIRC Homepage
Posted By: DeadlySin on TEXT - 10/10/03 07:23 PM
i need help ith halt i got this on text script were if say like bob says something in query like hi i want to send him back saying hi and if jim say hi i dont say anything i did this:

Code:
on *:TEXT:hi:?:{
  if ($nick == bob) msg $nick hi | msg $nick How u doing
} 


Is that right and how could i put on there a halt for any other user that says hi

Thx confused
Posted By: BORR Re: on TEXT - 10/10/03 07:32 PM
Code:
 
on *:TEXT:hi:?: {
  if ($nick == bob) { msg $nick hi | msg $nick How u doing }
} 
 


seems right 2 me
Posted By: DeadlySin Re: on TEXT - 10/10/03 07:35 PM
thx m8 grin
Posted By: Insanatic Re: on TEXT - 18/10/03 10:21 AM
you forgot to put the *after the hi.it should look like this
on *:TEXT:hi*:#:{
Posted By: Collective Re: on TEXT - 18/10/03 10:23 AM
The only difference that makes is that it will respond to any line beginning with hi rather than a line of "hi" and nothing else.
© mIRC Discussion Forums