mIRC Home    About    Download    Register    News    Help

Print Thread
#152274 29/06/06 02:00 AM
Joined: May 2006
Posts: 3
M
Self-satisified door
OP Offline
Self-satisified door
M
Joined: May 2006
Posts: 3
I know there have been bits and piece of reading a text file in certain scripts, but I wanted something very simple. I will basically have a textx file with one word per line. And I just want it to read that text file looking for a matching word based on what gets printed in the channel. Probably confusing so...

Code:
 
on @1:text:*:#: { 
  if (# == #channel) && (CERTAINWORD isin $7-) { 
    set %word $strip($7)
    //msg #channel You just saw %word. RUN!!!!!
  }


I know the word will always be the 7th word of the line. Where certainword is I want to be able to tell it to look in a text for that word, so I dont have to paste all that code for every word I want it to recognize.

#152275 29/06/06 02:06 AM
Joined: Apr 2006
Posts: 399
K
Fjord artisan
Offline
Fjord artisan
K
Joined: Apr 2006
Posts: 399
ok, for one thing, you got this part wrong:
Code:
if (# == #channel) 
it needs to be $channel

and, what channel is this in? is it JUST called #
also, you are wanting to send every word from the 7th after to a txt file?

Last edited by Kurdish_Assass1n; 29/06/06 02:07 AM.
#152276 29/06/06 02:14 AM
Joined: Dec 2002
Posts: 1,245
M
Hoopy frood
Offline
Hoopy frood
M
Joined: Dec 2002
Posts: 1,245
Quote:
I will basically have a textx file with one word per line. And I just want it to read that text file looking for a matching word based on what gets printed in the channel.
I know the word will always be the 7th word of the line. Where certainword is I want to be able to tell it to look in a text for that word, so I dont have to paste all that code for every word I want it to recognize.


I didn't test this, but try this
Code:
on @*:text:*:[color:red]#channel[/color]:{
var %checkfile = $read([color:red]wordlist.txt[/color],w,$7)
if (%checkfile) { msg # $nick $+ , You just said $7 $+ ! RUN!!! }
}


replace the red parts witht eh actual names

#152277 29/06/06 02:16 AM
Joined: Apr 2006
Posts: 399
K
Fjord artisan
Offline
Fjord artisan
K
Joined: Apr 2006
Posts: 399
uh-oh! it's MikeChat..
/me just made himself feel stupid! :P
lol

#152278 29/06/06 02:32 AM
Joined: Sep 2005
Posts: 2,630
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Sep 2005
Posts: 2,630
Code:
on @1:text:*:#[color:red]channel[/color]:{
  if ($read([color:red]file.txt[/color],nw,$strip($7))) msg $chan You just saw $7! RUN!!!!! 
}


Kurdish_Assass1n: # is short for $chan, so if (# == #channel) is perfectly fine.

#152279 29/06/06 05:19 AM
Joined: Apr 2006
Posts: 399
K
Fjord artisan
Offline
Fjord artisan
K
Joined: Apr 2006
Posts: 399
o, yea, I was corrected for using # instead of $chan last time, but, idk why I said that, lol

#152280 29/06/06 06:16 AM
Joined: Apr 2006
Posts: 399
K
Fjord artisan
Offline
Fjord artisan
K
Joined: Apr 2006
Posts: 399
o, wait, you thought I was talking about # changed to $chan? I know that's right, but, change #channel to $chan.

Last edited by Kurdish_Assass1n; 29/06/06 07:13 AM.
#152281 29/06/06 06:46 AM
Joined: Aug 2005
Posts: 525
S
Fjord artisan
Offline
Fjord artisan
S
Joined: Aug 2005
Posts: 525
$channel is not an mIRC identifier, so why would he change that?

#152282 29/06/06 07:12 AM
Joined: Apr 2006
Posts: 399
K
Fjord artisan
Offline
Fjord artisan
K
Joined: Apr 2006
Posts: 399
$chan, ahh, it's 2 am, leaving now! :P
these last few posts made me feel stupid! I need some sleep, later

#152283 29/06/06 04:07 PM
Joined: Sep 2005
Posts: 2,630
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Sep 2005
Posts: 2,630
if (# == $chan) means if ($chan == $chan), which will always be true :tongue:

#152284 29/06/06 05:48 PM
Joined: Apr 2006
Posts: 399
K
Fjord artisan
Offline
Fjord artisan
K
Joined: Apr 2006
Posts: 399
Code:
on @1:text:*:#: {
 [color:red] if (# == #channel)[/color] && (CERTAINWORD isin $7-) {
    set %word $strip($7)   
  //msg #channel You just saw %word. RUN!!!!!  
 }
}

The red part was what I was talking about, it's if (# == #channel) I thought it would have to be if (# == $chan)
but, I guess not. laugh

#152285 29/06/06 08:01 PM
Joined: Sep 2003
Posts: 4,214
D
Hoopy frood
Offline
Hoopy frood
D
Joined: Sep 2003
Posts: 4,214
Code:
on @1:text:& & & & & & *:[color:blue]#channel[/color]: { 
  var %word = $strip($7)
  if ($read([color:red]filename[/color],s,%word) || $readn) {
    [color:green]set %word %word[/color]
    msg #channel You just saw %word. RUN!!!!!
  }
}


Other code given also works, but this should match exactly to what you requested and said yor file was (words one per line, to be matched)
I think this is better than using $read(,w,) becuase that uses wild card matching and should $7 be * you well get a match to the first word in the file.

on the green line : I dont know if u actually needed the %word stored globally or not so i left this line in, grabing it from the local copy of %word already created, if u dont need it then remove the green line.

set the blue #channel as needed

PS: replace filename with the filename of course.


Link Copied to Clipboard