Results 1 to 10 of 10

Thread: TPA walking

  1. #1
    Join Date
    Mar 2012
    Location
    Color :D
    Posts
    938
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default TPA walking

    I found that sps is not always accurate. I started using radialwalk, which is pretty much accurate for me. It's been about one month since I started learning, so I guess its time to move on.

    Simba Code:
    //I heard TPA is a better walking method, but I didn't find any tutorials of tpa walking nor finding any scripts that use it. So my guess is that TPA walking is also using radialwalking, but using CTS2 to find the colors? I'd be glad if someone would guide me on this, or link me to a script that uses it so I can learn from the script.
    EDIT: New question. Is there any method to use color found using CTS2 with hue and sat mod and use it in radialwalk?

    Thank you.
    Last edited by CephaXz; 05-13-2012 at 06:29 AM.

  2. #2
    Join Date
    Dec 2011
    Location
    Sydney
    Posts
    1,284
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default


  3. #3
    Join Date
    Mar 2012
    Location
    Color :D
    Posts
    938
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by DeiJaiVui View Post
    Congrats on finding one. And stop posting that image everywhere.

  4. #4
    Join Date
    Dec 2010
    Posts
    89
    Mentioned
    4 Post(s)
    Quoted
    8 Post(s)

    Default

    Quote Originally Posted by CephaXz View Post
    I heard TPA is a better walking method... I'd be glad if someone would guide me on this, or link me to a script that uses it so I can learn from the script.

    Thank you.
    Hey CephaXz, I'm not exactly sure if this is what you are getting at, but I thought I would share this straight from the include.

    Quote Originally Posted by SRL Include
    TPAWalk
    ~~~~~~~

    .. code-block:: pascal

    function TPAWalk(color, tol, offsetX, offsetY: integer; sortFrom: TPoint): boolean;

    Uses a simple TPA sorting method to walk to a spot on the minimap.
    * color: the color to be found on the minimap
    * tol: the tolerance on color
    * offsetX: the offset to click on the X coordinate of the found color
    * offsetY: the offset to click on the Y coordinate of the found color
    * sortFrom: the point on the minimap to sort found colors from
    An example code that they show in the include looks like this...
    Simba Code:
    if (not TPAWalk(1234567, 10, 0, 0, point(MMX1, MMY1)) then
        if (not radialWalkTolerance({parameters here}) then
          writeln('failed to TPA and radial walk');

    Maybe try looking at THIS THREAD for further ideas on how it's used.
    I really don't know any more theory besides what I just shared with you. Sorry. I hope it helps though.

  5. #5
    Join Date
    Mar 2012
    Location
    Color :D
    Posts
    938
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks! Didn't know there's already a function like that. I'll try reading through it.

  6. #6
    Join Date
    Jan 2012
    Location
    Calgary, AB, Canada
    Posts
    1,819
    Mentioned
    5 Post(s)
    Quoted
    120 Post(s)

    Default

    Quote Originally Posted by DeiJaiVui View Post
    If you have something helpful to post then post, don't spam other peoples threads.
    Current Project: Retired

  7. #7
    Join Date
    Mar 2012
    Location
    Color :D
    Posts
    938
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I tried looking at the function, it doesn't use radius and things that radialwalk uses. I think I'll change my question here.

    Is there any method to use color found using CTS2 with hue and sat mod and use it in radialwalk?

  8. #8
    Join Date
    Apr 2007
    Location
    Los Angeles
    Posts
    622
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    add me on skype yeshayem2

  9. #9
    Join Date
    Mar 2012
    Location
    Color :D
    Posts
    938
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks to punkd! Problem was solved, still using sps!

  10. #10
    Join Date
    Apr 2007
    Location
    Los Angeles
    Posts
    622
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    No problem! Enjoy!
    Resolved.

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
  •