Page 37 of 117 FirstFirst ... 2735363738394787 ... LastLast
Results 901 to 925 of 2916

Thread: [AeroLib] HoodzFighter

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

    Default

    Quote Originally Posted by hoodz View Post
    Thanks but i want something else. Every color is another monster. Maybe i can do like copy the procedures: if monstercolor1 is not found then go to attackmonster2 procedure, if monstercolor2 is not found then it will go to monstercolor3 procedure, if monstercolor3 is not found them it will turn the camera (searching for monsters)
    so you're wanting it to be able to attack different monsters of different colors and different names?

  2. #902
    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
    so you're wanting it to be able to attack different monsters of different colors and different names?
    Different colors same name

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

    Default

    Quote Originally Posted by Infedility View Post
    Attachment 21339

    99 strength thanks to the script! thankyou so much iHooodz! love the script. Donated 3m to further progress the script. <3
    i highly recommend this script to anyone!
    This guy is a hero! Also its nice to talk to him ingame

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

    Default

    Quote Originally Posted by hoodz View Post
    Different colors same name
    Then I'm a bit confused. the code i posted does as you mentioned. and with one line of code you could add the camera rotation.

  5. #905
    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
    Then I'm a bit confused. the code i posted does as you mentioned. and with one line of code you could add the camera rotation.
    No your code checks for 1 main color and then checks if there is a secondary color next to it. What i want: search a color (doenst matter what color) and then check if the uptext match the monstername.

  6. #906
    Join Date
    May 2013
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    som1 have a good place to bot?
    im 1 def..
    ty =]

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

    Default

    Quote Originally Posted by hoodz View Post
    No your code checks for 1 main color and then checks if there is a secondary color next to it. What i want: search a color (doenst matter what color) and then check if the uptext match the monstername.
    it's an array. you can have it check for as many or as little colors as you want. :P

    Simba Code:
    MonsterColor1 := ([1,3,5,7,9,11,13,15,17,19,21]);
      MonsterColor2 := ([1,2,3,4,5,6,7,8,9,10]);

    would work aswell.
    I HIGHLY recommend using a secondary checking method after the first to avoid spam mouse movements.. but without the secondary color, it'd look this this:

    Simba Code:
    procedure FindMonster;
    var
      FoundMonster:Boolean;
      x, y, i, ColorTolerance:Integer;
      MonsterColor:TIntegerArray;
    begin
      // would need a combat check to make sure this doesn't run while in combat as well
      ColorTolerance := 5;
      MonsterColor := ([6136697,7965847,2453907,11250614]); // goblin as an example.

      repeat
        for i:=0 to high(MonsterColor) do
        begin
          if (FindObj(x,y,MonsterName,MonsterColor[i],ColorTolerance)) then
          begin
            // mmouse(x,y,5,5); // FindObj moves mouse on it's own i believe
            wait(RandomRange(30,70));
            ClickMouse2(mouse_right);
            if (WaitOptionEx('ttack','npc',ClickLeft,RandomRange(40,120))) then
            begin
              FoundMonster := True;
              exit;
            end;
          end;
        end;
        // RotateCamera Code here, cause this would mean it couldn't find a monster after looping through all colors
      until (FoundMonster);
    end;
    Last edited by aaron126; 05-21-2013 at 03:59 PM.

  8. #908
    Join Date
    May 2013
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default

    what the heck is a nickname? and how do i set that part up?

  9. #909
    Join Date
    May 2013
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Quote Originally Posted by snowbro View Post
    what the heck is a nickname? and how do i set that part up?
    A nickname is just a part of your RS name (without any capitals in it)

    For example, if your name was "ILoveCheese", you'd put your nickname as "heese" or "ove" or "hee" etc.

  10. #910
    Join Date
    May 2013
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default

    is there anyway it could check for 2 colors?

    so it could be like more percise? idk if thats the right word

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

    Default

    Quote Originally Posted by snowbro View Post
    is there anyway it could check for 2 colors?

    so it could be like more percise? idk if thats the right word

    Not yet. I think i do a big update for finding monsters this weekend. (searching for 3 different monster colors (like you have a man wit blue clothes and green clothes and yellow clothes) for all these colors its going to find a secondairy color that this npc will have too. So its way more accurate and im finally done with monster detecting.

  12. #912
    Join Date
    Jan 2012
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default

    Will you fix the eating? Sometimes it just never eats and keeps attack monsters in-till I get ring of lifed. But over all its a great script! Keep it up

  13. #913
    Join Date
    May 2013
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default

    Maybe make the paint

    Time Running: **********
    Status: **********
    Current (Attack,Defence,or Strengh) Lv: **********

    etc etc


    On a side note, sometimes it doesn't eat.



    ----if theres absolutly anything you need tested or need help with holler at me for sure.----
    Last edited by snowbro; 05-22-2013 at 03:37 AM.

  14. #914
    Join Date
    May 2013
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    this is a sweet script, but i find myself taken away by randoms constantly and can't really run the script for more than like 20 mins. so what i've been doing is keeping an eye on it with one of my monitors and then just web browsing on the other. but if i wanted to say, leave it running while at work or something, how can i do this?

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

    Default

    Quote Originally Posted by brandonclone View Post
    this is a sweet script, but i find myself taken away by randoms constantly and can't really run the script for more than like 20 mins. so what i've been doing is keeping an eye on it with one of my monitors and then just web browsing on the other. but if i wanted to say, leave it running while at work or something, how can i do this?
    I know i need to update it.. New version (not released yet) ran pretty smooth yesterday. But if you install teamviewer on your phone and pc you can see and control your monitor. I use that at school

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

    Default

    Quote Originally Posted by hoodz View Post
    I know i need to update it.. New version (not released yet) ran pretty smooth yesterday. But if you install teamviewer on your phone and pc you can see and control your monitor. I use that at school
    Did I help at all? :3

  17. #917
    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
    Did I help at all? :3
    Oh yes! I can use both yours and my procedure in 1 procedure! That was really useful thanks !

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

    Default

    Quote Originally Posted by hoodz View Post
    Oh yes! I can use both yours and my procedure in 1 procedure! That was really useful thanks !
    awesomesauce. glad to help

  19. #919
    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
    awesomesauce. glad to help
    Thanks again haha

  20. #920
    Join Date
    May 2013
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Where is a good place to train for 66 combat? Thanks for answer

  21. #921
    Join Date
    Apr 2013
    Posts
    15
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    Nice! where did u train bro? nice zerker u have there

  22. #922
    Join Date
    May 2013
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default

    Quote Originally Posted by hoodz View Post
    But if you install teamviewer on your phone and pc you can see and control your monitor. I use that at school

    I use at work, haha.

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

    Default

    Quote Originally Posted by hlkeo999 View Post
    Where is a good place to train for 66 combat? Thanks for answer
    stats

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

    Default

    infedility is testing the newest version for me now! (with multi colors + duo npc!)

  25. #925
    Join Date
    May 2013
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default

    Was the eating thing checked out?

Page 37 of 117 FirstFirst ... 2735363738394787 ... 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
  •