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

Adventurer - Empowered rift bug

mcdastar

New Member
Joined
May 12, 2016
Messages
3
Reaction score
0
Hello there. I have a problem with advanturer.it's about empowered rift. Even if i don't check the empowered rift option in config, bot always opens empowered rifts. tried clean install and such but no good. any possible fix?
 
I have this same issue. For some reason it seems it initializes or sets the bool to true regardless of the setting. I've fixed my issue by adding an additional line to the 'PluginSettings.cs' in the following path 'Plugins\Adventurer\Settings'. I can now toggle on and off the empowered rift option as intended.

Line 65 reads:

[DataMember]
public bool UseEmpoweredRifts { get; set; }

Modified reads like this:

[DataMember]
[DefaultValue(false)]
public bool UseEmpoweredRifts { get; set; }
 
I have this same issue. For some reason it seems it initializes or sets the bool to true regardless of the setting. I've fixed my issue by adding an additional line to the 'PluginSettings.cs' in the following path 'Plugins\Adventurer\Settings'. I can now toggle on and off the empowered rift option as intended.

Line 65 reads:

[DataMember]
public bool UseEmpoweredRifts { get; set; }

Modified reads like this:

[DataMember]
[DefaultValue(false)]
public bool UseEmpoweredRifts { get; set; }
for me not works, still spend money.
 
@NeeDforKill
Try the following and see if it works for you. After you make the change, ensure that you are not running DB and delete everything in the compiled assemblies folder. Then re-run DB and see if the issue is fixed.
Just for reference, I'm using the latest DBbeta build with Trinity .53 and Adventurer .27
 
@NeeDforKill
Try the following and see if it works for you. After you make the change, ensure that you are not running DB and delete everything in the compiled assemblies folder. Then re-run DB and see if the issue is fixed.
Just for reference, I'm using the latest DBbeta build with Trinity .53 and Adventurer .27
Give me some mins , i am doing all from clear .
 
Last edited:
nope, still open epowered rift

[Adventurer] (1.3.4.31) initialized.
[Trinity 2.41.53] Initialized v2.41.53
[Adventurer] (1.3.4.31) enabled.
[Adventurer][Rift] Time to kill some scary monsters. Chop chop!
[Adventurer] Opening Empowered Greater Rift (Cost=129000000)
[Adventurer][Rift] Let the massacre continue!
 
Same for me, not working :(

Always times => [Adventurer] Opening Empowered Greater Rift (Cost=129000000)

Please help :)
Thx !
 
Hello there. I have a problem with advanturer.it's about empowered rift. Even if i don't check the empowered rift option in config, bot always opens empowered rifts. tried clean install and such but no good. any possible fix?

yep same here. Didnt notice it and it drained all gold. Someone please help.
 
Same Issue - this really should be fixed in the base bot install. We may see a solution get rolled out sooner if we post a thread in the Support Forum so the devs see it sooner.
 
Same Issue - this really should be fixed in the base bot install. We may see a solution get rolled out sooner if we post a thread in the Support Forum so the devs see it sooner.
Did you tried my fix ? it should work
 
Did you tried my fix ? it should work

Will give it a go the next time I'm running GRs - waiting on the servers to come back up atm.

Just came back up. Your fix is confirmed working, evilking - thanks! :)
 
Last edited:
I did both changes evil suggested but nothing changed. Still going into empowered. Any insight will be much appreciated.
 
I think you are doing something wrong...
- Only do this changes : https://www.thebuddyforum.com/demon...wed-dh-100b-hour-post2198587.html#post2198587, don't forget to save your file.
- Close DB.
- Delete CompiledAssemblies folder which at the root of your DB folder.
- Start DB.

It should work.
Can you help pls. look on screens.
1.webp
2.webp

Still using Empowered rift.
 
Can you help pls. look on screens.

Still using Empowered rift.
Your code is good, so i think your modification are not taken into account by DB...
Try adding this line below the line "bool shouldEmpower = false;" :
Logger.Info("################# MODIFIED VERSION ################");

so it should be like that now :
bool shouldEmpower = false;
Logger.Info("################# MODIFIED VERSION ################");
bool canEmpower = ... etc...

Now retstart DB and run your profile. If you see the text "################# MODIFIED VERSION ################" you're good and the bug is still here..
If you don't see the text, then you modified the wrong file, or you didn't delete CompiledAssemblies folder, or I don't know but the problem is on your side...
 
Back
Top