Alrighty Mat, I tried your solution, this is what came up -
[Error] C:\Simba\Includes\sps/sps.simba(99:5): Unknown identifier 'FROSTS' at line 98
Simba Code:
FROSTS:
with SPS_Surface do
begin
Name := 'Frosts';
ImagePath := SPS_IMG_PATH + 'Frosts\';
FactorX := 400;
FactorY := 400;
TileOffsetX := -1;
TileOffSetY := -1;
Tolerance := 0.8;
end;
Simba Code:
procedure WalkInsideFrosts;
var
myPath:TPointArray;
begin
myPath := [Point(242, 356), Point(247, 351), Point(256, 350), Point(265, 356),
Point(271, 363), Point(278, 365), Point(285, 365), Point(294, 365),
Point(301, 370)];
SPS_Setup(Frosts,['0_0']);
SPS_WalkPath(myPath);
end;