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

Misa

New Member
Joined
Apr 17, 2014
Messages
8
Reaction score
0
I updated my DB Beta after the recent patch this morning and now my bot isn't spending Blood Shards at all even though I have the Gambling tab set up in Trinity config.
It spent Blood Shards all last night so this is a new change, just started happening after my DB update.
Is anyone else having this issue?

Demonbuddy version: Beta v1.1.2914.596
Trinity version: v2.14.31

Also using Adventurer v1.3.4.14.
Log attached below, seems like it's counting my shards as -1 and just telling me I don't have enough shards to make any purchases. At the end of the second rift I had 575 total unspent.

View attachment 123148 2016-02-02 14.06.txt
 
This was fixed in one of xzjv's commits after .31 went out.

In Coroutines/Gamble.cs:190, replace:

Code:
if (Trinity.Trinity.Player.ParticipatingInTieredLootRun)
with
Code:
if (Trinity.Trinity.Player.IsInventoryLockedForGreaterRift)
 
Last edited:
I'm having the same problem, I tried using the Armory plugin for shards and that one isn't working either.
EDIT: When I use your fix, trinity disappears from DB .
 
Last edited:
This was fixed in one of xzjv's commits after .31 went out.

In Coroutines/Gamble.cs:190, replace:

Code:
if (Trinity.Trinity.Player.ParticipatingInTieredLootRun)
with
Code:
if (Trinity.Trinity.Player.IsInventoryLockedForGreaterRift)

this is already in the latest version on svn and gambling still not working =/
 
That change wasn't made on the file I had so I put it in, and also restarted my whole DB just in case. Still doing the same thing.

15:15:27.797 DEBUG Logger [Trinity 2.14.31] [Gamble]Not enough shards! Shards=-1 SaveShards=False SaveThreshold=150 CanAffordItem=False SelectedSlots=6
 
This appears to be a DB bug and not trinity, when I do a "print ZetaDia.PlayerData.BloodshardCount" in the python console it returns -1, I think maybe something up w/ the DB code here;
 
ZetaDia.PlayerData.BloodshardCount (a Demonbuddy function) is returning -1 constantly. Issues is related to the latest Demonbuddy release, not Trinity.
 
Sorry about that, just thought I'd check Trinity because that's the only plugin I've used to gamble. Thanks for the replies! Will wait for a DB update. :)
 
Back
Top