Results 1 to 6 of 6

Thread: Help me : fast fighter

  1. #1
    Join Date
    Nov 2011
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Help me : fast fighter

    Well I made the set up the bot so it kills cows with these colors 6580596,9413306,4151136 and in the thing it says this:

    Warning! You passed a wrong ys to a finder function: -19. That is below 0, thus out of bounds. Setting the value to 0 for now.
    Warning! You passed a wrong ys to a finder function: -14. That is below 0, thus out of bounds. Setting the value to 0 for now.
    Warning! You passed a wrong ys to a finder function: -24. That is below 0, thus out of bounds. Setting the value to 0 for now.
    Warning! You passed a wrong ys to a finder function: -13. That is below 0, thus out of bounds. Setting the value to 0 for now.

    And it doesn't click on the cows but instead right clicks and doesn't attack them

    Why does it do that and how do i fix it?
    No trolls please im new

  2. #2
    Join Date
    Oct 2006
    Location
    West Coast
    Posts
    67
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Did you drag the crosshair over the runescape window?

    There should not be any negative coordinates. You're getting negatives for some reason.

  3. #3
    Join Date
    Jan 2010
    Posts
    5,227
    Mentioned
    6 Post(s)
    Quoted
    60 Post(s)

    Default

    Show us the script, please.

  4. #4
    Join Date
    Jan 2007
    Posts
    8,876
    Mentioned
    123 Post(s)
    Quoted
    327 Post(s)

    Default

    If you're using a script that you found and downloaded on this website, then please post in that thread instead.

  5. #5
    Join Date
    Sep 2007
    Location
    Michigan
    Posts
    3,862
    Mentioned
    2 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by Zyt3x View Post
    If you're using a script that you found and downloaded on this website, then please post in that thread instead.
    ^ this

    Also I've looked and looked this is from a function in SRL that I (or someone) needs to fix. Pretty sure its IsFightAt(x,y) that does it. Plus that error will not do anything, its more of a hint then an error.
    (Scripts outdated until I update for new SRL changes)
    AK Smelter & Crafter [SRL-Stats] - Fast Fighter [TUT] [SRL-Stats]
    If you PM me with a stupid question or one listed in FAQ I will NOT respond. -Narcle
    Summer = me busy, won't be around much.

  6. #6
    Join Date
    Jan 2010
    Posts
    5,227
    Mentioned
    6 Post(s)
    Quoted
    60 Post(s)

    Default

    Quote Originally Posted by Narcle View Post
    ^ this

    Also I've looked and looked this is from a function in SRL that I (or someone) needs to fix. Pretty sure its IsFightAt(x,y) that does it. Plus that error will not do anything, its more of a hint then an error.
    Simba Code:
    function IsFightAt(var X, Y: Integer): Boolean;
    var
      HPBarCorner, w, h: Integer;
    begin
      HPBarCorner := DTMFromString('78DA6364646060606540051A108A11CA6504315888' +
           '50C34C841A26026A988854C348400D33116A588850C34A841A36C26A0046A001D4');
      GetClientDimensions(w, h);
      if ((x - 30) < 0) then x := 0;
      if ((y - 30) < 0) then y := 0;
      if ((x + 30) > w) then x := w;
      if ((y + 30) > h) then y := h;
      Result := FindDTM(HPBarCorner, X, Y, X - 30, Y - 30, X + 30, Y + 30);
      FreeDTM(HPBarCorner);
    end;

    Would fix it, I think. Not that it really matters, but meh.

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
  •