Results 1 to 7 of 7

Thread: How To Tell Simba To Click On A MiniMap Co-Ordinate Without SPS Map?

  1. #1
    Join Date
    Jun 2015
    Location
    New Zealand
    Posts
    322
    Mentioned
    2 Post(s)
    Quoted
    131 Post(s)

    Default How To Tell Simba To Click On A MiniMap Co-Ordinate Without SPS Map?

    Hi Guys,

    New to coding as you know ha. Just wondering how I can tell Simba to click on a minimap co-ordinate without SPS map?

    Current SPS map isn't big enough due to location being on a small island and so I got the following error:

    -- WARNING: sps.getPlayerPos(): Didn't find enough matches accurately calc your postion
    -- sps.getPlayerPos(): result = {X = -1, Y = -1}, took 0 ms
    -- sps.walkPath(): result = False

    Therefore I think my only solution is to select a co-ordinate on the mini map itself, since the spawning onto the island is always on the same place.

    Cheers for all help.

  2. #2
    Join Date
    Jun 2014
    Location
    Oklahoma
    Posts
    336
    Mentioned
    22 Post(s)
    Quoted
    231 Post(s)

    Default

    IF you don't have an SPS map the only "coordinate" you can click on is a fixed pixel on the screen. Which is a bad idea.

    If you want to walk without SPS, look for a color on the minimap or and icon that is in the direction you want to go, find it somehow then click on it. If its a fixed spot and you're not bothering with camera angles and thing like that, just find a fixed tbox that does the job.

  3. #3
    Join Date
    Jun 2015
    Location
    New Zealand
    Posts
    322
    Mentioned
    2 Post(s)
    Quoted
    131 Post(s)

    Default

    Quote Originally Posted by Camel View Post
    IF you don't have an SPS map the only "coordinate" you can click on is a fixed pixel on the screen. Which is a bad idea.

    If you want to walk without SPS, look for a color on the minimap or and icon that is in the direction you want to go, find it somehow then click on it. If its a fixed spot and you're not bothering with camera angles and thing like that, just find a fixed tbox that does the job.
    Thanks mate - I found a distinguishable colour. Will try and use that. Any chance you could link me to fixed tbox instructions just in case?

    Cheers

  4. #4
    Join Date
    Dec 2014
    Posts
    383
    Mentioned
    2 Post(s)
    Quoted
    206 Post(s)

    Default

    Quote Originally Posted by kiwikiwi View Post
    Thanks mate - I found a distinguishable colour. Will try and use that. Any chance you could link me to fixed tbox instructions just in case?

    Cheers
    Simba Code:
    procedure clickTBox();
    var
    box: TBox;
    begin
    box:= intToBox(x1,y1,x2,y2); /// TBox coordinates

    if (not isLoggedIn()) then
    exit;

    mousebox(box,mouse_left); /// clicks in a random point within
                              ///defined TBox, defualt is mouse_left
    wait(gaussrangeint(300,400));
    minimap.waitFlag() / minimap.waitPlayerMoving(); /// personally I always use
                                                     /// waitPlayerMoving(). better accuracy                                                  /// waitPlayerMoving(). better accuracy
    end;

  5. #5
    Join Date
    May 2008
    Location
    ;)
    Posts
    576
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    You should check out radial walking, if that's still a popular thing to do. DDTM walking was also somewhat popular for a time. Can't really say if it still is, though.

    IIRC yakman or yohojo had a good tutorial on radialwalking, though iirc the utility he made was SCAR only. Regardless, it's not horribly difficult without any tools, and it has been my go-to color walking method ever since I learned it. Very reliable for many situations.

  6. #6
    Join Date
    Sep 2015
    Posts
    65
    Mentioned
    7 Post(s)
    Quoted
    20 Post(s)

    Default

    Quote Originally Posted by nickrules View Post
    You should check out radial walking, if that's still a popular thing to do. DDTM walking was also somewhat popular for a time. Can't really say if it still is, though.

    IIRC yakman or yohojo had a good tutorial on radialwalking, though iirc the utility he made was SCAR only. Regardless, it's not horribly difficult without any tools, and it has been my go-to color walking method ever since I learned it. Very reliable for many situations.
    Threads for radial Walking:

    The Basics: https://villavu.com/forum/showthread.php?t=19162
    Radial Walk Aid: https://villavu.com/forum/showthread.php?t=70341

  7. #7
    Join Date
    Jun 2015
    Location
    New Zealand
    Posts
    322
    Mentioned
    2 Post(s)
    Quoted
    131 Post(s)

    Default

    Cheers guys, greatly appreciated. Added rep. Will post results.

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
  •