What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

LootFix Plugin for HB 1.9.5.5 by znex

Status
Not open for further replies.

znex

New Member
Joined
Jun 21, 2010
Messages
36
Reaction score
2
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
 

Attachments

Last edited:
Awesome nice release znex! Also welcome to the community :) Will test it with my shammy shortly.
 
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!
 
The actual question is... does it work with 1.9.5.0?
 
The actual question is... does it work with 1.9.5.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)
 
Great work Znex!! :)

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

Thnx!

Gr,

Kxjuh
 
re-uploaded, renamed and fixed some stuff :)
 
this is the best plugin in weeks mate. Thanks!!!! It loots faster then i do when i play manually
 
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:
fixed a bug which caused the plugin to "crash"

@peakaboo try using Convalesce Pala CC, works fine with my pala and quest mode
 
The actual question is... does it work with 1.9.5.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
 
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. :>
 
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:
 
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?
 
Thanks Znex, The Config GUI looks good. Haven't tested it but I sure will.
 
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.
 
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.
 
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.

Makes sense and is perfectly reasonable. I shall await a shamwow update so you can get this updated. =)
 
Status
Not open for further replies.
Back
Top