Results 1 to 3 of 3

Thread: RadialRoadWalk Help!!!!! plz?

  1. #1
    Join Date
    Apr 2007
    Location
    Michigan -.-
    Posts
    1,357
    Mentioned
    2 Post(s)
    Quoted
    4 Post(s)

    Default RadialRoadWalk Help!!!!! plz?

    im trying to make a few death walkback procedures and to do so ive been using radialwalk and radialroadwalk........

    i have read at least 3 tuts on radialwalk and roadwalk and i think that i have a pretty good understanding on how they are set up and how they work. BUT i still cant quite get them to do what i tell them to do. So i have a few questions about my walkback procedure:
    1. Do I need to put Flag; after each RadialRoadWalk?
    2. Why does it only click once and say that the script is finished?
    3. Are these problems my fault?

    lol dont flame too much i have never tried this before...

    heres my script:

    SCAR Code:
    program Walk;
    {.include SRL\SRL.scar}
    var waterbmp: Integer;


    procedure LoadBmps;
    begin
    waterbmp := BitmapFromString(28, 13, 'z78DA3377B67073B2301F' +
           '2547C95172941C2547C9517294A43B0900A61F0E37');
    end;

    procedure declarevars;
    begin
    watercolor:= AutoColorThis(waterbmp,20,MMX1,MMY1,MMX2,MMY2);
    end;

    procedure WalkBackWillows;
    begin
      RadialRoadWalk(FindRoadColor,319,328,60,0,0);
      Flag;
      RadialRoadWalk(FindRoadColor,352,361,60,0,0);
      Flag;
      RadialRoadWalk(FindRoadColor,349,356,60,0,0);
      Flag;
      RadialRoadWalk(FindRoadColor,631,637,60,0,0);
      Flag;
      RadialWalk(2332012,278,256,60,0,0);
      Flag;
      RadialWalk(watercolor,244,215,60,0,0);
      Flag;
    end;
     
     
    begin
    ActivateClient;
    SetupSRL;
    declarevars;
    WalkBackWillows;
    end.
    METAL HEAD FOR LIFE!!!

  2. #2
    Join Date
    Apr 2007
    Location
    Texas
    Posts
    1,668
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by gerauchert View Post
    im trying to make a few death walkback procedures and to do so ive been using radialwalk and radialroadwalk........
    Cool, deathwalking is not easy trust me.
    Quote Originally Posted by gerauchert View Post
    1. Do I need to put Flag; after each RadialRoadWalk?
    I think it might already be built it, but hey, it cant hurt!
    Quote Originally Posted by gerauchert View Post
    2. Why does it only click once and say that the script is finished?
    Hmm, i looked at you code... you use FindRoadColor... which should work, but because of how the intenral color array is set up.. try just using "RoadColor"

    other than that.. try putting in some debug messages to see whats going on.

    make it be like
    SCAR Code:
    if(NOT(RadialRoadWalk(FindRoadColor,319,328,60,0,0)))
    then writeln('didnt find the radial road walk, i must have mesed up!');
    [IMG]http://farm3.static.flickr.com/2120/2052732965_348f3629d0_o.jpg[/IMG]

  3. #3
    Join Date
    Apr 2007
    Location
    Michigan -.-
    Posts
    1,357
    Mentioned
    2 Post(s)
    Quoted
    4 Post(s)

    Default

    ok thanks

    if any1 else has any words of wisdom out there id appreciate it as well

    ill test it out and c if i can get it to work lol
    METAL HEAD FOR LIFE!!!

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. RadialRoadWalk?!
    By Eicca in forum Research & Development Lounge
    Replies: 9
    Last Post: 11-08-2007, 10:34 PM
  2. RadialRoadWalk
    By stuckman in forum OSR Help
    Replies: 11
    Last Post: 07-06-2007, 01:58 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
  •