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

[Plugin] Armory

@rrrix can you make it so it will gamble when we have more than [insert amount here] of blood shards?
Pretty annoying when we are in town and we have few blood shards and it goes to gamble T_T

You mean, if you only have 10-15 blood shards?

How is it annoying? I don't understand.
 
You mean, if you only have 10-15 blood shards?

How is it annoying? I don't understand.

Yes, if we have only 10-15 shards (for example) and bot goes to town for whatever reason, it goes to gamble right away.
I like to spend blood shards when they are in the 300-400+ range.
 
Yes, if we have only 10-15 shards (for example) and bot goes to town for whatever reason, it goes to gamble right away.
I like to spend blood shards when they are in the 300-400+ range.

10-15 at a time is going to net you exactly the same as 300-400 items.
 
Yes, if we have only 10-15 shards (for example) and bot goes to town for whatever reason, it goes to gamble right away.
I like to spend blood shards when they are in the 300-400+ range.

I have a feeling you sit and babysit your bot :)
 
Hi guys, anyone having problem with gambling with 1hander? After gambling with 5 blood shards left it keeps moving back and forth to Kadala trying to buy more with not enough shards.
 
with the new BS management is there a way to get it to NOT spend until it reaches 500? currently theres no option and its spending them as it gets them.
 
THIS, rrrix!
I have waited for this and check the Plugin section everyday just to see this.
It works like a charm for me, gonna double my lph hehe.
Thanks for your great jobs and donated.
 
Hey Rrrix can you add some sort of Blood shards spent log. =)
 
Got exactly the same issue with 1.2.2
Hi guys, anyone having problem with gambling with 1hander? After gambling with 5 blood shards left it keeps moving back and forth to Kadala trying to buy more with not enough shards.
 
Thanks for this rrrix!

One question, why was bloodshard support placed into Armory instead of Trinity?
 
Thanks for this rrrix!

One question, why was bloodshard support placed into Armory instead of Trinity?

Because Trinity is a huge mess of other stuff, and this can be used with Belphegor (or any other combat routine).
 
Found the issue and perhaps the fix
MysteryVendor.cs file
public static int GetMinimumBloodShardCount(int currentBloodShardCount)

The condition for ring and neck is wrong,

Should be
if (MysteryItemSlots.Instance.Ring)
and
if (MysteryItemSlots.Instance.Neck)

Remove check for CurrentBloodShardCount
I've 6 shards and its keep interact with kadala :(
 
@rrrix, how do I select options within the plugin? Here I try to select any option and nothing happens, the space remains empty. Where am I going wrong?
 
public static int GetMinimumBloodShardCount(int currentBloodShardCount)
{
// int minimum = 5;
int minimum = 20;
if ((MysteryItemSlots.Instance.OneHand || MysteryItemSlots.Instance.TwoHand) && currentBloodShardCount >= 15)
minimum = Math.Max(minimum, 15);

if (MysteryItemSlots.Instance.Ring && currentBloodShardCount >= 10)
minimum = Math.Max(minimum, 10);

if (MysteryItemSlots.Instance.Neck && currentBloodShardCount >= 20)
minimum = Math.Max(minimum, 20);

return minimum;
}

Changed variable minimum to 20 to match for necks. (which also solves problems with rings and weapons).

Now buys and leaves. :-)

Don't know why though, as the code seems alright.. Math.Max should return the greater value of the 2 <,<


EDIT: It's at the bottom of MysteryVendor.cs in Armory/Behaviors/
EDIT: This should fix the problems with Weapons, rings and amulets - NOT sure if it works properly with 5-cost items, so use with caution.
 
Last edited:
I need to check my logs when I get home had to run to work. But I checked my bits in the morning and they both had. 500 shards. It was working and spending the shards but at some point last night it stopped spending them
Ill post long when I get home
 
Back
Top