for me not works, still spend money.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; }
Give me some mins , i am doing all from clear .@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
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?
public bool UseEmpoweredRifts{
get { return false; }
set { }
}
not works(You can force this boolean to always be false :
bybool shouldEmpower = _options.IsEmpowered;
bool shouldEmpower = false;
Did you tried my fix ? it should workSame 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
You can force this boolean to always be false :
I think you are doing something wrong...I did both changes evil suggested but nothing changed. Still going into empowered. Any insight will be much appreciated.
Can you help pls. look on screens.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.
Your code is good, so i think your modification are not taken into account by DB...Can you help pls. look on screens.
Still using Empowered rift.
Logger.Info("################# MODIFIED VERSION ################");
bool shouldEmpower = false;
Logger.Info("################# MODIFIED VERSION ################");
bool canEmpower = ... etc...