quote:
Originally posted by scutterman
The code looks good but as I said I'm new so I would be realy grateful if someone could talk me through it.
P.S. why are there 3 "=" signs in this part:
if (aSent[ChatWnd.Handle] === Message) {
Thanks alot
~~Scutterman~~
It is a Bitwise comparison. Meaning each byte has to match. if (2 == '2') (will return true) 2=== '2' will return false