Line 58: [Error] (244:11): Unknown identifier 'CreateTPAFromBMP' in script C:\Program Files\SCAR 3.15\includes\SRL/SRL/Core/Math.scar
do i have to download the includes or what. that happens with any script i try ( even a simple move mouse one ).
this is the little section thing for the file thats in
SCAR Code:
Function CreateTPAFromText(Txt : String; Chars : Integer) : TPointArray;
var
TempBMP : integer;
begin;
TempBMP := CreateBitmapMaskFromText(Txt,Chars);
Result := CreateTPAFromBMP( GetBitmapDC(TempBMP));// line the error is on
FreeBitmap(TempBMP);
end;