Results 1 to 11 of 11

Thread: Need help with radial walk

  1. #1
    Join Date
    May 2007
    Location
    UK
    Posts
    4,007
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Default Need help with radial walk

    hi i have got 1 part of my radial walk to work but the next bit won't

    SCAR Code:
    procedure ToRange;

    begin;

    RadialWalk( 2175815 , 340, 346, 14, 1, 1);
    end;

    i have put in loop ( i think that what it called lol )

    SCAR Code:
    begin
    SetupSRL;
    ClearDebug;
    ActivateClient;
    Wait(1000);
    ToHouse;
    Wait(3000)
    OpenDoor;
    Wait(1000)
    ToRange;
    end.

    cheers

    T ~ M

  2. #2
    Join Date
    May 2007
    Location
    UK
    Posts
    4,007
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Default

    please help guys

    i really want to make my first script

    T ~ M

  3. #3
    Join Date
    Oct 2006
    Posts
    1,190
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    have u tried using the radial walk aid?



  4. #4
    Join Date
    May 2007
    Location
    UK
    Posts
    4,007
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Default

    that is what i am using

    T ~ M

  5. #5
    Join Date
    Jun 2006
    Posts
    3,861
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    Try something like this:
    SCAR Code:
    procedure ToRange;
    var
      x, y: Integer;
    begin;
      if(RoadColor = 0)then FindRoadColor; //FindFallyRoadColor or FindVarrockRoadColor for those places
      if(not(FindColor(x, y, RoadColor, MMX1, MMY1, MMX2, MMY2)))then exit;
      RadialWalk( RoadColor , 340, 346, 14, 1, 1);
    end;

  6. #6
    Join Date
    May 2007
    Location
    UK
    Posts
    4,007
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Default

    Quote Originally Posted by bullzeye95 View Post
    Try something like this:
    SCAR Code:
    procedure ToRange;
    var
      x, y: Integer;
    begin;
      if(RoadColor = 0)then FindRoadColor; //FindFallyRoadColor or FindVarrockRoadColor for those places
      if(not(FindColor(x, y, RoadColor, MMX1, MMY1, MMX2, MMY2)))then exit;
      RadialWalk( RoadColor , 340, 346, 14, 1, 1);
    end;
    ok but i want it to go into the cooking place

    T ~ M

  7. #7
    Join Date
    Jun 2006
    Posts
    3,861
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    I see. I think it's the color that you put into it that is causing problems. It changes. You'll need to: 1. Autocolor it somehow, or 2. Try to make a DDTM.

  8. #8
    Join Date
    May 2007
    Location
    UK
    Posts
    4,007
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Default

    can you go on msn? mine is: imcoolandsmall@hotmail.com

    cheers

    T ~ M

  9. #9
    Join Date
    May 2007
    Location
    UK
    Posts
    4,007
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Default

    how do i do autocolor for it? or how do you make a ddtm? which is better?

    cheers

    T ~ M

    EDIT: oops sorry for double post

  10. #10
    Join Date
    Sep 2007
    Posts
    415
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    or you could take a small bitmap of where you want to go and "autocolorthis" i think that would work
    Quote Originally Posted by That guy that wrote forefeathers
    <munklez>haha im too lazy, girls annoy me
    <munklez> they always wanna like, do stuff
    <munklez> and i just wanna program
    <munklez> and they always take all my money

  11. #11
    Join Date
    Nov 2007
    Location
    Chile
    Posts
    1,901
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by The Man View Post
    how do i do autocolor for it? or how do you make a ddtm? which is better?

    cheers

    T ~ M

    EDIT: oops sorry for double post
    Autocolor:
    SCAR Code:
    Procedure Walking;
    var
      Road : Integer;
    begin
      Road := FindVarrockRoadColor;
      Writeln('autocoloring...');
      RadialWalk(Road,0,360,50,1,1);
    end;
    YoHoJo made a tut on ddmts check it out.


Thread Information

Users Browsing this Thread

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

Similar Threads

  1. radial walk help plz?
    By dark4mdawn in forum OSR Help
    Replies: 6
    Last Post: 09-03-2007, 07:48 AM
  2. radial walk
    By coolguy14136 in forum OSR Help
    Replies: 3
    Last Post: 03-13-2007, 07:42 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
  •