Hi guys, i'm having a problem with SPS pathing, this is probably really simple, but ohwell.
I tried getting my char to walk to a location. but it says:
"WARNING: sps.getPlayerPos(): Didn't find enough matches accurately calc your postion
-- sps.getPlayerPos(): result = {X = -1, Y = -1}, took 16 ms"
My path is correct, I don't really know what I'm doing wrong, it could be my set up? not quite sure, any help would be appreciated
code I'm using for SPS(if it helps)
Simba Code:procedure runToMeme();
var
pathToMeme: TPointArray;
begin
if not isLoggedIn() then
exit;
pathToMeme := [Point(60, 85), Point(83, 104), Point(82, 127), Point(72, 146), Point(50, 136)];
if SPS.walkPath(pathToMeme) then
minimap.waitPlayerMoving()
else
writeLn('Unable to walk to the meme');
end;

