Results 1 to 5 of 5

Thread: Reversing Paths.

  1. #1
    Join Date
    May 2008
    Posts
    1,345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Reversing Paths.

    Besides doing it manually, is there a way to do this?

    SCAR Code:
    Point(123, 321), Point(321, 123) --> Point(321, 123) , Point(123, 321)

    Let me know, thanks!

    ~Sandstorm

  2. #2
    Join Date
    Oct 2007
    Location
    http://ushort.us/oqmd65
    Posts
    2,605
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    SCAR Code:
    for i := High(path) downto 0 do
      Begin
        WalkToTile(Path[i], 1, 1);
        R_Flag;
        rands;
        wait(550+random(300));
      end;

    I think i mixed up the downto part, but i think you could figure it out
    I do visit every 2-6 months

  3. #3
    Join Date
    Mar 2007
    Posts
    1,700
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    SCAR Code:
    InvertTPA(TPA);
    InvertATPA(ATPA);

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

    Default

    @Zasz - I've done that like three times before, and I STILL forgot it. Lol :/. Thanks! That's what I was looking for :/.

    @LordSaturn - Also what I was looking for, thankee.

    ~Sandstorm

  5. #5
    Join Date
    May 2007
    Location
    Some where fun.
    Posts
    2,891
    Mentioned
    1 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by Sandstorm View Post
    Besides doing it manually, is there a way to do this?

    SCAR Code:
    Point(123, 321), Point(321, 123) --> Point(321, 123) , Point(123, 321)

    Let me know, thanks!

    ~Sandstorm
    Uhm im not sure what you mean but. Maybe

    SCAR Code:
    TPoint:= Point(123, 321);
    Tpoint1:= Point(321, 123);
    //Do what you need to do.
    Tpoint:= Point(321,123)
    TPoint1 := Point(123,321)

    edit i didnt no you wanted to walk.. i would of said the downto thing.
    edit : mis read the title.. thought the title said reversing points

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Randomizing Bank Paths
    By ron1337 in forum News and General
    Replies: 6
    Last Post: 11-02-2008, 12:41 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
  •