Results 1 to 4 of 4

Thread: Sps and map finding help?

  1. #1
    Join Date
    Nov 2011
    Location
    United States
    Posts
    815
    Mentioned
    6 Post(s)
    Quoted
    284 Post(s)

    Default Sps and map finding help?

    Cheers to everyone that helped with suggestions, should be good to go now thank you.
    Last edited by Itankbots; 08-26-2012 at 07:41 PM.

  2. #2
    Join Date
    Jan 2012
    Posts
    2,568
    Mentioned
    35 Post(s)
    Quoted
    356 Post(s)

    Default

    1. Dont use static wait.
    2. Create ur custom sps map for greater accuracy
    3. Try radial/tpa
    4. GetMiniMapDots then sort it and find the 1 nearest to u

  3. #3
    Join Date
    Nov 2011
    Location
    United States
    Posts
    815
    Mentioned
    6 Post(s)
    Quoted
    284 Post(s)

    Default

    Static wait is only to see if it works at all, i dont really care if the testing account gets banned. and yeah i guess the last thing to do is make a custom sps map...i was really hopeing objDtm would work

  4. #4
    Join Date
    Nov 2011
    Location
    United states
    Posts
    516
    Mentioned
    1 Post(s)
    Quoted
    1 Post(s)

    Default

    for clicking on the nearest npc use something like

    Simba Code:
    procedure FindMonster;
    var
      NPCTPA:TPointArray;
    begin
      NPCTPA := GetMinimapDotsIn('npc', MMX1, MMY1, MMX2, MMY2);
      if not(length(NPCTPA) = 0) then              
      begin
        SortTPAFrom(NPCTPA, Point(MMCX, MMCY));
        Mouse(NPCTPA[0].x, NPCTPA[0].y, 2, 2, true);
      end
      else
      begin
        writeln('No NPC dot found.');
      end;
    end;

    hope that helps you a bit

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
  •