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

[Plugin] Armory

Also had to disable "equip shields" on my barb as well as "allow dual wield". He kept only equipping an offhand whilst leaving my mainhand empty even if the weapon had HORRIBLE dps compared to my original weapon.

Happened with both shields and swords. The !Has2handerEquipped isn't being checked for either, and when it goes to equip an offhand such as a weapon or shield it never checks to see if there is a mainhand weapon to begin with that is 1h. :(

Second that. Caught my barbs with the same setup, one even decided he wasn't into wearing shoulders anymore. Not reliable plugin atm imo.
 
Hey, awsome job on this plugin, gets better fast.

Im just wondering if you have any plans to implement support for the bot to gem items? If thats even possible, I've no idea... thanks for you hard work tho ;>
 
Maybe i'm fucking dumb, Maybe but i download armory 1.1.4 and demonbuddy keep saying it's 1.1.3 version and i can click the checkboxes. I make a freshinstall/demonbuddy beta but it's still here... I don't understand someone can explain this for me, i really need this feature for leveling my alt.

THX
 
Maybe i'm fucking dumb, Maybe but i download armory 1.1.4 and demonbuddy keep saying it's 1.1.3 version and i can click the checkboxes. I make a freshinstall/demonbuddy beta but it's still here... I don't understand someone can explain this for me, i really need this feature for leveling my alt.

THX

You need the beta found in archives for this version of armory i suppose..! Mine aint working too well nice configs and all in the new version but it aint taking nothing on.. might be my settings tho
 
I take the beta ... I don't understand..

For example i just take beta download in first page and armory 1.1.4 and when i start demonbuddy said armory 1.1.3
 
Last edited:
My armory plugin weirdly keep unequiping my bar.. or keeps one shield or 1h on his left hand lool using latest trinity 1.8.23 and beta DB.
 
Hello. This plugin in combination with this profile causes random exits of D3.
http://www.thebuddyforum.com/demonb...es/156963-highest-xp-gold-hour-profile-s.html

Here is a full "support" trinity log setting. View attachment 6472 2014-04-18 22.57.zip

I disabled armory 2-3 minutes into that log and i enabled it 5-6 minutes from the end and the whole log spans about 75 minutes.
The exits is very consistent and reproducible.

I always use armory and never seen it behave like this with any other profile.
 
hmm always the same with all sources.... and clean db install > armory 1.1.4 downloaded > db says 1.1.3

checked now the armory class self...

PHP:
namespace Armory
{
    internal class Armory
    {
        public static Version PluginVersion = new Version(1, 1, 3);
 
Last edited:
Why is Armory not equipping Der Henker - Spielguide - Diablo III

The-Executioner?

Instead if is equipiing a weaker one hand and off hand on my wiz

[Armory] Der Henker is an Upgrade - Slot is Empty
[Armory] Equipping item Der Henker in slot LeftHand
Loaded profile Full Questing - All Acts Relogger Resume
GameChanged. Clearing actors
[Trinity] New Game - resetting everything
ProfileOrderManager.OnGameJoined, Reloading profile.
Loaded profile Full Questing - All Acts Relogger Resume
Game joined, Resetting profile caches.
[Trinity] Starting up Generic Cache Manage thread
[Trinity] Starting up Generic Blacklist Manager thread
Loading Act 3
[Armory] Malmende Heimsuchung is an Upgrade - Slot is Empty
 
Last edited:
Protected slot: Helmet

Doesnt work and gets swapped although the box is ticked.
 
Yea, not sure why rrix is ignoring how badly broken Armory has been for the past 2 weeks or so. Here's how you customize it so it does wtf you ask it to:

Find this line:
Code:
checkedItems.Add(new Tuple<InventorySlot, int>(slot, item.ACDGuid));


and put this right under it:
Code:
// IGNORING SLOTS
if (ProtectedSlots.Contains(slot))
{
	return false;
}


Then, find then line:
Code:
private static ArmorySettings Settings
{
    get { return ArmorySettings.Instance; }
}

and put this under it:
Code:
public static readonly List<InventorySlot> ProtectedSlots = new List<InventorySlot>()
{
	// There goes your protected inventory slots
	InventorySlot.RightFinger,
	InventorySlot.Legs,
	InventorySlot.Waist,
};


Change the list items on that last part to w/e you want. I have right ring, waist, and legs protected. I'm sure you have others things you want to protect :)! Also, the rules don't work for his stuff either. I had to turn them off in the options area and then uncomment the custom rules area around line 254.


He locked my thread on how to customize Armory thinking this was working fine, but it isn't D:! Go find my thread about Customizing Armory if you want to figure that stuff out!


Hope this helped ~
 
Back
Top