ok this is the script im using to get my tile position for smart
SCAR Code:{.Include SRL\SRL\Misc\Smart.Scar}
{.Include SRL\SRL.Scar}
{.Include SRL\SRL\Reflection\Reflection.Scar}
Var
X, Y: Integer;
Begin
LoadSMART(2, True, False);;
SetTargetDC(SmartGetDC);
SetupSRL;
ActivateClient;
Wait(2000 + Random(500));
Repeat
If (IsFKeyDown(2)) Then
Begin
Getmypos(X,Y);
WriteLn(IntToStr(X) + ', ' + IntToStr(Y));
While (IsFKeyDown(2)) Do
Wait(1);
End;
Until False;
End.
but the getmypos doesnt work lil help?


Reply With Quote





