Page 35 of 55 FirstFirst ... 25333435363745 ... LastLast
Results 851 to 875 of 1365

Thread: [SRL-6] bonsaiFighter

  1. #851
    Join Date
    Jul 2007
    Posts
    83
    Mentioned
    1 Post(s)
    Quoted
    39 Post(s)

    Default

    Hey Bonsai, is it easy for you to add item support just for rare items over a certain value?

  2. #852
    Join Date
    Sep 2014
    Location
    Netherlands
    Posts
    264
    Mentioned
    11 Post(s)
    Quoted
    130 Post(s)

    Default

    Quote Originally Posted by TotalMassacre View Post
    I would imagine it has to do with the procedure defaultHealthCheck, but as others have said, it would be nice to set it so it uses SGS at let's say 80% health, and then eat food at say 50% as a failsafe. This would save your food for only when you really need it, and also by using the SGS key more frequently you could leave prayer on. From the looks of it I guess that would require a new variable (healthPercentToSgsAt? )
    You can change it yourself. If you navigate to Simba/Includes/bonsai open "blCombat.simba". Now go to line 482 to 490. Here you can change the percentage when you eat and use sgs.

    Simba Code:
    if ((actionbar.getHPPercent() < 95) and
          (combatMgr.sgsKey <> '') and (actionbar.getAdrenalinePercent() > 50)) then
       begin
          sendKeys(combatMgr.sgsKey, 250, 40);
          exit;
       end;

       if (actionbar.getHPPercent() < 60) then
          sendKeys(combatMgr.foodKey, 250, 40);

    This changes it to using the SGS when health is 95% and eats when you get below 60%.

  3. #853
    Join Date
    Jan 2012
    Posts
    246
    Mentioned
    3 Post(s)
    Quoted
    91 Post(s)

    Default

    Why don't I get experience per hour on some monsters? Sometimes it just shows kills per hour.

    ex: http://gyazo.com/7017079072abacdba1afb89e68f0caa1

  4. #854
    Join Date
    Mar 2013
    Posts
    42
    Mentioned
    0 Post(s)
    Quoted
    18 Post(s)

    Default

    There's lots of different ways to loot items, it's actually pretty complex to differentiate between items as well. Use the fighter as an include to handle combat and write your own looting procedure to go with it, that's what I'm trying to do right now for my first script.

  5. #855
    Join Date
    Dec 2011
    Location
    U.S.A.
    Posts
    635
    Mentioned
    5 Post(s)
    Quoted
    249 Post(s)

    Default

    Bonsai,

    When I am running this script, it accurately finds the moving npcs, but never attacks any. I am unsure as to the reason for this. It will just not attack.

  6. #856
    Join Date
    Sep 2014
    Location
    Netherlands
    Posts
    264
    Mentioned
    11 Post(s)
    Quoted
    130 Post(s)

    Default

    Quote Originally Posted by Sawyer View Post
    Bonsai,

    When I am running this script, it accurately finds the moving npcs, but never attacks any. I am unsure as to the reason for this. It will just not attack.
    Has the npc a higher combat level? Bacause thats nog supported (no mouseover text)

  7. #857
    Join Date
    Dec 2011
    Location
    U.S.A.
    Posts
    635
    Mentioned
    5 Post(s)
    Quoted
    249 Post(s)

    Default

    No, it is a lower combat level.
    Quote Originally Posted by SlipperyPickle View Post
    Has the npc a higher combat level? Bacause thats nog supported (no mouseover text)

  8. #858
    Join Date
    Aug 2014
    Posts
    172
    Mentioned
    2 Post(s)
    Quoted
    77 Post(s)

    Default

    hey, It uses all ultimate abilities, but it barely ever uses rejuvenation, is there a reason behind this? should I tell the bot to uses sgs spec, but put rejuvenation there instead?

  9. #859
    Join Date
    Dec 2011
    Location
    U.S.A.
    Posts
    635
    Mentioned
    5 Post(s)
    Quoted
    249 Post(s)

    Default

    How long does the autodetect method usually take to acquire colors? I have had it collecting colors for a while with no progress.

  10. #860
    Join Date
    Jan 2015
    Posts
    39
    Mentioned
    0 Post(s)
    Quoted
    19 Post(s)

    Default

    Banked 99 summoning with this at waterfiends. Almost no hiccups.
    Only issue I had was that there was no distinction between available waterfiends and waterfiends already being fought by others.

    Thank you!

  11. #861
    Join Date
    Dec 2011
    Location
    U.S.A.
    Posts
    635
    Mentioned
    5 Post(s)
    Quoted
    249 Post(s)

    Default

    Quote Originally Posted by recs7168 View Post
    Banked 99 summoning with this at waterfiends. Almost no hiccups.
    Only issue I had was that there was no distinction between available waterfiends and waterfiends already being fought by others.

    Thank you!
    Did you use this as an include for a private script, or just add a looting function?

  12. #862
    Join Date
    Jan 2012
    Posts
    246
    Mentioned
    3 Post(s)
    Quoted
    91 Post(s)

    Default

    Quote Originally Posted by Sawyer View Post
    Did you use this as an include for a private script, or just add a looting function?
    I would assume charming imp.

  13. #863
    Join Date
    Aug 2014
    Posts
    278
    Mentioned
    10 Post(s)
    Quoted
    113 Post(s)

    Default

    Hmm encountered this recently SGS key not working? had it set on key 6.

    some suggestions would be on sgs usage
    1. Use it auto when 50% adrenaline is achieved
    2. Use it after 100% adrenaline.

  14. #864
    Join Date
    Dec 2014
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    15 Post(s)

    Default

    Simba Code:
    ////////////////////////////////////////////////////////////////////////////////////////////////////
    ////////////////////////////////////////       Bonsai       ////////////////////////////////////////
    ////////////////////////////////////////       Fighter      ////////////////////////////////////////
    ////////////////////////////////////////       _______      ////////////////////////////////////////
    //////////                                                                                //////////
    //////////  Script runtime:                                                               //////////
    //////////       12 hr 31 min 33 sec(Total) 12 hr 31 min 33 sec(Active) 0 sec(Break)      //////////
    //////////                                                                                //////////
    ////////////////////////////////////////        Kills       ////////////////////////////////////////
    //////////                             Total        Per Hour    /Hour Active              //////////
    //////////        Fire giant           3,514          280.54          280.54              //////////
    //////////                XP     1,420,007.4       113,365.4       113,365.4              //////////
    //////////          Const XP       473,335.8       37,788.47       37,788.47              //////////
    //////////                                                                                //////////
    ////////////////////////////////////////////////////////////////////////////////////////////////////
    Works flawlessly at fire giants. Thanks

  15. #865
    Join Date
    Aug 2014
    Posts
    172
    Mentioned
    2 Post(s)
    Quoted
    77 Post(s)

    Default

    I'm gettign same thing as cyan, the SGS just doesnt use it. I have tried putting in the key to press for it, and I have also just left it to use it manually. Not sure hy it doesn't work.

  16. #866
    Join Date
    Jan 2012
    Posts
    246
    Mentioned
    3 Post(s)
    Quoted
    91 Post(s)

    Default

    Progress Report:
    //////////  Script runtime:                                                               //////////
    //////////       9 hr 28 min 34 sec(Total) 9 hr 8 min 34 sec(Active) 20 min 0 sec(Break)  //////////
    //////////                                                                                //////////
    ////////////////////////////////////////        Kills       ////////////////////////////////////////
    //////////                             Total        Per Hour    /Hour Active              //////////
    //////////        fire-giant           2,354          248.41          257.46              //////////
    //////////                XP           2,354          248.41          257.46              //////////
    //////////          Const XP          784.67            82.8           85.82              //////////
    //////////                                                                                //////////
    ////////////////////////////////////////////////////////////////////////////////////////////////////

    Nice little proggy

  17. #867
    Join Date
    Aug 2014
    Posts
    172
    Mentioned
    2 Post(s)
    Quoted
    77 Post(s)

    Default

    works brilliant at ankous

    ////////////////////////////////////////////////////////////////////////////////////////////////////
    //////////////////////////////////////// Bonsai ////////////////////////////////////////
    //////////////////////////////////////// Fighter ////////////////////////////////////////
    //////////////////////////////////////// _______ ////////////////////////////////////////
    ////////// //////////
    ////////// Script runtime: //////////
    ////////// 10 hr 30 sec(Total) 9 hr 43 min 30 sec(Active) 17 min 0 sec(Break) //////////
    ////////// //////////
    //////////////////////////////////////// Kills ////////////////////////////////////////
    ////////// Total Per Hour /Hour Active //////////
    ////////// ankou 4,485 448.12 461.18 //////////
    ////////// XP 536,854.5 53,640.52 55,203.33 //////////
    ////////// Const XP 178,951.5 17,880.17 18,401.11 //////////
    ////////// //////////
    ////////////////////////////////////////////////////////////////////////////////////////////////////

  18. #868
    Join Date
    Aug 2014
    Posts
    278
    Mentioned
    10 Post(s)
    Quoted
    113 Post(s)

    Default

    Next time you post a progress report
    go advanced and use report tags so it looks good

  19. #869
    Join Date
    May 2014
    Posts
    633
    Mentioned
    8 Post(s)
    Quoted
    322 Post(s)

    Default

    Quote Originally Posted by nero_dante View Post
    hey, It uses all ultimate abilities, but it barely ever uses rejuvenation, is there a reason behind this? should I tell the bot to uses sgs spec, but put rejuvenation there instead?
    It's very possible that the rejuvenation ability suffers a similar bug with guthix's blessing, the icon may look like it's always on cooldown due to the way part of it is darkened (probably top middle-leftish). This means that simba never actually thinks that rejuvenate comes off cooldown. When I was trying to use this with guthix's blessing I just tied the use of that skill to death's switftness (another ult) so that it would always try to use guthix's blessing's key first before swiftness.

  20. #870
    Join Date
    Jan 2015
    Posts
    98
    Mentioned
    1 Post(s)
    Quoted
    41 Post(s)

    Default

    Died using this script lost 6M and that was all I had don't have money to do shit now..
    Happy scripting people!

    EDIT:
    Also lost my TokKul-Zo which requires quite some farming time at Tzhaar city to get 50k TokKul and recharge it!
    Last edited by Enigmatic; 02-04-2015 at 06:33 PM.

  21. #871
    Join Date
    Jan 2015
    Posts
    20
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    Quote Originally Posted by Enigmatic View Post
    Died using this script lost 6M and that was all I had don't have money to do shit now..
    Happy scripting people!

    EDIT:
    Also lost my TokKul-Zo which requires quite some farming time at Tzhaar city to get 50k TokKul and recharge it!



    This script logs you out when you reach a certain health, and eats. I'm imagining you either set something up wrong, or were at a place with aggressive monsters?

  22. #872
    Join Date
    Jan 2015
    Posts
    98
    Mentioned
    1 Post(s)
    Quoted
    41 Post(s)

    Default

    Quote Originally Posted by BadIdea View Post
    This script logs you out when you reach a certain health, and eats. I'm imagining you either set something up wrong, or were at a place with aggressive monsters?
    Nope, I checked it before I left and it was fully functioning, ate as well.
    Anyway maybe it was just this time, I was at waterfiends maybe it ran over to green dragons or something.
    Just act with care.

  23. #873
    Join Date
    Oct 2014
    Location
    With ezreal~
    Posts
    295
    Mentioned
    45 Post(s)
    Quoted
    255 Post(s)

    Default

    Quote Originally Posted by Enigmatic View Post
    Nope, I checked it before I left and it was fully functioning, ate as well.
    Anyway maybe it was just this time, I was at waterfiends maybe it ran over to green dragons or something.
    Just act with care.
    Did you have a multi target spell on your action bar? If so, it probably hit one of the green dragons.



    It's not gay if it's efficient.

  24. #874
    Join Date
    Jun 2007
    Location
    The land of the long white cloud.
    Posts
    3,702
    Mentioned
    261 Post(s)
    Quoted
    2006 Post(s)

  25. #875
    Join Date
    Oct 2014
    Location
    With ezreal~
    Posts
    295
    Mentioned
    45 Post(s)
    Quoted
    255 Post(s)

    Default

    Quote Originally Posted by The Mayor View Post
    Guys what should I train on with 60 att/str/def/ that doesn't require much food? P2P
    Nothing but slayer tower?

    Or fire giants. Fire giants are wonderful.
    Last edited by Taric; 02-04-2015 at 07:32 PM.



    It's not gay if it's efficient.

Page 35 of 55 FirstFirst ... 25333435363745 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 2 users browsing this thread. (0 members and 2 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
  •