Now, i BELIEVE there to be something wrong with the function MSTPointToBankPoint, which can be found in Bank.scar. It just isn't processing the coordinates properly..
scar Code:{*******************************************************************************
Function MSTPointToBankPoint(P: TPoint): TPoint;
by: Wizzup
Description: Converts a point on the Mainscreen to the point in the Bank.
First Row and Col are (0,0).
*******************************************************************************}
Function MSTPointToBankPoint(MSP: TPoint): TPoint;
Begin
Result.X := (MSP.X - 38) / 44;
Result.Y := (MSP.Y - 90) / 45;
End;
Soo... just wondering if anybody else has noticed this?

