Hi!
I'm using a script that copies whole lines from a channel on servera to a channel on serverb.
on 1:TEXT:*PRE*: #CHANNELONSERVERA:{
if ((Pre isin $strip($1))) { /scon 2 /msg #CHANNELONSERVERB $strip($1-) }
}
This works.
BUT, it sends also lines I don't want.
These are the lines I want:
[PRE]::[DVX/UNKNOWN]::[Battlefield 2 GAMEGUiDE DVX]::[06/21/05 20:13:11]
and I don't want these lines:
!pre spurs
and
[PRETiME]::[SERiES-US]::[NBA.Finals.2005.Spurs.vs.Pistons.Game.5.HDTV.XViD-VSS]::[1d 9h 56m 39s ago]::[06/20/2005]
So I'm using on 1:TEXT:*PRE* in my script and want only the lines with [PRE] so I changed it to *[PRE]* but then it doesn't work. Howcome? Also [PRE] without the wildcards doesn't work.