• Visit Rebornbuddy
  • LootFix Plugin for HB 1.9.5.5 by znex

    Discussion in 'Archives' started by znex, Jul 12, 2010.

    Thread Status:
    Not open for further replies.
    1. znex

      znex New Member

      Joined:
      Jun 21, 2010
      Messages:
      36
      Likes Received:
      2
      Trophy Points:
      0
      InstantLoot Plugin for HB 1.9.5.5 by znex

      Hi guys,

      one of the mose annoying things with HB 1.950 atm is in my opinion that the bot does sometimes kill a mob, run away just to come back and loot it. (better as in 1.945 but it still does sometimes)

      well.. thats over now!

      what this plugin does:
      as soon as it is possible to loot a mob it does and it does it fast
      loots while in combat
      it should interrupt mount casting before all mobs are looted
      -> which means xp/h !

      it works fine with melee classes.
      very little tested with casters yet, need some feedback here.

      hope you enjoy this so far :)

      Installation:
      just copy the whole folder into your HBFolder/Plugins
      this plugin works best if u uncheck hb looting (in bot settings)


      Code:
      [B]Changelog[/B]
      
      v1.1.1
      fixed for 1.9.5.5
      
      v1.1.0
      Added config
      ->possibility to add a delay while looting (what is really needed in my opinion but maybe some of you may need it)
      ->looting in combat can be turned off (this needs to be done if u want the bot to skin since this plugin loots mobs faster than hb itself. this causes hb to blacklist the mob)
      
      
      v1.0.1
      fixed a bug which sometimes caused InstantLoot to stop working (hopefully)
      
      v1.0
      works with 1.950
      reupload & rename
      
       

      Attached Files:

      Last edited: Aug 17, 2010
      peakaboo likes this.
    2. Natfoth

      Natfoth Community Developer

      Joined:
      Jan 15, 2010
      Messages:
      1,446
      Likes Received:
      37
      Trophy Points:
      0
      Awesome nice release znex! Also welcome to the community :) Will test it with my shammy shortly.
       
    3. Muzzle

      Muzzle New Member

      Joined:
      Jun 25, 2010
      Messages:
      14
      Likes Received:
      0
      Trophy Points:
      0
      Excellent thanks!

      Nothing worse than a bot looking like a bot so I'm eager to try this. Thanks for the work you put in it's much appreciated!
       
    4. znuffie

      znuffie Banned

      Joined:
      Feb 23, 2010
      Messages:
      864
      Likes Received:
      30
      Trophy Points:
      28
      The actual question is... does it work with 1.9.5.0?
       
    5. znex

      znex New Member

      Joined:
      Jun 21, 2010
      Messages:
      36
      Likes Received:
      2
      Trophy Points:
      0
      the actual question is.. is it still needed with 1.9.5.0? ^^ (i dont know but i'll find out. and if its needed and not working atm it will be working soon)
       
    6. kxjuh

      kxjuh New Member

      Joined:
      May 18, 2010
      Messages:
      10
      Likes Received:
      0
      Trophy Points:
      1
      Great work Znex!! :)

      Got HB 1.9.4.5 and running it now.
      And its doing great :)

      Thnx!

      Gr,

      Kxjuh
       
    7. znex

      znex New Member

      Joined:
      Jun 21, 2010
      Messages:
      36
      Likes Received:
      2
      Trophy Points:
      0
      re-uploaded, renamed and fixed some stuff :)
       
    8. Tony

      Tony "The Bee" Staff Member Moderator

      Joined:
      Jan 15, 2010
      Messages:
      128,834
      Likes Received:
      571
      Trophy Points:
      113
      nice fixes :)
       
    9. lynar

      lynar New Member

      Joined:
      Jan 15, 2010
      Messages:
      394
      Likes Received:
      2
      Trophy Points:
      0
      this is the best plugin in weeks mate. Thanks!!!! It loots faster then i do when i play manually
       
    10. peakaboo

      peakaboo New Member

      Joined:
      Feb 10, 2010
      Messages:
      329
      Likes Received:
      1
      Trophy Points:
      0
      Muchas Grass i yes! nice Plugin! Thanks!


      Update : Default pala CC Latest HB its through up errors , When used with the BETA quest mode.
       
      Last edited: Jul 13, 2010
    11. znex

      znex New Member

      Joined:
      Jun 21, 2010
      Messages:
      36
      Likes Received:
      2
      Trophy Points:
      0
      fixed a bug which caused the plugin to "crash"

      @peakaboo try using Convalesce Pala CC, works fine with my pala and quest mode
       
    12. WaCk0

      WaCk0 New Member

      Joined:
      Apr 11, 2010
      Messages:
      102
      Likes Received:
      2
      Trophy Points:
      0
      Good news that it actually does, only tested a little while but it loots insanely fast.
      Sometimes my char doesn't even bend over but i hear the money ching and it just continues, leaving me behind thinking if i looted it or not, but it did :p
       
    13. Negnuk

      Negnuk New Member

      Joined:
      Jan 30, 2010
      Messages:
      12
      Likes Received:
      0
      Trophy Points:
      0
      For those of you like me that think that it loots too fast hence the fact that it does so to face the issues it might have while looting during combat, then I have a solution for you which seems to work quite well.

      Code:
              private void Loot()
              {
                  if (StyxWoW.Me.GotTarget && !LootTargets.Contains(StyxWoW.Me.CurrentTarget))
                  {
                      LootTargets.Add(StyxWoW.Me.CurrentTarget);
                  }
                  foreach (WoWUnit unit in LootTargets)
                  {
                      if (!unit.IsAlive && unit.CanLoot)
                      {
                          while (StyxWoW.Me.Location.Distance(unit.Location) > 4)
                          {
                              WoWMovement.ClickToMove(unit.Location);
                          }
                          if (StyxWoW.Me.Location.Distance(unit.Location) <= 4)
                          {
                              unit.Interact();
                              [B]Thread.Sleep(500);[/B]
                              Styx.Logic.Inventory.Frames.LootFrame.LootFrame.Instance.LootAll();
                              sLog("*Looting " + unit.Name + "*");
                              LootTargets.Remove(unit);
                              
                          }
                      }
                  }
      Simply add Thread.Sleep(500); as shown above under the Loot struct and you can change how long you want it to wait before looting by changing 500 to whichever ammount that fits your needs in milliseconds ( 0.001 seconds ) if you want to. :>
       
    14. mezz0

      mezz0 Member

      Joined:
      Jul 10, 2010
      Messages:
      680
      Likes Received:
      10
      Trophy Points:
      18
      works very nicely indeed !!

      Only thing I wonder about is the following in the debug log during a WSG battle:

      [0:00:13:837] Plugin InstantLoot threw an exception in 'Pulse'! Exception:
      [0:00:14:131] Plugin InstantLoot threw an exception in 'Pulse'! Exception:
      [0:00:14:424] Plugin InstantLoot threw an exception in 'Pulse'! Exception:
      [0:00:14:738] Plugin InstantLoot threw an exception in 'Pulse'! Exception:
       
    15. znex

      znex New Member

      Joined:
      Jun 21, 2010
      Messages:
      36
      Likes Received:
      2
      Trophy Points:
      0
      new version! check the 1st post
      added config


      dont rly know whether it still runs away and comes back after killing but if it doesnt disabling in combat looting may make the plugin useless with 1.9.5.0 since the bot does not try to mount anymore.

      dont know about the "Plugin InstantLoot threw an exception in 'Pulse'! Exception:". any suggestions?
       
    16. baxterboy

      baxterboy New Member

      Joined:
      Jul 9, 2010
      Messages:
      323
      Likes Received:
      11
      Trophy Points:
      0
      Thanks Znex, The Config GUI looks good. Haven't tested it but I sure will.
       
    17. Xanathos

      Xanathos Active Member

      Joined:
      Jul 25, 2010
      Messages:
      1,030
      Likes Received:
      6
      Trophy Points:
      38
      Doesn't work correctly with the latest build (1.9.5.5). Throws a compile error:

      Code:
      File: InstantLoot.cs Line: 70 Error: 'Styx.WoWInternals.WoWObjects.LocalPlayer' does not contain a definition for 'InventoryFull' and no extension method 'InventoryFull' accepting a first argument of type 'Styx.WoWInternals.WoWObjects.LocalPlayer' could be found (are you missing a using directive or an assembly reference?)
      
      Which is a shame as the newest build seems to put looting corpses WAY low down on the priority list, so much so that it actually misses loot.
       
    18. znex

      znex New Member

      Joined:
      Jun 21, 2010
      Messages:
      36
      Likes Received:
      2
      Trophy Points:
      0
      since shamwow does not support 1.9.5.5 yet i'm not using it.
      but as soon as it does and i can use 1.9.5.5 i will fix (and improve) it.
       
    19. Xanathos

      Xanathos Active Member

      Joined:
      Jul 25, 2010
      Messages:
      1,030
      Likes Received:
      6
      Trophy Points:
      38
      Makes sense and is perfectly reasonable. I shall await a shamwow update so you can get this updated. =)
       
    20. IeU

      IeU Member

      Joined:
      Jul 20, 2010
      Messages:
      830
      Likes Received:
      11
      Trophy Points:
      18
      Yes cant compile :/
       
    Thread Status:
    Not open for further replies.

    Share This Page