in reply to Need Help w/ AIMBot

One thing that both posters so far missed -- unless you're doing some pre-filtering you aren't showing, $msg will be in a psudoHTML, and there will be several HTML tags preceding the visable text, so you don't want to anchor that sorry to the beginning of the string with a ^, or you want to filter out the HTML. To filter out the HTML, somthing like s/<.*?>//g should work for simple cases... and, if I guess correctly, you'll never see a non-simple case in AIM-HTML.


Warning: Unless otherwise stated, code is untested. Do not use without understanding. Code is posted in the hopes it is useful, but without warranty. All copyrights are relinquished into the public domain unless otherwise stated. I am not an angel. I am capable of error, and err on a fairly regular basis. If I made a mistake, please let me know (such as by replying to this node).

Replies are listed 'Best First'.
Re: Re: Need Help w/ AIMBot
by Sleepaholic88 (Novice) on Mar 02, 2003 at 22:49 UTC
    Yea, that's true, but the main file (bot.pl) covers that.