the get black chat text function that is used in GetBlackChatMessage wasnt working so ive changed the coords and it works now,
Zephy informed me i should have changed the text coords so this is the updated text coords.
SCAR Code:
{*******************************************************************************
Function TextCoords(textn: Integer): TPoint;
By: Wizzup? Updated by Waddo.
Description: Returns x, y for text. (1 to 8)
*******************************************************************************}
Function TextCoords(textn: Integer): TPoint;
Begin
Result.X := 11;
Result.Y := 346 + (14 * (textn - 1));
End;