In your Demonbuddy folder, open the following file in Notepad:
\Plugins\Trinity\Helpers\GoldInactivity.cs
Press Ctrl-F to copy and paste the following code. It can be found on line #161:
Change it to the following:[/B]
The 120 portion is the number of seconds before the gold inactivity monitor trips. You can change it to however many seconds you would like.
I'm not super-adept at C-Sharp to fix the issue with reading the Trinity Settings at the moment, but will attempt a real fix in the next few days as well as release my heavily modified Ancient Spear/Leap/Weapon Throw Barbarian Combat modifications.
Hope this helps.
EDIT: Just a note, this does work to fix the problem the majority of the time but it seems that every once in a while, while stuck it doesn't work. Over a 5 hour period tonight, I did have it get stuck without triggering the gold inactivity. It looks like somewhere the bot is not triggering the check. Proof:
-PrettyPia
\Plugins\Trinity\Helpers\GoldInactivity.cs
Press Ctrl-F to copy and paste the following code. It can be found on line #161:
Code:
if (notpickupgoldsec >= Trinity.Settings.Advanced.GoldInactivityTimer)
Change it to the following:[/B]
Code:
if (notpickupgoldsec >= 120)
The 120 portion is the number of seconds before the gold inactivity monitor trips. You can change it to however many seconds you would like.
I'm not super-adept at C-Sharp to fix the issue with reading the Trinity Settings at the moment, but will attempt a real fix in the next few days as well as release my heavily modified Ancient Spear/Leap/Weapon Throw Barbarian Combat modifications.
Hope this helps.
EDIT: Just a note, this does work to fix the problem the majority of the time but it seems that every once in a while, while stuck it doesn't work. Over a 5 hour period tonight, I did have it get stuck without triggering the gold inactivity. It looks like somewhere the bot is not triggering the check. Proof:
Code:
19:31:31.121 INFO Logger [Trinity] Gold inactivity after 120s. Sending abort.
19:31:36.122 INFO Logger [Trinity] Gold Inactivity timer tripped - Anti-stuck measures exiting current game.
-PrettyPia
Last edited: