Page 4 of 4 FirstFirst ... 234
Results 76 to 95 of 95

Thread: Nebula Range Guilder [30k xp/hr]

  1. #76
    Join Date
    Mar 2012
    Posts
    83
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I will try this later instead of wasting my money chinning. Can money be made off of this? :O If so, how much/h?

  2. #77
    Join Date
    Mar 2012
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Yes this is a profitable activity, buy rune arrows with tickets. However it seems it is having trouble finding the judge.

  3. #78
    Join Date
    Dec 2011
    Posts
    69
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    i'MA TRY THIS.


    Wooops cap lock :3.

  4. #79
    Join Date
    Apr 2012
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Shit bot rofl.

  5. #80
    Join Date
    Nov 2011
    Posts
    37
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ^^ you contribute something then ^^

  6. #81
    Join Date
    Apr 2012
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    aww stilll cant find judge ;'(

  7. #82
    Join Date
    Apr 2012
    Posts
    18
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Currently having trouble with finding judge, colour bot though so understandable

  8. #83
    Join Date
    Nov 2007
    Posts
    127
    Mentioned
    0 Post(s)
    Quoted
    14 Post(s)

    Default

    It just misclicks.

  9. #84
    Join Date
    Apr 2012
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default when it rotates screen to find judge, almost always exits course

    This script does a good job of locating the judge, in my opinion. But when it rotates back to click on the target, it normally chooses one of the targets to the far right. This then makes the character run out of the training area. I did notice that the script clicks on a point on the minimap, but its a point at the far end of the training area (behind the fence where the targets are). This is the only thing that interrupts my training, and any insight into the issue would be appreciated.

    EDIT: after downgrading SPS it doesn't have any more problems. Definitely my favorite range trainer.
    Last edited by smoshism; 05-08-2012 at 03:54 PM.

  10. #85
    Join Date
    Apr 2012
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Is pin able to be used? I have a pin and it obviously can't enter it in

  11. #86
    Join Date
    Apr 2012
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by phanthony View Post
    Is pin able to be used? I have a pin and it obviously can't enter it in
    Why would you need to use pin?

  12. #87
    Join Date
    May 2012
    Posts
    18
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    This doesn't seem to be working at all, when I start the script it either runs behind the targets or enter the competition and then runs behind the targets. It needs to shoot at the closer targets otherwise it will just get out of the minigame location, but since it seems to find the targets by color, the targeting system probably needs complete rewriting.

  13. #88
    Join Date
    May 2012
    Posts
    18
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Actually scratch what I said earlier, I tried a quick fix and it seems to work well. Just search for the targets in the left side of the screen. I don't know about the long term behaviour of this, but I am testing it right now.

    Edit: This is so I don't make a triplet post now. I tried seraching in the first 10th of the screen, then 9th and so on for more precision, and it seemed to work, but then it gave an out of bounds
    for i := 0 to High(MyTPA) do
    begin
    **here** if (Length(aPoints[i]) > 6) then

    I don't what all the variables in the script represent and I don't have the time to study them, but I'm just saying that searching through part of the screen seems to work and you might want to implement it.

    Here's the code:
    Code:
    function FindTarget: Boolean;
    var
      i, SearchTolerance : Integer;
      MyTPA : TPointArray;
      aPoints: T2DPointArray;
    begin
      SearchTolerance := 10;
      result := false;
      x := MSCX;
      y := MSCY;
      while (Length(MyTPA) = 0) and (SearchTolerance > 0)  do
      begin
        FindColorsSpiralTolerance(x, y, MyTPA, 5303805, MSX1, MSY1, MSX2 div SearchTolerance, MSY2, 5);
        if Length(MyTPA) = 0 then
          FindColorsSpiralTolerance(x, y, MyTPA, 5303805, MSX1, MSY1, MSX2 div SearchTolerance, MSY2, 8);
        SearchTolerance := SearchTolerance - 1;
      end;
      aPoints := TPAtoATPAEx(MyTPA, 3, 3);
      SortATPAFromFirstpoint(aPoints, Point(MSCX, MSCY));
      for i := 0 to High(MyTPA) do
      begin
        if (Length(aPoints[i]) > 6) then
        begin
          MiddleTPAEx(aPoints[i], x, y);
          MMouse(x, y, 7, 7);
          Wait(RandomRange(150,200));
          if IsUpTextMultiCustom(['ire-', 'Target', 'arget', 'at Tar'] ) then
            Break;
        end;
      end;
      result := true;
    end;
    Last edited by elpreda; 05-11-2012 at 01:47 PM.

  14. #89
    Join Date
    May 2012
    Posts
    15
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    function FindTextTPAMulti(Color, tol, xs, ys, xe, ye: integer;
    Texts: TStringArray; Chars: string; Action: fnct_ActionOptions): Boolean;

    var
    I: Integer;
    begin
    for i := 0 to High(Texts) do
    if FindTextTPA(Color, Tol, xs, ys, xe, ye, Texts[i], Chars, Action) then
    begin
    (line 686)-> $Result := True;
    Exit;
    end;
    end;
    ^^^^^
    [Error] C:\Simba\Includes\SRL/SRL/core/text.simba(687:7): Identifier expected at line 686
    Compiling failed.

  15. #90
    Join Date
    Mar 2012
    Posts
    74
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    "If you wanted this to be more xp overly for slow or fast im sure you could take the time down just enough for it not to misclick but be fast enough to start the next round of the contest"

    Just saying

  16. #91
    Join Date
    Mar 2012
    Posts
    86
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    yeah my problem is it goes to the far right target and then runs behind fence where you can't shoot

  17. #92
    Join Date
    Nov 2011
    Posts
    37
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    so far out of all the ranging scripts this works best for me! still early stages and even though i dont think this has been updated for ages it runs good. thankyou

  18. #93
    Join Date
    Jun 2012
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default This bot is retarded.

    I started next to the Judge, it clicked right on him and kept clicking away saying "Cannot find judge". Once it finally found the judge and the archer game starts it goes behind the targets and tries to shoot them from behind and don't stop. I give this bot a -1 out of 5.

  19. #94
    Join Date
    Dec 2011
    Location
    New York, USA
    Posts
    1,242
    Mentioned
    12 Post(s)
    Quoted
    193 Post(s)

    Default

    I haven't updated this script in a long while. One of these days I will get around to it, now that I'm active again.

  20. #95
    Join Date
    Jun 2012
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Good man.

Page 4 of 4 FirstFirst ... 234

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
  •