November 5, 20169 yr Hi all, is it possible to deactivate or activate plugins in a quest profile? I had problems with a plugin in town, so i want to deactivate it first before i use hearthstone, go through a portal and later in the grinding area i want to activate it again. I can change fight classes in quest profiles but i did not find a way to change the plugin settings. Any help would be great. Thank you Best regards inselmann
November 8, 20169 yr Hello, you cannot, but you can try code like (not tested): wManager.Plugin.PluginsManager.DisposeAllPlugins(); wManager.Events.PluginEvents.OnLoadPlugin += delegate(string pluginfile, CancelEventArgs cancelable) { if (pluginfile == "plugin file name.cs") { cancelable.Cancel = true; } }; wManager.Plugin.PluginsManager.LoadAllPlugins();
Create an account or sign in to comment