├── Wabbajack Automagic ├── packages.config ├── App.config ├── Properties │ ├── Settings.settings │ ├── Settings.Designer.cs │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── App.xaml.cs ├── App.xaml ├── MainWindow.xaml ├── Wabbajack Automagic.csproj └── MainWindow.xaml.cs ├── README.md ├── Wabbajack Automagic.sln ├── .gitattributes └── .gitignore /Wabbajack Automagic/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Wabbajack Automagic/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Wabbajack Automagic/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Wabbajack Automagic/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace Wabbajack_Automagic 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Wabbajack Automagic/App.xaml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Wabbajack-Automagic 2 | An autoclicker for Wabbajack modlist installer. 3 | 4 | ## NOTE: This program is against NexusMod's TOS. Use with caution. 5 | 6 | ## Instructions 7 | 1.) Extract zip 8 | 2.) Open Wabbajack and start modlist installation 9 | 3.) Open `Wabbajack Automagic.exe` 10 | 11 | ## FAQ 12 | ### It won't find the button! 13 | Try these steps: 14 | 1.) Open Wabbajack and start modlist install 15 | 2.) Use snipping tool to screenshot the 'slow download' button 16 | 3.) Put this image into the `img` folder, replacing the current `slow download.png` 17 | -------------------------------------------------------------------------------- /Wabbajack Automagic/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | 12 | namespace Wabbajack_Automagic.Properties 13 | { 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 17 | { 18 | 19 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 20 | 21 | public static Settings Default 22 | { 23 | get 24 | { 25 | return defaultInstance; 26 | } 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /Wabbajack Automagic.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.31515.178 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Wabbajack Automagic", "Wabbajack Automagic\Wabbajack Automagic.csproj", "{5A8CC7AB-CB72-4C45-927B-65B1B9D07164}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {5A8CC7AB-CB72-4C45-927B-65B1B9D07164}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {5A8CC7AB-CB72-4C45-927B-65B1B9D07164}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {5A8CC7AB-CB72-4C45-927B-65B1B9D07164}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {5A8CC7AB-CB72-4C45-927B-65B1B9D07164}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {DE9BDB28-586E-49B9-B92B-1BF936BA6B33} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Wabbajack Automagic/MainWindow.xaml: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 |