Hey so I'm trying to use DTMs to walk from the Falador west bank to the low wall agility shortcut. I know I'm doing something wrong since my script doesn't do anything, could someone please help me? The code below is just the part of my script that I need help with. Iv'e cut out everything else.
Simba Code:
program NebulaFireOrbs;
{$I SRL/SRL.scar}
var
x, y: integer;
aFound: extended;
Procedure WalkToDungeon;
var
Wall: integer;
begin
Wall := DTMFromString('mWAAAAHicY2FgYPBmYmAIAGJ/Jgi7DSjWAsSdQNwMxCoKMgyf33yCY3TAiIZBAABidgwv');
if (FindDTMRotated(Wall, x, y, MMX1, MMY1, MMX2, MMY2, -Pi, Pi, Pi/360, aFound)) then
begin
Mouse(x, y, 0, 0, true);
FreeDTM(Wall);
end;
end;
begin
SetupSRL;
ActivateClient;
WalkToDungeon;
end.