Results 1 to 3 of 3

Thread: Radial Walk going slow.

  1. #1
    Join Date
    Mar 2008
    Posts
    22
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Radial Walk going slow.

    For starters, I DID search posts and read every tutorial. However, could not find a solution for the problem. The radial walk does work, just with ridiculously slow mouse movement. I set MMouseSpeed manually, and UseBenMouse, but no dice.

    SCAR Code:
    program New;
    {.include SRL/SRL.scar}
    {.include SRL/SRL/misc/FaladorColorFinder.scar}
    {Start at leftmost bank slot at east fally bank}
    const
      MMouseSpeed = 7;
      UseBenMouse = true;

    begin
    wait(2000);
    SetAngle(true);
    MakeCompass('N');
    FindFaladorRoadColor;
    writeln('Found ' +inttostr(roadcolor));
    RadialWalk(RoadColor, 150, 160, 70, -1,-1);
    Flag;
    end.

    From what I have read this SHOULD work. So, I made this post assuming there is some ubernoob mistake I made with a value somewhere, or that I forgot something, etc. If so, I call shenanigans.

  2. #2
    Join Date
    Jan 2008
    Location
    California, US
    Posts
    2,765
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    put setupsrl in your main loop like

    SCAR Code:
    program New;
    {.include SRL/SRL.scar}
    {.include SRL/SRL/misc/FaladorColorFinder.scar}
    {Start at leftmost bank slot at east fally bank}
    const
      MMouseSpeed = 7;
      UseBenMouse = true;
     
    begin
    setupsrl;
    wait(2000);
    SetAngle(true);
    MakeCompass('N');
    FindFaladorRoadColor;
    writeln('Found ' +inttostr(roadcolor));
    RadialWalk(RoadColor, 150, 160, 70, -1,-1);
    Flag;
    end.

  3. #3
    Join Date
    Mar 2008
    Posts
    22
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Yuuuuuuuuuuuuuuuuuppppp.........Shenanigans. I have proved my nubness. Thanks for the help man, its the little things that slip through I guess.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Radial Walk.
    By skilld u in forum OSR Help
    Replies: 2
    Last Post: 12-27-2007, 10:57 PM
  2. can some one help me with radial walk
    By burnout in forum OSR Help
    Replies: 1
    Last Post: 04-03-2007, 03:19 PM
  3. radial walk help
    By del_signo in forum OSR Help
    Replies: 2
    Last Post: 02-27-2007, 12:31 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •