Ehh I'm not sure what's going on but I try to use RadialRoadWalk in falador to move but mouse pointer doesnt move at all and clicks nothing I even eye dropped the road right next to where I was standing nothing happens how to fix?

Code:
program PracS;
{$DEFINE SMART8}
{$I SRL/SRL.simba}
{$I P07Include.simba}

Procedure P07_DeclarePlayers;
begin
  P07_PlayerName := '';
  P07_PlayerPass := '';
end;

Procedure PracticeWalk;
var
i: Integer;
begin
  for i:= 0 to 10 do
  begin
  RadialRoadWalk(7308172, 0, 360, 50, 1, 0);
  end;
P07_MakeCompassNorth;
end;


begin
  P07_DeclarePlayers;
  SetUpSRL;
  SetupP07Include;
  ClearDebug;
  P07_LogInPlayer;
  PracticeWalk;
end.