March 26, 20206 yr Hey. To quickly find errors in the profiles I use this code in the plugin to display the current profile name in the logs: wManager.Wow.Helpers.Quest.QuesterCurrentContext.ProfileName == "test.xml" I searched hard, but didn't find a similar code for the grinder..... something like Grinder.GrinderCurrentContext.ProfileName == "test.xml".... Does anyone know a similar method? The next code gives an error if product is not quester: Quester.Bot.QuesterSetting.CurrentSetting.ProfileName == "test.xml" Same code gives an error if product != grinder: Grinder.Bot.GrinderSetting.CurrentSetting.ProfileName == "test.xml"
March 27, 20206 yr Should be able to use this Quester.Bot.QuesterSetting.CurrentSetting.ProfileName.String(); and it will get the name of the profile
March 27, 20206 yr Are you using String Questname = Quester.Bot.QuesterSetting.CurrentSetting.ProfileName.String(); Logging.Write(“quest : “ + Questname + “doing”);
March 27, 20206 yr Hello, I think it is because you need to preload dll: robotManager.Products.Products.LoadProductsWithoutInit(Others.GetCurrentDirectory + @"\Products\Grinder.dll").Initialize(); robotManager.Products.Products.LoadProductsWithoutInit(Others.GetCurrentDirectory + @"\Products\Quester.dll").Initialize();
Create an account or sign in to comment