Results 1 to 6 of 6

Thread: Almost DONE!!!

  1. #1
    Join Date
    Mar 2008
    Location
    ::1
    Posts
    915
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default Almost DONE!!!

    Ok, I'm conceiving a new script to apply for SRL Members in a few months. I am really close to completion except for one procedure. This procedure walks from somewhere with the Willow Trees in view to the willow trees. I have a thing that uses FindSymbol; Yet, no matter what I try, (DDTMs, RadialWalk, DTMS, BMPs) I can't develop a good failsafe. Here is the procedure. Any ideas? I attached a screenie with a circle of where I want to walk to.
    SCAR Code:
    procedure WalkToWillowSpot;
    var
      foundTheSymbol: boolean;
    begin
      foundTheSymbol:= FindSymbol(x,y,'fishing spot');
      if(foundTheSymbol)then
      begin
        Writeln('Found the trees with symbol!');
        Mouse(x,y,2,2,true);
      end else begin
        Writeln('Didn''t find the willows again!');
        SwitchDaPlayer(false);
      end;
    end;

    Records and Types Save Code (and make you look better)
    Quote Originally Posted by Wizzup? View Post
    Is it possible to make Runescape a 2D game with this?... That would greatly simplify... Just about anything.

  2. #2
    Join Date
    Mar 2008
    Posts
    1,492
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Use WaterWalk or whatever it is lol... and if you want to make a DDTM make the main point somewhere in the trees, one point at the corner of the bank, another on the rock, and another in the water...

  3. #3
    Join Date
    Mar 2008
    Location
    ::1
    Posts
    915
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by sirlaughsalot View Post
    Use WaterWalk or whatever it is lol... and if you want to make a DDTM make the main point somewhere in the trees, one point at the corner of the bank, another on the rock, and another in the water...
    TYSM... I think I'll use WaterWalk.

    Last thing... I read somewhere that all DDTM points had to be the same color. Is that not true?

    Records and Types Save Code (and make you look better)
    Quote Originally Posted by Wizzup? View Post
    Is it possible to make Runescape a 2D game with this?... That would greatly simplify... Just about anything.

  4. #4
    Join Date
    Mar 2008
    Posts
    1,492
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by tniffoc View Post
    TYSM... I think I'll use WaterWalk.

    Last thing... I read somewhere that all DDTM points had to be the same color. Is that not true?
    Not to my knowledge, if i mide the DDTM you can autocolor the rock color and water color with SRL, just have 20 or so tolerance with the center point and 10 or so with the bank wall

  5. #5
    Join Date
    Mar 2008
    Location
    ::1
    Posts
    915
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by sirlaughsalot View Post
    Not to my knowledge, if i mide the DDTM you can autocolor the rock color and water color with SRL, just have 20 or so tolerance with the center point and 10 or so with the bank wall
    Thanks and Rep+. You will be credited in script for help!

    EDIT: [OFFTOPIC]WOOT! 100 posts[/OFFTOPIC]

    EDIT2: Can't give you rep again quite yet....

    Records and Types Save Code (and make you look better)
    Quote Originally Posted by Wizzup? View Post
    Is it possible to make Runescape a 2D game with this?... That would greatly simplify... Just about anything.

  6. #6
    Join Date
    Sep 2008
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    You dont need the variable.
    SCAR Code:
    if(foundTheSymbol)then
    if(findsymbol(x, y, whateve it is))

Thread Information

Users Browsing this Thread

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

Posting Permissions

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