CynicRus
06-18-2012, 12:25 PM
Hi. So, i have a problem with a script.
I initialize sps:
procedure SetupSps;
begin
SPS_Setup(RUNESCAPE_SURFACE, ['6_8']);
end;
after - generate waypoint path with Wolygon's Path Creator,
and use this path:
procedure GoToBank;
var
GoBank: TPointArray;
begin
ClickNorth(SRL_ANGLE_None);
Writeln('Walking to Bank...');
GoBank := [Point(2508, 3412), Point(2482, 3417), Point(2472, 3444), Point(2451, 3475), Point(2430, 3489), Point(2412, 3496), Point(2410, 3526), Point(2454, 3526)];
if SPS_WalkPath(GoBank) then
Writeln('At the Bank..');
while(IsMoving) do
Wait(Random(5000));
end;
This code is compile without any error, but after run it I infinitely see
formWriteln: Walking At Bank and doesn't nothing. How i can fix to this problem?
I initialize sps:
procedure SetupSps;
begin
SPS_Setup(RUNESCAPE_SURFACE, ['6_8']);
end;
after - generate waypoint path with Wolygon's Path Creator,
and use this path:
procedure GoToBank;
var
GoBank: TPointArray;
begin
ClickNorth(SRL_ANGLE_None);
Writeln('Walking to Bank...');
GoBank := [Point(2508, 3412), Point(2482, 3417), Point(2472, 3444), Point(2451, 3475), Point(2430, 3489), Point(2412, 3496), Point(2410, 3526), Point(2454, 3526)];
if SPS_WalkPath(GoBank) then
Writeln('At the Bank..');
while(IsMoving) do
Wait(Random(5000));
end;
This code is compile without any error, but after run it I infinitely see
formWriteln: Walking At Bank and doesn't nothing. How i can fix to this problem?