Page 22 of 117 FirstFirst ... 1220212223243272 ... LastLast
Results 526 to 550 of 2916

Thread: [AeroLib] HoodzFighter

  1. #526
    Join Date
    Sep 2012
    Location
    Netherlands
    Posts
    2,752
    Mentioned
    193 Post(s)
    Quoted
    1468 Post(s)

    Default

    Quote Originally Posted by phat808 View Post
    I have food in my invo, it eats like 6 then it says out of food, logging out, and it doesn't try to log out, it just keeps attacking new targets and eventually dies.
    Learn to read
    Quote Originally Posted by omfgjosh View Post
    well it doesnt work right if you read the prior posts so i was throwing out a suggestion..instead to see if its fighting i made it check if its not fighting which i tested and works better. and its not the exact seem, read it over again buddy
    Its working just dont change the camera angle

  2. #527
    Join Date
    Apr 2013
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    okay but what I am saying is that I still have food, it isn't recognizing it. It only eats a few then stops recognizing

  3. #528
    Join Date
    Apr 2013
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    [QUOTE=hoodz;1225168]If you remove the findallrandoms line the script will not response to the evil chicken ofcourse. Also i put srl_combatrandoms on false because it will mess up the script. And the evil chicken is really easy to kill. And if you are out of food it will teletab and log off. So you are completely safe.

    It's not even safe. I just fucking died with 15+ sharks in my inv! Nice Script!!

  4. #529
    Join Date
    Sep 2012
    Location
    Netherlands
    Posts
    2,752
    Mentioned
    193 Post(s)
    Quoted
    1468 Post(s)

    Default

    Quote Originally Posted by phat808 View Post
    okay but what I am saying is that I still have food, it isn't recognizing it. It only eats a few then stops recognizing
    Try other colors.


    Quote Originally Posted by shwobo View Post
    Quote Originally Posted by hoodz View Post
    If you remove the findallrandoms line the script will not response to the evil chicken ofcourse. Also i put srl_combatrandoms on false because it will mess up the script. And the evil chicken is really easy to kill. And if you are out of food it will teletab and log off. So you are completely safe.

    It's not even safe. I just fucking died with 15+ sharks in my inv! Nice Script!!
    Thats impossible. Its probaly your own fault. Like you set HpToEat to low. My friends and i used this script now for more than 300 hours and no one ever died. Try to complain more on a free script
    Last edited by Hoodz; 04-24-2013 at 07:09 AM.

  5. #530
    Join Date
    Mar 2013
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    eats all my lobsters and sharks repeatedly! Anyway to stop this madness?!?!!?

  6. #531
    Join Date
    Mar 2013
    Location
    Narnia
    Posts
    182
    Mentioned
    1 Post(s)
    Quoted
    62 Post(s)

    Default

    Quote Originally Posted by omfgjosh View Post
    instead to see if its fighting i made it check if its not fighting which i tested and works better. and its not the exact seem, read it over again buddy
    k, I'll nazi your code a bit then, buddy.

    Simba Code:
    if not(FindColor(X, Y, 255, 223, 127, 295, 175)) AND NOT (FindColor(X, Y, 65280, 223, 127, 295, 175)) AND NOT (SRL_infight) THEN
    begin
    if FindObjEx(X, Y, ['tta', Monstername], [monstercolor1, monstercolor2, monstercolor3, monstercolor4], 10, 50, MSX1, MSY1, MSX2, MSY2) THEN
    case random(3) of
    0..1 : begin
    MouseBox(X+5, Y+5, X+5, Y+5, mouse_left);
    status := ' attacking'
    wait(5000+ random(250))
    end;
    2 : begin
    MouseBox(X+5, Y+5, X+5, Y+5, mouse_right);
    wait(200+random(100));
    ChooseOptionMulti(['tta']);
    status := ' attacking'
    wait(5000+ random(250))
    end;


    first, I'll change your code to be more similar with Hoodz code, but with the same functionality.

    Simba Code:
    if not(FindColor(X, Y, 255, 223, 127, 295, 175)) AND NOT (FindColor(X, Y, 65280, 223, 127, 295, 175)) AND NOT (SRL_infight) THEN
      AttackMonster;

    SRL_InFight is the same as finding the colors of the HP bar. which is what you're already doing, so no sense in having it there. So it would look like this:

    Simba Code:
    if not(FindColor(X, Y, 255, 223, 127, 295, 175)) AND NOT (FindColor(X, Y, 65280, 223, 127, 295, 175)) THEN
      AttackMonster;

    alright, now we need it to eat. Which would look like this:

    Simba Code:
    if not(FindColor(X, Y, 255, 223, 127, 295, 175)) AND NOT (FindColor(X, Y, 65280, 223, 127, 295, 175)) THEN
      AttackMonster
    else
    begin
      status := '  in fight'
      eating_food;
    end;

    look familiar?



    Quote Originally Posted by omfgjosh View Post
    instead to see if its fighting i made it check if its not fighting
    They have the same outcome, in this case.


    the only improvement in the code you posted is maybe SRL_infight. it actually (in newer SRL-OSR) checks for the red splat as well as the hp bar. (if it finds either, it will return true)
    not sure why Hoodz didn't use it, but I'm sure he has a reason.
    Last edited by aaron126; 04-24-2013 at 03:22 PM.

  7. #532
    Join Date
    Mar 2013
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    So copy and replace with your code? Then it will work?

  8. #533
    Join Date
    Apr 2013
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by hoodz View Post
    Try other colors.



    Thats impossible. Its probaly your own fault. Like you set HpToEat to low. My friends and i used this script now for more than 300 hours and no one ever died. Try to complain more on a free script
    K den, next time I'll put HpToEat at 60 or else it glitches lol.

  9. #534
    Join Date
    Mar 2013
    Location
    Narnia
    Posts
    182
    Mentioned
    1 Post(s)
    Quoted
    62 Post(s)

    Default

    Quote Originally Posted by Stevenbest4 View Post
    So copy and replace with your code? Then it will work?
    no i was quoting someone else, the code is for a different issue.

  10. #535
    Join Date
    Apr 2013
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    For me, it doesn't do any randoms.. What should I put into nickname field?

  11. #536
    Join Date
    Sep 2012
    Location
    Netherlands
    Posts
    2,752
    Mentioned
    193 Post(s)
    Quoted
    1468 Post(s)

    Default

    Quote Originally Posted by aaron126 View Post

    the only improvement in the code you posted is maybe SRL_infight. it actually (in newer SRL-OSR) checks for the red splat as well as the hp bar. (if it finds either, it will return true)
    not sure why Hoodz didn't use it, but I'm sure he has a reason.
    I try srl_infight this weekend maybe. But when i made this script srl-osr (srl_infight) was not working so thats why i made it like this

  12. #537
    Join Date
    Sep 2012
    Location
    Netherlands
    Posts
    2,752
    Mentioned
    193 Post(s)
    Quoted
    1468 Post(s)

    Default

    Quote Originally Posted by elwisa View Post
    For me, it doesn't do any randoms.. What should I put into nickname field?
    Like if your rs name was elwisa you will put in 'lwis' try to use a part of your name with out spaces and without capitals and 4-5 length

  13. #538
    Join Date
    Apr 2013
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by hoodz View Post
    Like if your rs name was elwisa you will put in 'lwis' try to use a part of your name with out spaces and without capitals and 4-5 length
    Okay tyvm!

  14. #539
    Join Date
    Mar 2013
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by aaron126 View Post
    k, I'll nazi your code a bit then, buddy.


    They have the same outcome, in this case.


    the only improvement in the code you posted is maybe SRL_infight. it actually (in newer SRL-OSR) checks for the red splat as well as the hp bar. (if it finds either, it will return true)
    not sure why Hoodz didn't use it, but I'm sure he has a reason.
    then why if you just check if its not fighting instead of fighting it works in single for me? seems like its reading something different but you can just be a dick about it when im tryin to help the script out

  15. #540
    Join Date
    Mar 2013
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    is there anyway to get the script to run away for like 10 seconds and then come back? for example if a swarm attacks?

    This is what speedy's open granite uses:

    Function InCombat: Boolean;
    var
    Total, I: integer;
    Colors: TIntegerArray;
    begin
    Result := False;
    Colors := [65280, 255];
    Total := CountColorTolerance(Colors[0],HpBox.x1,HpBox.y1,HpBox.x2,HpBox.y2,2);
    Total := Total + CountColorTolerance(Colors[1],HpBox.x1,HpBox.y1,HpBox.x2,HpBox.y2,2);
    If InRange(Total, 125,175) then Result := True;
    end;

    if InCombat then
    begin
    EnableRun;
    MMouse(650,19,0,0);
    Wait(550);
    ClickMouse2(Mouse_Left);
    wait(RandomRange(30500,32500));
    MMouse(629,149,0,0);
    Wait(550);
    ClickMouse2(Mouse_Left);
    wait(RandomRange(18500,20500));
    if InCombat then FindRandoms;
    end;

  16. #541
    Join Date
    Apr 2013
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    sorry to keep bugging you about your script, I'm just kind of new and I don't get how hard it really is. I was wondering what to put as your nickname if your in game name was ESR6 (not my name, just something similar)

  17. #542
    Join Date
    Apr 2013
    Posts
    13
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Quote Originally Posted by phat808 View Post
    sorry to keep bugging you about your script, I'm just kind of new and I don't get how hard it really is. I was wondering what to put as your nickname if your in game name was ESR6 (not my name, just something similar)
    you can put anything i just use 1234.

  18. #543
    Join Date
    Apr 2013
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    Quote Originally Posted by abcxiskillix View Post
    you can put anything i just use 1234.
    but i actually want it to solve talking randoms

  19. #544
    Join Date
    Apr 2013
    Posts
    13
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Quote Originally Posted by phat808 View Post
    but i actually want it to solve talking randoms
    i dont think it does that anyways cause when i used my real name i almost died from a random

  20. #545
    Join Date
    Sep 2012
    Location
    Netherlands
    Posts
    2,752
    Mentioned
    193 Post(s)
    Quoted
    1468 Post(s)

    Default

    Quote Originally Posted by phat808 View Post
    but i actually want it to solve talking randoms
    Quote Originally Posted by abcxiskillix View Post
    i dont think it does that anyways cause when i used my real name i almost died from a random
    Ofcourse it works...
    And phat just try a part of your name.

  21. #546
    Join Date
    Dec 2011
    Posts
    85
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    Anyone recommend a spot for range?

  22. #547
    Join Date
    Dec 2011
    Posts
    85
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    Why does it start gobbling all my food after it detects the HP I've set it to?

    Hp is over 70, I set to eat at 40, and it keeps eating food even when my hp is full.
    Tried different hp's, same thing.

  23. #548
    Join Date
    Sep 2012
    Location
    Netherlands
    Posts
    2,752
    Mentioned
    193 Post(s)
    Quoted
    1468 Post(s)

    Default

    updated!

  24. #549
    Join Date
    Apr 2013
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    It starts attacking them correctly then gives me this error after it's done killing one

    The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap, SRL - Minimap Mask bitmap, 3]

    Help ?

  25. #550
    Join Date
    Sep 2012
    Location
    Netherlands
    Posts
    2,752
    Mentioned
    193 Post(s)
    Quoted
    1468 Post(s)

    Default

    Quote Originally Posted by jcscape View Post
    It starts attacking them correctly then gives me this error after it's done killing one

    The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap, SRL - Minimap Mask bitmap, 3]

    Help ?
    Have you set the nickname?

Page 22 of 117 FirstFirst ... 1220212223243272 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •