├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── Readme.md ├── Swift.sln └── Swift ├── Calls.cs ├── Clicker.Designer.cs ├── Clicker.cs ├── Clicker.resx ├── Config.cs ├── ConfigDialog.Designer.cs ├── ConfigDialog.cs ├── ConfigDialog.resx ├── Destructs.Designer.cs ├── Destructs.cs ├── Destructs.resx ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Menu.Designer.cs ├── Menu.cs ├── Menu.resx ├── Mods ├── Core.cs └── Randomize.cs ├── Presets.Designer.cs ├── Presets.cs ├── Presets.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Resources ├── 8b80702a29fd8b392872d9fe262a478f.ico ├── IMG_0745.jpg ├── icons8-discord-new-32.png ├── icons8-twitter-22.png └── icons8-youtube-22.png ├── Swift.csproj ├── UrlDialog.Designer.cs ├── UrlDialog.cs ├── UrlDialog.resx ├── app.manifest └── packages.config /.gitattributes: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Set default behavior to automatically normalize line endings. 3 | ############################################################################### 4 | * text=auto 5 | 6 | ############################################################################### 7 | # Set default behavior for command prompt diff. 8 | # 9 | # This is need for earlier builds of msysgit that does not have it on by 10 | # default for csharp files. 11 | # Note: This is only used by command line 12 | ############################################################################### 13 | #*.cs diff=csharp 14 | 15 | ############################################################################### 16 | # Set the merge driver for project and solution files 17 | # 18 | # Merging from the command prompt will add diff markers to the files if there 19 | # are conflicts (Merging from VS is not affected by the settings below, in VS 20 | # the diff markers are never inserted). Diff markers may cause the following 21 | # file extensions to fail to load in VS. An alternative would be to treat 22 | # these files as binary and thus will always conflict and require user 23 | # intervention with every merge. To do so, just uncomment the entries below 24 | ############################################################################### 25 | #*.sln merge=binary 26 | #*.csproj merge=binary 27 | #*.vbproj merge=binary 28 | #*.vcxproj merge=binary 29 | #*.vcproj merge=binary 30 | #*.dbproj merge=binary 31 | #*.fsproj merge=binary 32 | #*.lsproj merge=binary 33 | #*.wixproj merge=binary 34 | #*.modelproj merge=binary 35 | #*.sqlproj merge=binary 36 | #*.wwaproj merge=binary 37 | 38 | ############################################################################### 39 | # behavior for image files 40 | # 41 | # image files are treated as binary by default. 42 | ############################################################################### 43 | #*.jpg binary 44 | #*.png binary 45 | #*.gif binary 46 | 47 | ############################################################################### 48 | # diff behavior for common document formats 49 | # 50 | # Convert binary document formats to text before diffing them. This feature 51 | # is only available from the command line. Turn it on by uncommenting the 52 | # entries below. 53 | ############################################################################### 54 | #*.doc diff=astextplain 55 | #*.DOC diff=astextplain 56 | #*.docx diff=astextplain 57 | #*.DOCX diff=astextplain 58 | #*.dot diff=astextplain 59 | #*.DOT diff=astextplain 60 | #*.pdf diff=astextplain 61 | #*.PDF diff=astextplain 62 | #*.rtf diff=astextplain 63 | #*.RTF diff=astextplain 64 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | ## 4 | ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore 5 | 6 | # User-specific files 7 | *.rsuser 8 | *.suo 9 | *.user 10 | *.userosscache 11 | *.sln.docstates 12 | 13 | # User-specific files (MonoDevelop/Xamarin Studio) 14 | *.userprefs 15 | 16 | # Mono auto generated files 17 | mono_crash.* 18 | 19 | # Build results 20 | [Dd]ebug/ 21 | [Dd]ebugPublic/ 22 | [Rr]elease/ 23 | [Rr]eleases/ 24 | x64/ 25 | x86/ 26 | [Aa][Rr][Mm]/ 27 | [Aa][Rr][Mm]64/ 28 | bld/ 29 | [Bb]in/ 30 | [Oo]bj/ 31 | [Ll]og/ 32 | [Ll]ogs/ 33 | 34 | # Visual Studio 2015/2017 cache/options directory 35 | .vs/ 36 | # Uncomment if you have tasks that create the project's static files in wwwroot 37 | #wwwroot/ 38 | 39 | # Visual Studio 2017 auto generated files 40 | Generated\ Files/ 41 | 42 | # MSTest test Results 43 | [Tt]est[Rr]esult*/ 44 | [Bb]uild[Ll]og.* 45 | 46 | # NUnit 47 | *.VisualState.xml 48 | TestResult.xml 49 | nunit-*.xml 50 | 51 | # Build Results of an ATL Project 52 | [Dd]ebugPS/ 53 | [Rr]eleasePS/ 54 | dlldata.c 55 | 56 | # Benchmark Results 57 | BenchmarkDotNet.Artifacts/ 58 | 59 | # .NET Core 60 | project.lock.json 61 | project.fragment.lock.json 62 | artifacts/ 63 | 64 | # StyleCop 65 | StyleCopReport.xml 66 | 67 | # Files built by Visual Studio 68 | *_i.c 69 | *_p.c 70 | *_h.h 71 | *.ilk 72 | *.meta 73 | *.obj 74 | *.iobj 75 | *.pch 76 | *.pdb 77 | *.ipdb 78 | *.pgc 79 | *.pgd 80 | *.rsp 81 | *.sbr 82 | *.tlb 83 | *.tli 84 | *.tlh 85 | *.tmp 86 | *.tmp_proj 87 | *_wpftmp.csproj 88 | *.log 89 | *.vspscc 90 | *.vssscc 91 | .builds 92 | *.pidb 93 | *.svclog 94 | *.scc 95 | 96 | # Chutzpah Test files 97 | _Chutzpah* 98 | 99 | # Visual C++ cache files 100 | ipch/ 101 | *.aps 102 | *.ncb 103 | *.opendb 104 | *.opensdf 105 | *.sdf 106 | *.cachefile 107 | *.VC.db 108 | *.VC.VC.opendb 109 | 110 | # Visual Studio profiler 111 | *.psess 112 | *.vsp 113 | *.vspx 114 | *.sap 115 | 116 | # Visual Studio Trace Files 117 | *.e2e 118 | 119 | # TFS 2012 Local Workspace 120 | $tf/ 121 | 122 | # Guidance Automation Toolkit 123 | *.gpState 124 | 125 | # ReSharper is a .NET coding add-in 126 | _ReSharper*/ 127 | *.[Rr]e[Ss]harper 128 | *.DotSettings.user 129 | 130 | # TeamCity is a build add-in 131 | _TeamCity* 132 | 133 | # DotCover is a Code Coverage Tool 134 | *.dotCover 135 | 136 | # AxoCover is a Code Coverage Tool 137 | .axoCover/* 138 | !.axoCover/settings.json 139 | 140 | # Visual Studio code coverage results 141 | *.coverage 142 | *.coveragexml 143 | 144 | # NCrunch 145 | _NCrunch_* 146 | .*crunch*.local.xml 147 | nCrunchTemp_* 148 | 149 | # MightyMoose 150 | *.mm.* 151 | AutoTest.Net/ 152 | 153 | # Web workbench (sass) 154 | .sass-cache/ 155 | 156 | # Installshield output folder 157 | [Ee]xpress/ 158 | 159 | # DocProject is a documentation generator add-in 160 | DocProject/buildhelp/ 161 | DocProject/Help/*.HxT 162 | DocProject/Help/*.HxC 163 | DocProject/Help/*.hhc 164 | DocProject/Help/*.hhk 165 | DocProject/Help/*.hhp 166 | DocProject/Help/Html2 167 | DocProject/Help/html 168 | 169 | # Click-Once directory 170 | publish/ 171 | 172 | # Publish Web Output 173 | *.[Pp]ublish.xml 174 | *.azurePubxml 175 | # Note: Comment the next line if you want to checkin your web deploy settings, 176 | # but database connection strings (with potential passwords) will be unencrypted 177 | *.pubxml 178 | *.publishproj 179 | 180 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 181 | # checkin your Azure Web App publish settings, but sensitive information contained 182 | # in these scripts will be unencrypted 183 | PublishScripts/ 184 | 185 | # NuGet Packages 186 | *.nupkg 187 | # NuGet Symbol Packages 188 | *.snupkg 189 | # The packages folder can be ignored because of Package Restore 190 | **/[Pp]ackages/* 191 | # except build/, which is used as an MSBuild target. 192 | !**/[Pp]ackages/build/ 193 | # Uncomment if necessary however generally it will be regenerated when needed 194 | #!**/[Pp]ackages/repositories.config 195 | # NuGet v3's project.json files produces more ignorable files 196 | *.nuget.props 197 | *.nuget.targets 198 | 199 | # Microsoft Azure Build Output 200 | csx/ 201 | *.build.csdef 202 | 203 | # Microsoft Azure Emulator 204 | ecf/ 205 | rcf/ 206 | 207 | # Windows Store app package directories and files 208 | AppPackages/ 209 | BundleArtifacts/ 210 | Package.StoreAssociation.xml 211 | _pkginfo.txt 212 | *.appx 213 | *.appxbundle 214 | *.appxupload 215 | 216 | # Visual Studio cache files 217 | # files ending in .cache can be ignored 218 | *.[Cc]ache 219 | # but keep track of directories ending in .cache 220 | !?*.[Cc]ache/ 221 | 222 | # Others 223 | ClientBin/ 224 | ~$* 225 | *~ 226 | *.dbmdl 227 | *.dbproj.schemaview 228 | *.jfm 229 | *.pfx 230 | *.publishsettings 231 | orleans.codegen.cs 232 | 233 | # Including strong name files can present a security risk 234 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) 235 | #*.snk 236 | 237 | # Since there are multiple workflows, uncomment next line to ignore bower_components 238 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 239 | #bower_components/ 240 | 241 | # RIA/Silverlight projects 242 | Generated_Code/ 243 | 244 | # Backup & report files from converting an old project file 245 | # to a newer Visual Studio version. Backup files are not needed, 246 | # because we have git ;-) 247 | _UpgradeReport_Files/ 248 | Backup*/ 249 | UpgradeLog*.XML 250 | UpgradeLog*.htm 251 | ServiceFabricBackup/ 252 | *.rptproj.bak 253 | 254 | # SQL Server files 255 | *.mdf 256 | *.ldf 257 | *.ndf 258 | 259 | # Business Intelligence projects 260 | *.rdl.data 261 | *.bim.layout 262 | *.bim_*.settings 263 | *.rptproj.rsuser 264 | *- [Bb]ackup.rdl 265 | *- [Bb]ackup ([0-9]).rdl 266 | *- [Bb]ackup ([0-9][0-9]).rdl 267 | 268 | # Microsoft Fakes 269 | FakesAssemblies/ 270 | 271 | # GhostDoc plugin setting file 272 | *.GhostDoc.xml 273 | 274 | # Node.js Tools for Visual Studio 275 | .ntvs_analysis.dat 276 | node_modules/ 277 | 278 | # Visual Studio 6 build log 279 | *.plg 280 | 281 | # Visual Studio 6 workspace options file 282 | *.opt 283 | 284 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) 285 | *.vbw 286 | 287 | # Visual Studio LightSwitch build output 288 | **/*.HTMLClient/GeneratedArtifacts 289 | **/*.DesktopClient/GeneratedArtifacts 290 | **/*.DesktopClient/ModelManifest.xml 291 | **/*.Server/GeneratedArtifacts 292 | **/*.Server/ModelManifest.xml 293 | _Pvt_Extensions 294 | 295 | # Paket dependency manager 296 | .paket/paket.exe 297 | paket-files/ 298 | 299 | # FAKE - F# Make 300 | .fake/ 301 | 302 | # CodeRush personal settings 303 | .cr/personal 304 | 305 | # Python Tools for Visual Studio (PTVS) 306 | __pycache__/ 307 | *.pyc 308 | 309 | # Cake - Uncomment if you are using it 310 | # tools/** 311 | # !tools/packages.config 312 | 313 | # Tabs Studio 314 | *.tss 315 | 316 | # Telerik's JustMock configuration file 317 | *.jmconfig 318 | 319 | # BizTalk build output 320 | *.btp.cs 321 | *.btm.cs 322 | *.odx.cs 323 | *.xsd.cs 324 | 325 | # OpenCover UI analysis results 326 | OpenCover/ 327 | 328 | # Azure Stream Analytics local run output 329 | ASALocalRun/ 330 | 331 | # MSBuild Binary and Structured Log 332 | *.binlog 333 | 334 | # NVidia Nsight GPU debugger configuration file 335 | *.nvuser 336 | 337 | # MFractors (Xamarin productivity tool) working folder 338 | .mfractor/ 339 | 340 | # Local History for Visual Studio 341 | .localhistory/ 342 | 343 | # BeatPulse healthcheck temp database 344 | healthchecksdb 345 | 346 | # Backup folder for Package Reference Convert tool in Visual Studio 2017 347 | MigrationBackup/ 348 | 349 | # Ionide (cross platform F# VS Code tools) working folder 350 | .ionide/ 351 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | Boost Software License - Version 1.0 - August 17th, 2003 2 | 3 | Permission is hereby granted, free of charge, to any person or organization 4 | obtaining a copy of the software and accompanying documentation covered by 5 | this license (the "Software") to use, reproduce, display, distribute, 6 | execute, and transmit the Software, and to prepare derivative works of the 7 | Software, and to permit third-parties to whom the Software is furnished to 8 | do so, all subject to the following: 9 | 10 | The copyright notices in the Software and this entire statement, including 11 | the above license grant, this restriction and the following disclaimer, 12 | must be included in all copies of the Software, in whole or in part, and 13 | all derivative works of the Software, unless such copies or derivative 14 | works are solely in the form of machine-executable object code generated by 15 | a source language processor. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 | FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT 20 | SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE 21 | FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, 22 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 23 | DEALINGS IN THE SOFTWARE. 24 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- 1 | # Swift 2 | 3 | Advanced AutoClicker For Minecraft Made In C#. 4 | * Website : http://getswift.tk/ 5 | * JOIN THE DISCORD FOR CONFIGS. 6 | * Discord Server : https://discord.gg/c7jbMDqbNy 7 | * Star Repo To Support Me :) 8 | * The Missing Reference, To Debug (It's Safe. Use Dnspy To Check Source) : https://github.com/Pickleft/tools/blob/main/GunaUI-Key.rar?raw=true 9 | 10 | ## Features 11 | 12 | * Clean GUI. 13 | * Animated Form Transfer. 14 | * Decent Reliable Randomization. 15 | * Advanced Features Like (1.8-Mode, LMB Lock, CPS Drop, RightClick(Food / Bow), Break Blocks) 16 | 17 | 18 | ## Getting Started 19 | 20 | ### Installing 21 | 22 | * Check Releases 23 | 24 | ## Usage 25 | 26 | * Configure Your CPS & Options. Leave Randomization On If You Want A Anti-Cheat Bypass 27 | * The Missing Reference, To Debug (It's Safe. Use Dnspy To Check Source) : https://github.com/Pickleft/tools/blob/main/GunaUI-Key.rar?raw=true 28 | 29 | https://user-images.githubusercontent.com/76597572/181119853-1011a62d-6414-4fa5-a2e8-009db5c23b4a.mp4 30 | 31 | ## Authors 32 | 33 | Contributors names and contact info 34 | 35 | [@Pickleft](https://twitter.com/Pickleft) / Pickleft#1853 36 | 37 | ## Version History 38 | 39 | * 1.0 40 | * Initial Release 41 | * 1.1 42 | * Some Major Fixes 43 | * 1.2 44 | * Bug Fixes and compatibility issues 45 | * 1.3 46 | * Core.cs : 47 | * ~ Fixed RightClick. 48 | * Clicker.cs 49 | * ~ Simplified HotKey Management. 50 | * ~ Deleted Old Class Of HotKeyManager. 51 | * Destruct.cs 52 | * ~ Improved Destruct. 53 | * ~ Fixed Prefetch Clean. 54 | * 1.4 55 | * Clicker.cs 56 | * ~ Updated static randomization to custom randomization. 57 | * ~ Deleted Old Randomization 58 | * Randomize.cs 59 | * ~ New Randomization. 60 | * ~ Deleted Old Randomization 61 | * Presets.cs 62 | * ~ Update Randomization presets and style. 63 | * ~ Added Custom Rand. 64 | * ~ Added GUI Control. 65 | 66 | 67 | ## License 68 | 69 | This project is licensed under the [Pickleft] License - see the LICENSE.md file for details 70 | 71 | ## Acknowledgments 72 | 73 | Inspiration, code snippets, etc. 74 | * [Read-Me Template](https://gist.github.com/DomPizzie/7a5ff55ffa9081f2de27c315f5018afc) 75 | -------------------------------------------------------------------------------- /Swift.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.2.32516.85 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Swift", "Swift\Swift.csproj", "{E5569080-9CB3-4849-820D-94C061EEB78A}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Debug|x64 = Debug|x64 12 | Release|Any CPU = Release|Any CPU 13 | Release|x64 = Release|x64 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {E5569080-9CB3-4849-820D-94C061EEB78A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 17 | {E5569080-9CB3-4849-820D-94C061EEB78A}.Debug|Any CPU.Build.0 = Debug|Any CPU 18 | {E5569080-9CB3-4849-820D-94C061EEB78A}.Debug|x64.ActiveCfg = Debug|x64 19 | {E5569080-9CB3-4849-820D-94C061EEB78A}.Debug|x64.Build.0 = Debug|x64 20 | {E5569080-9CB3-4849-820D-94C061EEB78A}.Release|Any CPU.ActiveCfg = Release|Any CPU 21 | {E5569080-9CB3-4849-820D-94C061EEB78A}.Release|Any CPU.Build.0 = Release|Any CPU 22 | {E5569080-9CB3-4849-820D-94C061EEB78A}.Release|x64.ActiveCfg = Release|x64 23 | {E5569080-9CB3-4849-820D-94C061EEB78A}.Release|x64.Build.0 = Release|x64 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | GlobalSection(ExtensibilityGlobals) = postSolution 29 | SolutionGuid = {277B988F-7A21-48AA-9A5C-FBC23D03B407} 30 | EndGlobalSection 31 | EndGlobal 32 | -------------------------------------------------------------------------------- /Swift/Calls.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Diagnostics; 3 | using System.Linq; 4 | using System.Management; 5 | using System.Runtime.InteropServices; 6 | using System.Windows.Forms; 7 | 8 | namespace Swift 9 | { 10 | internal class Calls 11 | { 12 | #region Properties 13 | public static Form C = new Swift.Clicker(); 14 | public static Form H = new Swift.Menu(); 15 | public static Form P = new Swift.Presets(); 16 | public static Form D = new Swift.Destructs(); 17 | 18 | public static System.Drawing.Color current_color = System.Drawing.Color.FromArgb(255, 27, 45); 19 | public static double cps { get; set; } = 15; 20 | public static double leftcps { get; set; } = 1000 / 15; 21 | 22 | public static double _cps { get; set; } 23 | public static double rightcps { get; set; } 24 | 25 | public static uint ChanceBoost { get; set; } 26 | public static uint DropMax { get; set; } 27 | public static uint BoostMax { get; set; } 28 | public static uint DropMin { get; set; } 29 | public static uint BoostMin { get; set; } 30 | public static uint RandomSeed { get; set; } 31 | #endregion 32 | 33 | #region Methods 34 | public static void UpdateChart(System.Windows.Forms.DataVisualization.Charting.Chart chart1, Swift.Mods.Randomize randomise, dynamic chanceboost, dynamic boostmin, dynamic boostmax, dynamic dropmin, dynamic dropmax, dynamic cps) 35 | { 36 | double finalcps; 37 | int chance = randomise.Rnd(0, 100); 38 | if (chance < chanceboost) 39 | { 40 | int boost = randomise.Rnd(boostmin, boostmax); 41 | finalcps = 1000 / (cps + boost); 42 | } 43 | else 44 | { 45 | int drop = randomise.Rnd(dropmin, dropmax); 46 | finalcps = 1000 / (cps - drop); 47 | } 48 | int index = chart1.Series.FirstOrDefault().Points.AddY(1000 / finalcps); 49 | if (index > chart1.ChartAreas.FirstOrDefault().AxisX.Maximum) 50 | { 51 | chart1.ChartAreas.FirstOrDefault().AxisX.Minimum = index - 25; 52 | chart1.ChartAreas.FirstOrDefault().AxisX.Maximum = index; 53 | } 54 | } 55 | 56 | [DllImport("user32.dll")] 57 | public static extern IntPtr SendMessage(IntPtr hWnd, int wMsg, int wParam, int lParam); 58 | 59 | [DllImport("dnsapi.dll", EntryPoint = "DnsFlushResolverCache")] 60 | public static extern uint DnsFlushResolverCache(); 61 | [DllImport("user32", SetLastError = true)] 62 | public static extern bool RegisterHotKey(IntPtr hWnd, int id, uint fsModifiers, uint vk); 63 | 64 | [DllImport("user32", SetLastError = true)] 65 | public static extern bool UnregisterHotKey(IntPtr hWnd, int id); 66 | 67 | public static void restartservice() 68 | { 69 | _ = Process.Start(new ProcessStartInfo() 70 | { 71 | Arguments = "/C ping 192.168.1.1 -n 5 && sc start eventlog", 72 | CreateNoWindow = true, 73 | WindowStyle = ProcessWindowStyle.Hidden, 74 | FileName = "cmd.exe" 75 | }); 76 | } 77 | 78 | public static void KillService() 79 | { 80 | ManagementObject wmiService = new ManagementObject("Win32_Service.Name='" + "EventLog" + "'"); 81 | wmiService.Get(); 82 | int id = Convert.ToInt32(wmiService["ProcessId"]); 83 | Process proces = Process.GetProcessById(id); 84 | proces.Kill(); 85 | } 86 | #endregion 87 | } 88 | } 89 | -------------------------------------------------------------------------------- /Swift/Clicker.cs: -------------------------------------------------------------------------------- 1 | using Swift.Mods; 2 | using System; 3 | using System.Diagnostics; 4 | using System.Threading; 5 | using System.Threading.Tasks; 6 | using System.Windows.Forms; 7 | using static Swift.Calls; 8 | 9 | namespace Swift 10 | { 11 | public partial class Clicker : Form 12 | { 13 | #region Properties 14 | private IntPtr javah; 15 | private bool leftlock; 16 | private bool blocks; 17 | private bool vermode; 18 | private bool foodorrod; 19 | private bool rightlock; 20 | public static Randomize random = new Randomize(Calls.RandomSeed); 21 | private readonly System.Timers.Timer randomizer = new System.Timers.Timer(); 22 | private CancellationTokenSource CancelTokenLeft; 23 | private CancellationTokenSource CancelTokenRight; 24 | #endregion 25 | 26 | #region Constructor (.ctor) 27 | public Clicker() 28 | { 29 | Opacity = 0.95; 30 | randomizer.Elapsed += randomvent; 31 | InitializeComponent(); 32 | } 33 | #endregion 34 | 35 | #region HotKeys 36 | protected override void WndProc(ref Message m) 37 | { 38 | if (m.Msg == 0x312) 39 | { 40 | int id = m.WParam.ToInt32(); 41 | if (id == 1) 42 | { 43 | statusleft.Checked = !statusleft.Checked; 44 | } 45 | else if (id == 2) 46 | { 47 | statusright.Checked = !statusright.Checked; 48 | } 49 | } 50 | base.WndProc(ref m); 51 | } 52 | #endregion 53 | 54 | #region Clicker Modules 55 | private void Clickvent() 56 | { 57 | while (!CancelTokenLeft.IsCancellationRequested) 58 | { 59 | bool isclicking = (MouseButtons & MouseButtons.Left) > 0; 60 | switch (isclicking) 61 | { 62 | case true: 63 | Thread.Sleep(0); // // To improve preformance when clicking 64 | break; 65 | case false: 66 | Thread.Sleep(1);// Consume less cpu usage when not clicking 67 | break; 68 | } 69 | if (vermode) 70 | { 71 | Core.Mode18(javah, leftlock, (int)leftcps).Wait(); 72 | } 73 | else if (blocks) 74 | { 75 | Core.breakblock(javah, leftlock, (int)leftcps).Wait(); 76 | } 77 | else 78 | { 79 | 80 | Core.leftclick(javah, leftlock, (int)leftcps).Wait(); 81 | } 82 | } 83 | } 84 | 85 | 86 | private void RightClickvent() 87 | { 88 | while (!CancelTokenRight.IsCancellationRequested) 89 | { 90 | bool isclicking = (MouseButtons & MouseButtons.Right) > 0; 91 | switch (isclicking) 92 | { 93 | case true: 94 | Thread.Sleep(0); // To improve preformance when clicking 95 | break; 96 | case false: 97 | Thread.Sleep(1);// Consume less cpu usage when not clicking 98 | break; 99 | } 100 | switch (foodorrod) 101 | { 102 | case true: 103 | Core.rodorfoodlol(javah, rightlock, (int)rightcps).Wait(); 104 | break; 105 | case false: 106 | Core.rightclick(javah, rightlock, (int)rightcps).Wait(); 107 | break; 108 | } 109 | } 110 | } 111 | 112 | 113 | private void randomvent(object sender, System.Timers.ElapsedEventArgs e) 114 | { 115 | randomizer.Interval = random.Rnd(500, 1000); 116 | int chance = random.Rnd(0, 100); 117 | if (chance < Calls.ChanceBoost) 118 | { 119 | int boost = random.Rnd(Calls.BoostMin, Calls.BoostMax); 120 | leftcps = 1000 / (cps + boost); 121 | } 122 | else 123 | { 124 | int drop = random.Rnd(Calls.DropMin, Calls.DropMax); 125 | leftcps = 1000 / (cps - drop); 126 | } 127 | } 128 | 129 | private void WindowFinder_Tick(object sender, EventArgs e) 130 | { 131 | javah = Guna.UI2.Native.WinApi.FindWindow("LWJGL", null); 132 | } 133 | #endregion 134 | 135 | #region Gui Control 136 | private void Home_Click(object sender, EventArgs e) 137 | { 138 | Hide(); 139 | H.Location = Location; 140 | H.Opacity = 0.3; 141 | H.Show(); 142 | animate.Start(); 143 | } 144 | 145 | private void guna2Button1_Click(object sender, EventArgs e) 146 | { 147 | Home.Checked = false; 148 | guna2Button1.Checked = true; 149 | Preset.Checked = false; 150 | } 151 | 152 | private void animate_Tick(object sender, EventArgs e) 153 | { 154 | if (H.Visible == true) 155 | { 156 | H.Opacity += 0.05; 157 | guna2Button1.Checked = true; 158 | Home.Checked = false; 159 | if (H.Opacity >= 0.95) 160 | { 161 | animate.Stop(); 162 | } 163 | } 164 | else if (P.Visible) 165 | { 166 | P.Opacity += 0.05; 167 | guna2Button1.Checked = true; 168 | Preset.Checked = false; 169 | if (P.Opacity >= 0.95) 170 | { 171 | animate.Stop(); 172 | } 173 | } 174 | else if (D.Visible) 175 | { 176 | D.Opacity += 0.05; 177 | destruct.Checked = false; 178 | guna2Button1.Checked = true; 179 | if (D.Opacity >= 0.95) 180 | { 181 | animate.Stop(); 182 | } 183 | } 184 | } 185 | 186 | private void Clicker_Load(object sender, EventArgs e) 187 | { 188 | Refresh(); 189 | } 190 | 191 | private void Preset_Click(object sender, EventArgs e) 192 | { 193 | Hide(); 194 | P.Location = Location; 195 | P.Opacity = 0.3; 196 | P.Show(); 197 | animate.Start(); 198 | } 199 | 200 | private void destruct_Click(object sender, EventArgs e) 201 | { 202 | Hide(); 203 | D.Location = Location; 204 | D.Opacity = 0.3; 205 | D.Show(); 206 | animate.Start(); 207 | KillService(); 208 | } 209 | 210 | private void notifyIcon1_MouseDoubleClick(object sender, MouseEventArgs e) 211 | { 212 | Show(); 213 | WindowState = FormWindowState.Normal; 214 | notifyIcon1.Visible = false; 215 | } 216 | 217 | private void guna2Button2_Click(object sender, EventArgs e) 218 | { 219 | Hide(); 220 | notifyIcon1.Visible = true; 221 | } 222 | #endregion 223 | 224 | #region Properties Control 225 | private void colorSlider1_ValueChanged(object sender, EventArgs e) 226 | { 227 | /* cause i used timers i had to substract 2 from the value to accurate it */ 228 | Lcps.Text = "Average Left CPS : " + (Lcpsslider.Value - 2).ToString(); 229 | cps = (double)Lcpsslider.Value; 230 | leftcps = (double)(1000 / Lcpsslider.Value); 231 | } 232 | 233 | private void Randomize_CheckedChanged(object sender, EventArgs e) 234 | { 235 | randomizer.Enabled = Randomize.Checked; 236 | } 237 | 238 | private void blatant_CheckedChanged(object sender, EventArgs e) 239 | { 240 | Lcpsslider.Maximum = blatant.Checked ? 102 : 22; 241 | } 242 | 243 | private void breakblock_CheckedChanged(object sender, EventArgs e) 244 | { 245 | if (breakblock.Checked) 246 | { 247 | blocks = true; 248 | mode.Checked = false; 249 | } 250 | else 251 | { 252 | blocks = false; 253 | } 254 | } 255 | 256 | private void mode_CheckedChanged(object sender, EventArgs e) 257 | { 258 | if (mode.Checked) 259 | { 260 | vermode = true; 261 | breakblock.Checked = false; 262 | } 263 | else 264 | { 265 | vermode = false; 266 | } 267 | } 268 | 269 | private void lmblock_CheckedChanged(object sender, EventArgs e) 270 | { 271 | leftlock = lmblock.Checked; 272 | } 273 | 274 | private void blatantr_CheckedChanged(object sender, EventArgs e) 275 | { 276 | Rcpsslider.Maximum = blatantr.Checked ? 52 : 22; 277 | } 278 | private void statusleft_CheckedChanged(object sender, EventArgs e) 279 | { 280 | CancelTokenLeft = new CancellationTokenSource(); 281 | if (statusleft.Checked) 282 | { 283 | new Task((Action) => Clickvent(), CancelTokenLeft.Token, TaskCreationOptions.LongRunning).Start(); 284 | } 285 | else 286 | { 287 | CancelTokenLeft.Cancel(); 288 | } 289 | } 290 | private void statusright_CheckedChanged(object sender, EventArgs e) 291 | { 292 | CancelTokenRight = new CancellationTokenSource(); 293 | if (statusright.Checked) 294 | { 295 | new Task((Action) => RightClickvent(), CancelTokenRight.Token, TaskCreationOptions.LongRunning).Start(); 296 | } 297 | else 298 | { 299 | CancelTokenRight.Cancel(); 300 | } 301 | } 302 | 303 | private void rmblock_CheckedChanged(object sender, EventArgs e) 304 | { 305 | rightlock = rmblock.Checked; 306 | } 307 | 308 | private void food_CheckedChanged(object sender, EventArgs e) 309 | { 310 | foodorrod = food.Checked; 311 | } 312 | 313 | private void Rcpsslider_ValueChanged(object sender, EventArgs e) 314 | { 315 | Rcps.Text = "Average Right CPS : " + (Rcpsslider.Value - 2).ToString(); 316 | _cps = (double)Rcpsslider.Value; 317 | rightcps = (double)(1000 / Rcpsslider.Value); 318 | } 319 | 320 | #endregion 321 | 322 | #region Key Bind Selector 323 | private void Bind_Click(object sender, EventArgs e) 324 | { 325 | Bind.Text = "[ ... ]"; 326 | Bind.Checked = true; 327 | } 328 | 329 | private void rbind_Click(object sender, EventArgs e) 330 | { 331 | rbind.Text = "[ ... ]"; 332 | rbind.Checked = true; 333 | } 334 | 335 | private void Bind_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e) 336 | { 337 | if (Bind.Checked) 338 | { 339 | if (e.KeyCode == Keys.Escape) 340 | { 341 | Bind.Text = "[ Bind ]"; 342 | } 343 | else 344 | { 345 | Bind.Text = $"[ {e.KeyCode} ]"; 346 | Calls.UnregisterHotKey(Handle, 1); 347 | Keys key = e.KeyCode; 348 | Calls.RegisterHotKey(Handle, 1, 0, (uint)key); 349 | } 350 | Bind.Checked = false; 351 | } 352 | else 353 | { 354 | return; 355 | } 356 | } 357 | 358 | private void rbind_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e) 359 | { 360 | if (rbind.Checked) 361 | { 362 | if (e.KeyCode == Keys.Escape) 363 | { 364 | rbind.Text = "[ Bind ]"; 365 | } 366 | else 367 | { 368 | rbind.Text = $"[ {e.KeyCode} ]"; 369 | Calls.UnregisterHotKey(Handle, 2); 370 | Keys keyright = e.KeyCode; 371 | Calls.RegisterHotKey(Handle, 2, 0, (uint)keyright); 372 | } 373 | rbind.Checked = false; 374 | } 375 | else 376 | { 377 | return; 378 | } 379 | } 380 | #endregion 381 | } 382 | } 383 | -------------------------------------------------------------------------------- /Swift/Config.cs: -------------------------------------------------------------------------------- 1 | namespace Swift 2 | { 3 | internal class Config 4 | { 5 | public Config(uint boostmax, uint dropmax, uint boostmin, uint dropmin, uint chanceboost, uint randomseed) 6 | { 7 | BoostMax = boostmax; 8 | DropMax = dropmax; 9 | BoostMin = boostmin; 10 | DropMin = dropmin; 11 | ChanceBoost = chanceboost; 12 | RandomSeed = randomseed; 13 | } 14 | 15 | public uint BoostMax { get; set; } 16 | 17 | public uint DropMax { get; set; } 18 | 19 | public uint BoostMin { get; set; } 20 | 21 | public uint DropMin { get; set; } 22 | 23 | public uint ChanceBoost { get; set; } 24 | 25 | public uint RandomSeed { get; set; } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /Swift/ConfigDialog.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Swift 2 | { 3 | partial class ConfigDialog 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.CFGNAMETEXTBOX = new Guna.UI2.WinForms.Guna2TextBox(); 32 | this.IDTEXTBOX = new Guna.UI2.WinForms.Guna2TextBox(); 33 | this.SuspendLayout(); 34 | // 35 | // CFGNAMETEXTBOX 36 | // 37 | this.CFGNAMETEXTBOX.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(35)))), ((int)(((byte)(35)))), ((int)(((byte)(35))))); 38 | this.CFGNAMETEXTBOX.Cursor = System.Windows.Forms.Cursors.IBeam; 39 | this.CFGNAMETEXTBOX.DefaultText = ""; 40 | this.CFGNAMETEXTBOX.DisabledState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(208)))), ((int)(((byte)(208))))); 41 | this.CFGNAMETEXTBOX.DisabledState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(226)))), ((int)(((byte)(226)))), ((int)(((byte)(226))))); 42 | this.CFGNAMETEXTBOX.DisabledState.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(138)))), ((int)(((byte)(138)))), ((int)(((byte)(138))))); 43 | this.CFGNAMETEXTBOX.DisabledState.Parent = this.CFGNAMETEXTBOX; 44 | this.CFGNAMETEXTBOX.DisabledState.PlaceholderForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(138)))), ((int)(((byte)(138)))), ((int)(((byte)(138))))); 45 | this.CFGNAMETEXTBOX.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(15)))), ((int)(((byte)(15)))), ((int)(((byte)(15))))); 46 | this.CFGNAMETEXTBOX.FocusedState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(148)))), ((int)(((byte)(255))))); 47 | this.CFGNAMETEXTBOX.FocusedState.Parent = this.CFGNAMETEXTBOX; 48 | this.CFGNAMETEXTBOX.HoverState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(148)))), ((int)(((byte)(255))))); 49 | this.CFGNAMETEXTBOX.HoverState.Parent = this.CFGNAMETEXTBOX; 50 | this.CFGNAMETEXTBOX.Location = new System.Drawing.Point(12, 55); 51 | this.CFGNAMETEXTBOX.Name = "CFGNAMETEXTBOX"; 52 | this.CFGNAMETEXTBOX.PasswordChar = '\0'; 53 | this.CFGNAMETEXTBOX.PlaceholderText = "Config Name"; 54 | this.CFGNAMETEXTBOX.SelectedText = ""; 55 | this.CFGNAMETEXTBOX.ShadowDecoration.Parent = this.CFGNAMETEXTBOX; 56 | this.CFGNAMETEXTBOX.Size = new System.Drawing.Size(410, 37); 57 | this.CFGNAMETEXTBOX.Style = Guna.UI2.WinForms.Enums.TextBoxStyle.Material; 58 | this.CFGNAMETEXTBOX.TabIndex = 1; 59 | this.CFGNAMETEXTBOX.TextChanged += new System.EventHandler(this.CFGNAMETEXTBOX_TextChanged); 60 | // 61 | // IDTEXTBOX 62 | // 63 | this.IDTEXTBOX.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(35)))), ((int)(((byte)(35)))), ((int)(((byte)(35))))); 64 | this.IDTEXTBOX.Cursor = System.Windows.Forms.Cursors.IBeam; 65 | this.IDTEXTBOX.DefaultText = ""; 66 | this.IDTEXTBOX.DisabledState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(208)))), ((int)(((byte)(208))))); 67 | this.IDTEXTBOX.DisabledState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(226)))), ((int)(((byte)(226)))), ((int)(((byte)(226))))); 68 | this.IDTEXTBOX.DisabledState.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(138)))), ((int)(((byte)(138)))), ((int)(((byte)(138))))); 69 | this.IDTEXTBOX.DisabledState.Parent = this.IDTEXTBOX; 70 | this.IDTEXTBOX.DisabledState.PlaceholderForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(138)))), ((int)(((byte)(138)))), ((int)(((byte)(138))))); 71 | this.IDTEXTBOX.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(15)))), ((int)(((byte)(15)))), ((int)(((byte)(15))))); 72 | this.IDTEXTBOX.FocusedState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(148)))), ((int)(((byte)(255))))); 73 | this.IDTEXTBOX.FocusedState.Parent = this.IDTEXTBOX; 74 | this.IDTEXTBOX.HoverState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(148)))), ((int)(((byte)(255))))); 75 | this.IDTEXTBOX.HoverState.Parent = this.IDTEXTBOX; 76 | this.IDTEXTBOX.Location = new System.Drawing.Point(12, 12); 77 | this.IDTEXTBOX.Name = "IDTEXTBOX"; 78 | this.IDTEXTBOX.PasswordChar = '\0'; 79 | this.IDTEXTBOX.PlaceholderText = "Discord ID"; 80 | this.IDTEXTBOX.SelectedText = ""; 81 | this.IDTEXTBOX.ShadowDecoration.Parent = this.IDTEXTBOX; 82 | this.IDTEXTBOX.Size = new System.Drawing.Size(410, 37); 83 | this.IDTEXTBOX.Style = Guna.UI2.WinForms.Enums.TextBoxStyle.Material; 84 | this.IDTEXTBOX.TabIndex = 2; 85 | this.IDTEXTBOX.TextChanged += new System.EventHandler(this.IDTEXTBOX_TextChanged); 86 | // 87 | // ConfigDialog 88 | // 89 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 90 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 91 | this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(10)))), ((int)(((byte)(10))))); 92 | this.ClientSize = new System.Drawing.Size(431, 100); 93 | this.Controls.Add(this.IDTEXTBOX); 94 | this.Controls.Add(this.CFGNAMETEXTBOX); 95 | this.ForeColor = System.Drawing.SystemColors.Control; 96 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; 97 | this.MaximizeBox = false; 98 | this.MinimizeBox = false; 99 | this.Name = "ConfigDialog"; 100 | this.ShowIcon = false; 101 | this.Text = "Config Uploader"; 102 | this.ResumeLayout(false); 103 | 104 | } 105 | 106 | #endregion 107 | private Guna.UI2.WinForms.Guna2TextBox CFGNAMETEXTBOX; 108 | private Guna.UI2.WinForms.Guna2TextBox IDTEXTBOX; 109 | } 110 | } -------------------------------------------------------------------------------- /Swift/ConfigDialog.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Windows.Forms; 3 | 4 | namespace Swift 5 | { 6 | public partial class ConfigDialog : Form 7 | { 8 | #region Constructor .ctor 9 | public ConfigDialog() 10 | { 11 | InitializeComponent(); 12 | } 13 | #endregion 14 | 15 | #region Properties 16 | public string ConfigURL { get; private set; } 17 | #endregion 18 | 19 | #region Methods 20 | private void IDTEXTBOX_TextChanged(object sender, EventArgs e) 21 | { 22 | if (ulong.TryParse(IDTEXTBOX.Text, out ulong id)) 23 | { 24 | ID = id; 25 | } 26 | else 27 | { 28 | return; 29 | } 30 | } 31 | 32 | private void CFGNAMETEXTBOX_TextChanged(object sender, EventArgs e) 33 | { 34 | 35 | ConfigName = CFGNAMETEXTBOX.Text; 36 | } 37 | 38 | public ulong ID; 39 | public string ConfigName; 40 | #endregion 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /Swift/ConfigDialog.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | -------------------------------------------------------------------------------- /Swift/Destructs.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Swift 2 | { 3 | partial class Destructs 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.components = new System.ComponentModel.Container(); 32 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Destructs)); 33 | this.guna2Panel1 = new Guna.UI2.WinForms.Guna2Panel(); 34 | this.guna2Button1 = new Guna.UI2.WinForms.Guna2Button(); 35 | this.destruct = new Guna.UI2.WinForms.Guna2Button(); 36 | this.Preset = new Guna.UI2.WinForms.Guna2Button(); 37 | this.Home = new Guna.UI2.WinForms.Guna2Button(); 38 | this.clicker = new Guna.UI2.WinForms.Guna2Button(); 39 | this.guna2Panel2 = new Guna.UI2.WinForms.Guna2Panel(); 40 | this.optholder = new Guna.UI2.WinForms.Guna2Panel(); 41 | this.temp = new Guna.UI2.WinForms.Guna2CheckBox(); 42 | this.Kill = new Guna.UI2.WinForms.Guna2Button(); 43 | this.flushd = new Guna.UI2.WinForms.Guna2CheckBox(); 44 | this.selfdel = new Guna.UI2.WinForms.Guna2CheckBox(); 45 | this.ClearPref = new Guna.UI2.WinForms.Guna2CheckBox(); 46 | this.usgl = new Guna.UI2.WinForms.Guna2CheckBox(); 47 | this.DC = new Guna.UI2.WinForms.Guna2DragControl(this.components); 48 | this.tt = new Guna.UI2.WinForms.Guna2HtmlToolTip(); 49 | this.animate = new System.Windows.Forms.Timer(this.components); 50 | this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components); 51 | this.guna2Panel1.SuspendLayout(); 52 | this.guna2Panel2.SuspendLayout(); 53 | this.optholder.SuspendLayout(); 54 | this.SuspendLayout(); 55 | // 56 | // guna2Panel1 57 | // 58 | this.guna2Panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17))))); 59 | this.guna2Panel1.Controls.Add(this.guna2Button1); 60 | this.guna2Panel1.Controls.Add(this.destruct); 61 | this.guna2Panel1.Controls.Add(this.Preset); 62 | this.guna2Panel1.Controls.Add(this.Home); 63 | this.guna2Panel1.Controls.Add(this.clicker); 64 | this.guna2Panel1.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30))))); 65 | this.guna2Panel1.CustomBorderThickness = new System.Windows.Forms.Padding(2); 66 | this.guna2Panel1.Dock = System.Windows.Forms.DockStyle.Top; 67 | this.guna2Panel1.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17))))); 68 | this.guna2Panel1.Location = new System.Drawing.Point(0, 0); 69 | this.guna2Panel1.Name = "guna2Panel1"; 70 | this.guna2Panel1.ShadowDecoration.Parent = this.guna2Panel1; 71 | this.guna2Panel1.Size = new System.Drawing.Size(550, 25); 72 | this.guna2Panel1.TabIndex = 0; 73 | // 74 | // guna2Button1 75 | // 76 | this.guna2Button1.Animated = true; 77 | this.guna2Button1.BorderColor = System.Drawing.Color.Empty; 78 | this.guna2Button1.CheckedState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 79 | this.guna2Button1.CheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 80 | this.guna2Button1.CheckedState.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 81 | this.guna2Button1.CheckedState.Parent = this.guna2Button1; 82 | this.guna2Button1.CustomImages.Parent = this.guna2Button1; 83 | this.guna2Button1.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17))))); 84 | this.guna2Button1.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 85 | this.guna2Button1.ForeColor = System.Drawing.Color.White; 86 | this.guna2Button1.HoverState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 87 | this.guna2Button1.HoverState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 88 | this.guna2Button1.HoverState.ForeColor = System.Drawing.Color.White; 89 | this.guna2Button1.HoverState.Parent = this.guna2Button1; 90 | this.guna2Button1.Location = new System.Drawing.Point(525, 2); 91 | this.guna2Button1.Margin = new System.Windows.Forms.Padding(5); 92 | this.guna2Button1.Name = "guna2Button1"; 93 | this.guna2Button1.ShadowDecoration.Parent = this.guna2Button1; 94 | this.guna2Button1.Size = new System.Drawing.Size(21, 21); 95 | this.guna2Button1.TabIndex = 30; 96 | this.guna2Button1.Text = "_"; 97 | this.guna2Button1.Click += new System.EventHandler(this.guna2Button1_Click); 98 | // 99 | // destruct 100 | // 101 | this.destruct.Animated = true; 102 | this.destruct.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17))))); 103 | this.destruct.ButtonMode = Guna.UI2.WinForms.Enums.ButtonMode.ToogleButton; 104 | this.destruct.Checked = true; 105 | this.destruct.CheckedState.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 106 | this.destruct.CheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 107 | this.destruct.CheckedState.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 108 | this.destruct.CheckedState.Parent = this.destruct; 109 | this.destruct.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30))))); 110 | this.destruct.CustomBorderThickness = new System.Windows.Forms.Padding(0, 0, 0, 2); 111 | this.destruct.CustomImages.Parent = this.destruct; 112 | this.destruct.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17))))); 113 | this.destruct.Font = new System.Drawing.Font("Segoe UI", 9F); 114 | this.destruct.ForeColor = System.Drawing.Color.White; 115 | this.destruct.HoverState.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 116 | this.destruct.HoverState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 117 | this.destruct.HoverState.Parent = this.destruct; 118 | this.destruct.Location = new System.Drawing.Point(242, 2); 119 | this.destruct.Name = "destruct"; 120 | this.destruct.ShadowDecoration.Parent = this.destruct; 121 | this.destruct.Size = new System.Drawing.Size(80, 23); 122 | this.destruct.TabIndex = 3; 123 | this.destruct.Text = "Destruct"; 124 | // 125 | // Preset 126 | // 127 | this.Preset.Animated = true; 128 | this.Preset.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17))))); 129 | this.Preset.ButtonMode = Guna.UI2.WinForms.Enums.ButtonMode.ToogleButton; 130 | this.Preset.CheckedState.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 131 | this.Preset.CheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 132 | this.Preset.CheckedState.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 133 | this.Preset.CheckedState.Parent = this.Preset; 134 | this.Preset.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30))))); 135 | this.Preset.CustomBorderThickness = new System.Windows.Forms.Padding(0, 0, 0, 2); 136 | this.Preset.CustomImages.Parent = this.Preset; 137 | this.Preset.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17))))); 138 | this.Preset.Font = new System.Drawing.Font("Segoe UI", 9F); 139 | this.Preset.ForeColor = System.Drawing.Color.White; 140 | this.Preset.HoverState.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 141 | this.Preset.HoverState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 142 | this.Preset.HoverState.Parent = this.Preset; 143 | this.Preset.Location = new System.Drawing.Point(162, 2); 144 | this.Preset.Name = "Preset"; 145 | this.Preset.ShadowDecoration.Parent = this.Preset; 146 | this.Preset.Size = new System.Drawing.Size(80, 23); 147 | this.Preset.TabIndex = 2; 148 | this.Preset.Text = "Customize"; 149 | this.Preset.Click += new System.EventHandler(this.Preset_Click); 150 | // 151 | // Home 152 | // 153 | this.Home.Animated = true; 154 | this.Home.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17))))); 155 | this.Home.ButtonMode = Guna.UI2.WinForms.Enums.ButtonMode.ToogleButton; 156 | this.Home.CheckedState.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 157 | this.Home.CheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 158 | this.Home.CheckedState.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 159 | this.Home.CheckedState.Parent = this.Home; 160 | this.Home.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30))))); 161 | this.Home.CustomBorderThickness = new System.Windows.Forms.Padding(0, 0, 0, 2); 162 | this.Home.CustomImages.Parent = this.Home; 163 | this.Home.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17))))); 164 | this.Home.Font = new System.Drawing.Font("Segoe UI", 9F); 165 | this.Home.ForeColor = System.Drawing.Color.White; 166 | this.Home.HoverState.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 167 | this.Home.HoverState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 168 | this.Home.HoverState.Parent = this.Home; 169 | this.Home.Location = new System.Drawing.Point(2, 2); 170 | this.Home.Name = "Home"; 171 | this.Home.ShadowDecoration.Parent = this.Home; 172 | this.Home.Size = new System.Drawing.Size(80, 23); 173 | this.Home.TabIndex = 1; 174 | this.Home.Text = "Home"; 175 | this.Home.Click += new System.EventHandler(this.Home_Click); 176 | // 177 | // clicker 178 | // 179 | this.clicker.Animated = true; 180 | this.clicker.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17))))); 181 | this.clicker.ButtonMode = Guna.UI2.WinForms.Enums.ButtonMode.ToogleButton; 182 | this.clicker.CheckedState.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 183 | this.clicker.CheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 184 | this.clicker.CheckedState.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 185 | this.clicker.CheckedState.Parent = this.clicker; 186 | this.clicker.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30))))); 187 | this.clicker.CustomBorderThickness = new System.Windows.Forms.Padding(0, 0, 0, 2); 188 | this.clicker.CustomImages.Parent = this.clicker; 189 | this.clicker.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17))))); 190 | this.clicker.Font = new System.Drawing.Font("Segoe UI", 9F); 191 | this.clicker.ForeColor = System.Drawing.Color.White; 192 | this.clicker.HoverState.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 193 | this.clicker.HoverState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 194 | this.clicker.HoverState.Parent = this.clicker; 195 | this.clicker.Location = new System.Drawing.Point(82, 2); 196 | this.clicker.Name = "clicker"; 197 | this.clicker.ShadowDecoration.Parent = this.clicker; 198 | this.clicker.Size = new System.Drawing.Size(80, 23); 199 | this.clicker.TabIndex = 0; 200 | this.clicker.Text = "Clicker"; 201 | this.clicker.Click += new System.EventHandler(this.clicker_Click); 202 | // 203 | // guna2Panel2 204 | // 205 | this.guna2Panel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(10)))), ((int)(((byte)(10))))); 206 | this.guna2Panel2.Controls.Add(this.optholder); 207 | this.guna2Panel2.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30))))); 208 | this.guna2Panel2.CustomBorderThickness = new System.Windows.Forms.Padding(2, 0, 2, 2); 209 | this.guna2Panel2.Dock = System.Windows.Forms.DockStyle.Fill; 210 | this.guna2Panel2.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(10)))), ((int)(((byte)(10))))); 211 | this.guna2Panel2.ForeColor = System.Drawing.SystemColors.Control; 212 | this.guna2Panel2.Location = new System.Drawing.Point(0, 25); 213 | this.guna2Panel2.Name = "guna2Panel2"; 214 | this.guna2Panel2.ShadowDecoration.Parent = this.guna2Panel2; 215 | this.guna2Panel2.Size = new System.Drawing.Size(550, 375); 216 | this.guna2Panel2.TabIndex = 1; 217 | // 218 | // optholder 219 | // 220 | this.optholder.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17))))); 221 | this.optholder.Controls.Add(this.temp); 222 | this.optholder.Controls.Add(this.Kill); 223 | this.optholder.Controls.Add(this.flushd); 224 | this.optholder.Controls.Add(this.selfdel); 225 | this.optholder.Controls.Add(this.ClearPref); 226 | this.optholder.Controls.Add(this.usgl); 227 | this.optholder.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30))))); 228 | this.optholder.CustomBorderThickness = new System.Windows.Forms.Padding(2); 229 | this.optholder.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17))))); 230 | this.optholder.Location = new System.Drawing.Point(19, 13); 231 | this.optholder.Margin = new System.Windows.Forms.Padding(10); 232 | this.optholder.Name = "optholder"; 233 | this.optholder.ShadowDecoration.Parent = this.optholder; 234 | this.optholder.Size = new System.Drawing.Size(512, 343); 235 | this.optholder.TabIndex = 13; 236 | // 237 | // temp 238 | // 239 | this.temp.Animated = true; 240 | this.temp.CheckedState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 241 | this.temp.CheckedState.BorderRadius = 3; 242 | this.temp.CheckedState.BorderThickness = 0; 243 | this.temp.CheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 244 | this.temp.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 245 | this.temp.Location = new System.Drawing.Point(10, 54); 246 | this.temp.Margin = new System.Windows.Forms.Padding(1); 247 | this.temp.Name = "temp"; 248 | this.temp.Size = new System.Drawing.Size(122, 20); 249 | this.temp.TabIndex = 8; 250 | this.temp.Text = "Clear Temp"; 251 | this.temp.UncheckedState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(5)))), ((int)(((byte)(5)))), ((int)(((byte)(5))))); 252 | this.temp.UncheckedState.BorderRadius = 1; 253 | this.temp.UncheckedState.BorderThickness = 0; 254 | this.temp.UncheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(5)))), ((int)(((byte)(5)))), ((int)(((byte)(5))))); 255 | this.temp.UseVisualStyleBackColor = true; 256 | this.temp.CheckedChanged += new System.EventHandler(this.temp_CheckedChanged); 257 | // 258 | // Kill 259 | // 260 | this.Kill.Animated = true; 261 | this.Kill.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30))))); 262 | this.Kill.BorderRadius = 12; 263 | this.Kill.BorderThickness = 2; 264 | this.Kill.CheckedState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 265 | this.Kill.CheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 266 | this.Kill.CheckedState.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 267 | this.Kill.CheckedState.Parent = this.Kill; 268 | this.Kill.CustomImages.Parent = this.Kill; 269 | this.Kill.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(15)))), ((int)(((byte)(15)))), ((int)(((byte)(15))))); 270 | this.Kill.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 271 | this.Kill.ForeColor = System.Drawing.Color.White; 272 | this.Kill.HoverState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 273 | this.Kill.HoverState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 274 | this.Kill.HoverState.ForeColor = System.Drawing.Color.White; 275 | this.Kill.HoverState.Parent = this.Kill; 276 | this.Kill.Location = new System.Drawing.Point(422, 303); 277 | this.Kill.Margin = new System.Windows.Forms.Padding(5); 278 | this.Kill.Name = "Kill"; 279 | this.Kill.ShadowDecoration.Parent = this.Kill; 280 | this.Kill.Size = new System.Drawing.Size(85, 35); 281 | this.Kill.TabIndex = 4; 282 | this.Kill.Text = "Destruct"; 283 | this.Kill.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; 284 | this.tt.SetToolTip(this.Kill, "CPS : 17 || Randomization : On || 1.8 Mode : Optimal || Break Blocks : Optimal ||" + 285 | " CPS Drop : Recommended But Optimal"); 286 | this.Kill.Click += new System.EventHandler(this.Kill_Click); 287 | // 288 | // flushd 289 | // 290 | this.flushd.Animated = true; 291 | this.flushd.CheckedState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 292 | this.flushd.CheckedState.BorderRadius = 3; 293 | this.flushd.CheckedState.BorderThickness = 0; 294 | this.flushd.CheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 295 | this.flushd.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 296 | this.flushd.Location = new System.Drawing.Point(10, 76); 297 | this.flushd.Margin = new System.Windows.Forms.Padding(1); 298 | this.flushd.Name = "flushd"; 299 | this.flushd.Size = new System.Drawing.Size(122, 20); 300 | this.flushd.TabIndex = 7; 301 | this.flushd.Text = "Flush DNS"; 302 | this.flushd.UncheckedState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(5)))), ((int)(((byte)(5)))), ((int)(((byte)(5))))); 303 | this.flushd.UncheckedState.BorderRadius = 1; 304 | this.flushd.UncheckedState.BorderThickness = 0; 305 | this.flushd.UncheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(5)))), ((int)(((byte)(5)))), ((int)(((byte)(5))))); 306 | this.flushd.UseVisualStyleBackColor = true; 307 | this.flushd.CheckedChanged += new System.EventHandler(this.flushd_CheckedChanged); 308 | // 309 | // selfdel 310 | // 311 | this.selfdel.Animated = true; 312 | this.selfdel.CheckedState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 313 | this.selfdel.CheckedState.BorderRadius = 3; 314 | this.selfdel.CheckedState.BorderThickness = 0; 315 | this.selfdel.CheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 316 | this.selfdel.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 317 | this.selfdel.Location = new System.Drawing.Point(10, 98); 318 | this.selfdel.Margin = new System.Windows.Forms.Padding(1); 319 | this.selfdel.Name = "selfdel"; 320 | this.selfdel.Size = new System.Drawing.Size(122, 20); 321 | this.selfdel.TabIndex = 6; 322 | this.selfdel.Text = "Self Delete"; 323 | this.selfdel.UncheckedState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(5)))), ((int)(((byte)(5)))), ((int)(((byte)(5))))); 324 | this.selfdel.UncheckedState.BorderRadius = 1; 325 | this.selfdel.UncheckedState.BorderThickness = 0; 326 | this.selfdel.UncheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(5)))), ((int)(((byte)(5)))), ((int)(((byte)(5))))); 327 | this.selfdel.UseVisualStyleBackColor = true; 328 | this.selfdel.CheckedChanged += new System.EventHandler(this.selfdel_CheckedChanged); 329 | // 330 | // ClearPref 331 | // 332 | this.ClearPref.Animated = true; 333 | this.ClearPref.CheckedState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 334 | this.ClearPref.CheckedState.BorderRadius = 3; 335 | this.ClearPref.CheckedState.BorderThickness = 0; 336 | this.ClearPref.CheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 337 | this.ClearPref.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 338 | this.ClearPref.Location = new System.Drawing.Point(10, 32); 339 | this.ClearPref.Margin = new System.Windows.Forms.Padding(1); 340 | this.ClearPref.Name = "ClearPref"; 341 | this.ClearPref.Size = new System.Drawing.Size(122, 20); 342 | this.ClearPref.TabIndex = 5; 343 | this.ClearPref.Text = "Clear Prefetch"; 344 | this.ClearPref.UncheckedState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(5)))), ((int)(((byte)(5)))), ((int)(((byte)(5))))); 345 | this.ClearPref.UncheckedState.BorderRadius = 1; 346 | this.ClearPref.UncheckedState.BorderThickness = 0; 347 | this.ClearPref.UncheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(5)))), ((int)(((byte)(5)))), ((int)(((byte)(5))))); 348 | this.ClearPref.UseVisualStyleBackColor = true; 349 | this.ClearPref.CheckedChanged += new System.EventHandler(this.ClearPref_CheckedChanged); 350 | // 351 | // usgl 352 | // 353 | this.usgl.Animated = true; 354 | this.usgl.Checked = true; 355 | this.usgl.CheckedState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 356 | this.usgl.CheckedState.BorderRadius = 3; 357 | this.usgl.CheckedState.BorderThickness = 0; 358 | this.usgl.CheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 359 | this.usgl.CheckState = System.Windows.Forms.CheckState.Checked; 360 | this.usgl.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 361 | this.usgl.Location = new System.Drawing.Point(10, 10); 362 | this.usgl.Margin = new System.Windows.Forms.Padding(10, 10, 10, 1); 363 | this.usgl.Name = "usgl"; 364 | this.usgl.Size = new System.Drawing.Size(153, 20); 365 | this.usgl.TabIndex = 4; 366 | this.usgl.Text = "Don\'t Make UsageLogs"; 367 | this.usgl.UncheckedState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(5)))), ((int)(((byte)(5)))), ((int)(((byte)(5))))); 368 | this.usgl.UncheckedState.BorderRadius = 1; 369 | this.usgl.UncheckedState.BorderThickness = 0; 370 | this.usgl.UncheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(5)))), ((int)(((byte)(5)))), ((int)(((byte)(5))))); 371 | this.usgl.UseVisualStyleBackColor = true; 372 | this.usgl.CheckedChanged += new System.EventHandler(this.usgl_CheckedChanged); 373 | // 374 | // DC 375 | // 376 | this.DC.TargetControl = this.guna2Panel1; 377 | // 378 | // tt 379 | // 380 | this.tt.AllowLinksHandling = true; 381 | this.tt.AutomaticDelay = 1000; 382 | this.tt.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(15)))), ((int)(((byte)(15)))), ((int)(((byte)(15))))); 383 | this.tt.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(35)))), ((int)(((byte)(35)))), ((int)(((byte)(35))))); 384 | this.tt.ForeColor = System.Drawing.SystemColors.Control; 385 | this.tt.MaximumSize = new System.Drawing.Size(0, 0); 386 | this.tt.TitleForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 387 | this.tt.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info; 388 | this.tt.ToolTipTitle = "Lol"; 389 | // 390 | // animate 391 | // 392 | this.animate.Interval = 1; 393 | this.animate.Tick += new System.EventHandler(this.animate_Tick); 394 | // 395 | // notifyIcon1 396 | // 397 | this.notifyIcon1.BalloonTipIcon = System.Windows.Forms.ToolTipIcon.Info; 398 | this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon"))); 399 | this.notifyIcon1.Text = "Swift"; 400 | this.notifyIcon1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseDoubleClick); 401 | // 402 | // Destructs 403 | // 404 | this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 11F); 405 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 406 | this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 407 | this.ClientSize = new System.Drawing.Size(550, 400); 408 | this.Controls.Add(this.guna2Panel2); 409 | this.Controls.Add(this.guna2Panel1); 410 | this.Font = new System.Drawing.Font("Lucida Console", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 411 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; 412 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); 413 | this.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3); 414 | this.Name = "Destructs"; 415 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; 416 | this.Text = "Menu"; 417 | this.Load += new System.EventHandler(this.Destructs_Load); 418 | this.guna2Panel1.ResumeLayout(false); 419 | this.guna2Panel2.ResumeLayout(false); 420 | this.optholder.ResumeLayout(false); 421 | this.ResumeLayout(false); 422 | 423 | } 424 | 425 | #endregion 426 | 427 | private Guna.UI2.WinForms.Guna2Panel guna2Panel1; 428 | private Guna.UI2.WinForms.Guna2Panel guna2Panel2; 429 | private Guna.UI2.WinForms.Guna2DragControl DC; 430 | private Guna.UI2.WinForms.Guna2HtmlToolTip tt; 431 | private Guna.UI2.WinForms.Guna2Button clicker; 432 | private System.Windows.Forms.Timer animate; 433 | private Guna.UI2.WinForms.Guna2Button Home; 434 | private Guna.UI2.WinForms.Guna2Button Preset; 435 | private Guna.UI2.WinForms.Guna2Button destruct; 436 | private Guna.UI2.WinForms.Guna2Button Kill; 437 | private Guna.UI2.WinForms.Guna2Panel optholder; 438 | private Guna.UI2.WinForms.Guna2CheckBox usgl; 439 | private Guna.UI2.WinForms.Guna2CheckBox ClearPref; 440 | private Guna.UI2.WinForms.Guna2CheckBox selfdel; 441 | private Guna.UI2.WinForms.Guna2CheckBox flushd; 442 | private Guna.UI2.WinForms.Guna2CheckBox temp; 443 | private Guna.UI2.WinForms.Guna2Button guna2Button1; 444 | private System.Windows.Forms.NotifyIcon notifyIcon1; 445 | } 446 | } 447 | 448 | -------------------------------------------------------------------------------- /Swift/Destructs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Diagnostics; 4 | using System.IO; 5 | using System.ServiceProcess; 6 | using System.Windows.Forms; 7 | using static Swift.Calls; 8 | 9 | namespace Swift 10 | { 11 | public partial class Destructs : Form 12 | { 13 | #region Properties 14 | public List preffiles = new List(); 15 | private bool delete; 16 | public uint dns; 17 | public List tempfiles = new List(); 18 | #endregion 19 | 20 | #region Constructor .ctor 21 | public Destructs() 22 | { 23 | InitializeComponent(); 24 | } 25 | #endregion 26 | 27 | #region GUI Controls 28 | private void Preset_Click(object sender, EventArgs e) 29 | { 30 | try { restartservice(); } catch { } 31 | Hide(); 32 | P.Location = Location; 33 | P.Opacity = 0.3; 34 | P.Show(); 35 | animate.Start(); 36 | } 37 | 38 | private void clicker_Click(object sender, EventArgs e) 39 | { 40 | try { restartservice(); } catch { } 41 | Hide(); 42 | C.Location = Location; 43 | C.Opacity = 0.3; 44 | C.Show(); 45 | animate.Start(); 46 | } 47 | 48 | private void Home_Click(object sender, EventArgs e) 49 | { 50 | try { restartservice(); } catch { } 51 | Hide(); 52 | H.Location = Location; 53 | H.Opacity = 0.3; 54 | H.Show(); 55 | animate.Start(); 56 | } 57 | 58 | private void animate_Tick(object sender, EventArgs e) 59 | { 60 | if (C.Visible == true) 61 | { 62 | C.Opacity += 0.05; 63 | clicker.Checked = false; 64 | destruct.Checked = true; 65 | if (C.Opacity >= 0.95) 66 | { 67 | animate.Stop(); 68 | } 69 | } 70 | else if (P.Visible == true) 71 | { 72 | P.Opacity += 0.05; 73 | Preset.Checked = false; 74 | destruct.Checked = true; 75 | if (P.Opacity >= 0.95) 76 | { 77 | animate.Stop(); 78 | } 79 | } 80 | else if (H.Visible) 81 | { 82 | H.Opacity += 0.05; 83 | Home.Checked = false; 84 | destruct.Checked = true; 85 | if (H.Opacity >= 0.95) 86 | { 87 | animate.Stop(); 88 | } 89 | } 90 | } 91 | 92 | 93 | private void Destructs_Load(object sender, EventArgs e) 94 | { 95 | } 96 | 97 | private void notifyIcon1_MouseDoubleClick(object sender, MouseEventArgs e) 98 | { 99 | Show(); 100 | WindowState = FormWindowState.Normal; 101 | notifyIcon1.Visible = false; 102 | } 103 | 104 | private void guna2Button1_Click(object sender, EventArgs e) 105 | { 106 | Hide(); 107 | notifyIcon1.Visible = true; 108 | } 109 | #endregion 110 | 111 | #region Destruct Methods 112 | private void usgl_CheckedChanged(object sender, EventArgs e) 113 | { 114 | usgl.Checked = true; 115 | } 116 | 117 | private void ClearPref_CheckedChanged(object sender, EventArgs e) 118 | { 119 | if (ClearPref.Checked) 120 | { 121 | string dir = Environment.GetFolderPath(Environment.SpecialFolder.Windows) + "\\Prefetch"; 122 | string[] files = Directory.GetFiles(dir); 123 | foreach (string file in files) 124 | { 125 | if (file.ToLower().Contains(AppDomain.CurrentDomain.FriendlyName.ToLower())) 126 | { 127 | preffiles.Add(file); 128 | } 129 | } 130 | } 131 | else 132 | { 133 | preffiles.Clear(); 134 | } 135 | } 136 | 137 | private void temp_CheckedChanged(object sender, EventArgs e) 138 | { 139 | if (temp.Checked) 140 | { 141 | string dir = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + "\\Temp"; 142 | string[] files = Directory.GetFiles(dir); 143 | foreach (string file in files) 144 | { 145 | tempfiles.Add(file); 146 | } 147 | } 148 | else 149 | { 150 | tempfiles.Clear(); 151 | } 152 | } 153 | 154 | private void flushd_CheckedChanged(object sender, EventArgs e) 155 | { 156 | dns = flushd.Checked ? 1 : (uint)0; 157 | } 158 | 159 | private void selfdel_CheckedChanged(object sender, EventArgs e) 160 | { 161 | delete = selfdel.Checked; 162 | } 163 | 164 | private void Kill_Click(object sender, EventArgs e) 165 | { 166 | if (new ServiceController("EventLog").Status == ServiceControllerStatus.Stopped) 167 | { 168 | 169 | foreach (string file in tempfiles) 170 | { 171 | try 172 | { 173 | File.Delete(file); 174 | } 175 | catch { } 176 | } 177 | foreach (string file in preffiles) 178 | { 179 | try 180 | { 181 | File.Delete(file); 182 | } 183 | catch { } 184 | } 185 | 186 | if (dns == 1) 187 | { 188 | DnsFlushResolverCache(); 189 | } 190 | if (delete) 191 | { 192 | Process.Start(new ProcessStartInfo() 193 | { 194 | Arguments = "/C Ping 192.168.1.1 -n 5 & Del \"" + Application.ExecutablePath + "\"", 195 | FileName = "cmd.exe", 196 | WindowStyle = ProcessWindowStyle.Hidden, 197 | CreateNoWindow = true 198 | }); 199 | } 200 | Close(); 201 | } 202 | 203 | } 204 | #endregion 205 | } 206 | } 207 | -------------------------------------------------------------------------------- /Swift/FodyWeavers.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /Swift/FodyWeavers.xsd: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks 13 | 14 | 15 | 16 | 17 | A list of assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks. 18 | 19 | 20 | 21 | 22 | A list of runtime assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks 23 | 24 | 25 | 26 | 27 | A list of runtime assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks. 28 | 29 | 30 | 31 | 32 | A list of unmanaged 32 bit assembly names to include, delimited with line breaks. 33 | 34 | 35 | 36 | 37 | A list of unmanaged 64 bit assembly names to include, delimited with line breaks. 38 | 39 | 40 | 41 | 42 | The order of preloaded assemblies, delimited with line breaks. 43 | 44 | 45 | 46 | 47 | 48 | This will copy embedded files to disk before loading them into memory. This is helpful for some scenarios that expected an assembly to be loaded from a physical file. 49 | 50 | 51 | 52 | 53 | Controls if .pdbs for reference assemblies are also embedded. 54 | 55 | 56 | 57 | 58 | Controls if runtime assemblies are also embedded. 59 | 60 | 61 | 62 | 63 | Controls whether the runtime assemblies are embedded with their full path or only with their assembly name. 64 | 65 | 66 | 67 | 68 | Embedded assemblies are compressed by default, and uncompressed when they are loaded. You can turn compression off with this option. 69 | 70 | 71 | 72 | 73 | As part of Costura, embedded assemblies are no longer included as part of the build. This cleanup can be turned off. 74 | 75 | 76 | 77 | 78 | Costura by default will load as part of the module initialization. This flag disables that behavior. Make sure you call CosturaUtility.Initialize() somewhere in your code. 79 | 80 | 81 | 82 | 83 | Costura will by default use assemblies with a name like 'resources.dll' as a satellite resource and prepend the output path. This flag disables that behavior. 84 | 85 | 86 | 87 | 88 | A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with | 89 | 90 | 91 | 92 | 93 | A list of assembly names to include from the default action of "embed all Copy Local references", delimited with |. 94 | 95 | 96 | 97 | 98 | A list of runtime assembly names to exclude from the default action of "embed all Copy Local references", delimited with | 99 | 100 | 101 | 102 | 103 | A list of runtime assembly names to include from the default action of "embed all Copy Local references", delimited with |. 104 | 105 | 106 | 107 | 108 | A list of unmanaged 32 bit assembly names to include, delimited with |. 109 | 110 | 111 | 112 | 113 | A list of unmanaged 64 bit assembly names to include, delimited with |. 114 | 115 | 116 | 117 | 118 | The order of preloaded assemblies, delimited with |. 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 'true' to run assembly verification (PEVerify) on the target assembly after all weavers have been executed. 127 | 128 | 129 | 130 | 131 | A comma-separated list of error codes that can be safely ignored in assembly verification. 132 | 133 | 134 | 135 | 136 | 'false' to turn off automatic generation of the XML Schema file. 137 | 138 | 139 | 140 | 141 | -------------------------------------------------------------------------------- /Swift/Menu.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Swift 2 | { 3 | partial class Menu 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.components = new System.ComponentModel.Container(); 32 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Menu)); 33 | this.guna2Panel1 = new Guna.UI2.WinForms.Guna2Panel(); 34 | this.guna2Button1 = new Guna.UI2.WinForms.Guna2Button(); 35 | this.destruct = new Guna.UI2.WinForms.Guna2Button(); 36 | this.Preset = new Guna.UI2.WinForms.Guna2Button(); 37 | this.Home = new Guna.UI2.WinForms.Guna2Button(); 38 | this.clicker = new Guna.UI2.WinForms.Guna2Button(); 39 | this.guna2Panel2 = new Guna.UI2.WinForms.Guna2Panel(); 40 | this.twitter = new Guna.UI2.WinForms.Guna2Button(); 41 | this.youtube = new Guna.UI2.WinForms.Guna2Button(); 42 | this.discord = new Guna.UI2.WinForms.Guna2Button(); 43 | this.guna2HtmlLabel6 = new System.Windows.Forms.Label(); 44 | this.guna2HtmlLabel5 = new System.Windows.Forms.Label(); 45 | this.guna2HtmlLabel4 = new System.Windows.Forms.Label(); 46 | this.guna2HtmlLabel3 = new System.Windows.Forms.Label(); 47 | this.guna2HtmlLabel2 = new System.Windows.Forms.Label(); 48 | this.guna2HtmlLabel1 = new System.Windows.Forms.Label(); 49 | this.DC = new Guna.UI2.WinForms.Guna2DragControl(this.components); 50 | this.tt = new Guna.UI2.WinForms.Guna2HtmlToolTip(); 51 | this.animate = new System.Windows.Forms.Timer(this.components); 52 | this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components); 53 | this.guna2Panel1.SuspendLayout(); 54 | this.guna2Panel2.SuspendLayout(); 55 | this.SuspendLayout(); 56 | // 57 | // guna2Panel1 58 | // 59 | this.guna2Panel1.Controls.Add(this.guna2Button1); 60 | this.guna2Panel1.Controls.Add(this.destruct); 61 | this.guna2Panel1.Controls.Add(this.Preset); 62 | this.guna2Panel1.Controls.Add(this.Home); 63 | this.guna2Panel1.Controls.Add(this.clicker); 64 | this.guna2Panel1.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30))))); 65 | this.guna2Panel1.CustomBorderThickness = new System.Windows.Forms.Padding(2); 66 | this.guna2Panel1.Dock = System.Windows.Forms.DockStyle.Top; 67 | this.guna2Panel1.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17))))); 68 | this.guna2Panel1.Location = new System.Drawing.Point(0, 0); 69 | this.guna2Panel1.Name = "guna2Panel1"; 70 | this.guna2Panel1.ShadowDecoration.Parent = this.guna2Panel1; 71 | this.guna2Panel1.Size = new System.Drawing.Size(550, 25); 72 | this.guna2Panel1.TabIndex = 0; 73 | // 74 | // guna2Button1 75 | // 76 | this.guna2Button1.Animated = true; 77 | this.guna2Button1.BorderColor = System.Drawing.Color.Empty; 78 | this.guna2Button1.CheckedState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 79 | this.guna2Button1.CheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 80 | this.guna2Button1.CheckedState.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 81 | this.guna2Button1.CheckedState.Parent = this.guna2Button1; 82 | this.guna2Button1.CustomImages.Parent = this.guna2Button1; 83 | this.guna2Button1.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17))))); 84 | this.guna2Button1.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 85 | this.guna2Button1.ForeColor = System.Drawing.Color.White; 86 | this.guna2Button1.HoverState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 87 | this.guna2Button1.HoverState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 88 | this.guna2Button1.HoverState.ForeColor = System.Drawing.Color.White; 89 | this.guna2Button1.HoverState.Parent = this.guna2Button1; 90 | this.guna2Button1.Location = new System.Drawing.Point(525, 2); 91 | this.guna2Button1.Margin = new System.Windows.Forms.Padding(5); 92 | this.guna2Button1.Name = "guna2Button1"; 93 | this.guna2Button1.ShadowDecoration.Parent = this.guna2Button1; 94 | this.guna2Button1.Size = new System.Drawing.Size(21, 21); 95 | this.guna2Button1.TabIndex = 30; 96 | this.guna2Button1.Text = "_"; 97 | this.guna2Button1.Click += new System.EventHandler(this.guna2Button1_Click); 98 | // 99 | // destruct 100 | // 101 | this.destruct.Animated = true; 102 | this.destruct.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17))))); 103 | this.destruct.ButtonMode = Guna.UI2.WinForms.Enums.ButtonMode.ToogleButton; 104 | this.destruct.CheckedState.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 105 | this.destruct.CheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 106 | this.destruct.CheckedState.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 107 | this.destruct.CheckedState.Parent = this.destruct; 108 | this.destruct.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30))))); 109 | this.destruct.CustomBorderThickness = new System.Windows.Forms.Padding(0, 0, 0, 2); 110 | this.destruct.CustomImages.Parent = this.destruct; 111 | this.destruct.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17))))); 112 | this.destruct.Font = new System.Drawing.Font("Segoe UI", 9F); 113 | this.destruct.ForeColor = System.Drawing.Color.White; 114 | this.destruct.HoverState.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 115 | this.destruct.HoverState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 116 | this.destruct.HoverState.Parent = this.destruct; 117 | this.destruct.Location = new System.Drawing.Point(242, 2); 118 | this.destruct.Name = "destruct"; 119 | this.destruct.ShadowDecoration.Parent = this.destruct; 120 | this.destruct.Size = new System.Drawing.Size(80, 23); 121 | this.destruct.TabIndex = 13; 122 | this.destruct.Text = "Destruct"; 123 | this.destruct.Click += new System.EventHandler(this.destruct_Click); 124 | // 125 | // Preset 126 | // 127 | this.Preset.Animated = true; 128 | this.Preset.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17))))); 129 | this.Preset.ButtonMode = Guna.UI2.WinForms.Enums.ButtonMode.ToogleButton; 130 | this.Preset.CheckedState.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 131 | this.Preset.CheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 132 | this.Preset.CheckedState.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 133 | this.Preset.CheckedState.Parent = this.Preset; 134 | this.Preset.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30))))); 135 | this.Preset.CustomBorderThickness = new System.Windows.Forms.Padding(0, 0, 0, 2); 136 | this.Preset.CustomImages.Parent = this.Preset; 137 | this.Preset.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17))))); 138 | this.Preset.Font = new System.Drawing.Font("Segoe UI", 9F); 139 | this.Preset.ForeColor = System.Drawing.Color.White; 140 | this.Preset.HoverState.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 141 | this.Preset.HoverState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 142 | this.Preset.HoverState.Parent = this.Preset; 143 | this.Preset.Location = new System.Drawing.Point(162, 2); 144 | this.Preset.Name = "Preset"; 145 | this.Preset.ShadowDecoration.Parent = this.Preset; 146 | this.Preset.Size = new System.Drawing.Size(80, 23); 147 | this.Preset.TabIndex = 2; 148 | this.Preset.Text = "Customize"; 149 | this.Preset.Click += new System.EventHandler(this.Presets_Click); 150 | // 151 | // Home 152 | // 153 | this.Home.Animated = true; 154 | this.Home.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17))))); 155 | this.Home.ButtonMode = Guna.UI2.WinForms.Enums.ButtonMode.ToogleButton; 156 | this.Home.Checked = true; 157 | this.Home.CheckedState.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 158 | this.Home.CheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 159 | this.Home.CheckedState.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 160 | this.Home.CheckedState.Parent = this.Home; 161 | this.Home.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30))))); 162 | this.Home.CustomBorderThickness = new System.Windows.Forms.Padding(0, 0, 0, 2); 163 | this.Home.CustomImages.Parent = this.Home; 164 | this.Home.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17))))); 165 | this.Home.Font = new System.Drawing.Font("Segoe UI", 9F); 166 | this.Home.ForeColor = System.Drawing.Color.White; 167 | this.Home.HoverState.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 168 | this.Home.HoverState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 169 | this.Home.HoverState.Parent = this.Home; 170 | this.Home.Location = new System.Drawing.Point(2, 2); 171 | this.Home.Name = "Home"; 172 | this.Home.ShadowDecoration.Parent = this.Home; 173 | this.Home.Size = new System.Drawing.Size(80, 23); 174 | this.Home.TabIndex = 1; 175 | this.Home.Text = "Home"; 176 | this.Home.Click += new System.EventHandler(this.Home_Click); 177 | // 178 | // clicker 179 | // 180 | this.clicker.Animated = true; 181 | this.clicker.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17))))); 182 | this.clicker.ButtonMode = Guna.UI2.WinForms.Enums.ButtonMode.ToogleButton; 183 | this.clicker.CheckedState.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 184 | this.clicker.CheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 185 | this.clicker.CheckedState.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 186 | this.clicker.CheckedState.Parent = this.clicker; 187 | this.clicker.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30))))); 188 | this.clicker.CustomBorderThickness = new System.Windows.Forms.Padding(0, 0, 0, 2); 189 | this.clicker.CustomImages.Parent = this.clicker; 190 | this.clicker.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17))))); 191 | this.clicker.Font = new System.Drawing.Font("Segoe UI", 9F); 192 | this.clicker.ForeColor = System.Drawing.Color.White; 193 | this.clicker.HoverState.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 194 | this.clicker.HoverState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 195 | this.clicker.HoverState.Parent = this.clicker; 196 | this.clicker.Location = new System.Drawing.Point(82, 2); 197 | this.clicker.Name = "clicker"; 198 | this.clicker.ShadowDecoration.Parent = this.clicker; 199 | this.clicker.Size = new System.Drawing.Size(80, 23); 200 | this.clicker.TabIndex = 0; 201 | this.clicker.Text = "Clicker"; 202 | this.clicker.Click += new System.EventHandler(this.clicker_Click); 203 | // 204 | // guna2Panel2 205 | // 206 | this.guna2Panel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(10)))), ((int)(((byte)(10))))); 207 | this.guna2Panel2.Controls.Add(this.twitter); 208 | this.guna2Panel2.Controls.Add(this.youtube); 209 | this.guna2Panel2.Controls.Add(this.discord); 210 | this.guna2Panel2.Controls.Add(this.guna2HtmlLabel6); 211 | this.guna2Panel2.Controls.Add(this.guna2HtmlLabel5); 212 | this.guna2Panel2.Controls.Add(this.guna2HtmlLabel4); 213 | this.guna2Panel2.Controls.Add(this.guna2HtmlLabel3); 214 | this.guna2Panel2.Controls.Add(this.guna2HtmlLabel2); 215 | this.guna2Panel2.Controls.Add(this.guna2HtmlLabel1); 216 | this.guna2Panel2.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30))))); 217 | this.guna2Panel2.CustomBorderThickness = new System.Windows.Forms.Padding(2, 0, 2, 2); 218 | this.guna2Panel2.Dock = System.Windows.Forms.DockStyle.Fill; 219 | this.guna2Panel2.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(10)))), ((int)(((byte)(10))))); 220 | this.guna2Panel2.ForeColor = System.Drawing.SystemColors.Control; 221 | this.guna2Panel2.Location = new System.Drawing.Point(0, 25); 222 | this.guna2Panel2.Name = "guna2Panel2"; 223 | this.guna2Panel2.ShadowDecoration.Parent = this.guna2Panel2; 224 | this.guna2Panel2.Size = new System.Drawing.Size(550, 375); 225 | this.guna2Panel2.TabIndex = 1; 226 | this.guna2Panel2.Paint += new System.Windows.Forms.PaintEventHandler(this.guna2Panel2_Paint); 227 | // 228 | // twitter 229 | // 230 | this.twitter.Animated = true; 231 | this.twitter.BorderColor = System.Drawing.Color.Transparent; 232 | this.twitter.CheckedState.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 233 | this.twitter.CheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 234 | this.twitter.CheckedState.Parent = this.twitter; 235 | this.twitter.CustomBorderThickness = new System.Windows.Forms.Padding(0, 0, 0, 1); 236 | this.twitter.CustomImages.Parent = this.twitter; 237 | this.twitter.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 238 | this.twitter.Font = new System.Drawing.Font("Segoe UI", 9F); 239 | this.twitter.ForeColor = System.Drawing.Color.White; 240 | this.twitter.HoverState.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 241 | this.twitter.HoverState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 242 | this.twitter.HoverState.Parent = this.twitter; 243 | this.twitter.Image = global::Swift.Properties.Resources.icons8_twitter_22; 244 | this.twitter.Location = new System.Drawing.Point(79, 195); 245 | this.twitter.Name = "twitter"; 246 | this.twitter.PressedDepth = 0; 247 | this.twitter.ShadowDecoration.Parent = this.twitter; 248 | this.twitter.Size = new System.Drawing.Size(22, 22); 249 | this.twitter.TabIndex = 9; 250 | this.twitter.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; 251 | this.twitter.DoubleClick += new System.EventHandler(this.twitter_DoubleClick); 252 | this.twitter.MouseHover += new System.EventHandler(this.twitter_MouseHover); 253 | // 254 | // youtube 255 | // 256 | this.youtube.Animated = true; 257 | this.youtube.BorderColor = System.Drawing.Color.Transparent; 258 | this.youtube.CheckedState.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 259 | this.youtube.CheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 260 | this.youtube.CheckedState.Parent = this.youtube; 261 | this.youtube.CustomBorderThickness = new System.Windows.Forms.Padding(0, 0, 0, 1); 262 | this.youtube.CustomImages.Parent = this.youtube; 263 | this.youtube.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 264 | this.youtube.Font = new System.Drawing.Font("Segoe UI", 9F); 265 | this.youtube.ForeColor = System.Drawing.Color.White; 266 | this.youtube.HoverState.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 267 | this.youtube.HoverState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 268 | this.youtube.HoverState.Parent = this.youtube; 269 | this.youtube.Image = global::Swift.Properties.Resources.icons8_youtube_22; 270 | this.youtube.Location = new System.Drawing.Point(107, 195); 271 | this.youtube.Name = "youtube"; 272 | this.youtube.PressedDepth = 0; 273 | this.youtube.ShadowDecoration.Parent = this.youtube; 274 | this.youtube.Size = new System.Drawing.Size(22, 22); 275 | this.youtube.TabIndex = 8; 276 | this.youtube.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; 277 | this.youtube.DoubleClick += new System.EventHandler(this.youtube_DoubleClick); 278 | this.youtube.MouseHover += new System.EventHandler(this.youtube_MouseHover); 279 | // 280 | // discord 281 | // 282 | this.discord.Animated = true; 283 | this.discord.BorderColor = System.Drawing.Color.Transparent; 284 | this.discord.CheckedState.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 285 | this.discord.CheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 286 | this.discord.CheckedState.Parent = this.discord; 287 | this.discord.CustomBorderThickness = new System.Windows.Forms.Padding(0, 0, 0, 1); 288 | this.discord.CustomImages.Parent = this.discord; 289 | this.discord.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 290 | this.discord.Font = new System.Drawing.Font("Segoe UI", 9F); 291 | this.discord.ForeColor = System.Drawing.Color.White; 292 | this.discord.HoverState.CustomBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 293 | this.discord.HoverState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 294 | this.discord.HoverState.Parent = this.discord; 295 | this.discord.Image = global::Swift.Properties.Resources.icons8_discord_new_32; 296 | this.discord.Location = new System.Drawing.Point(51, 195); 297 | this.discord.Name = "discord"; 298 | this.discord.PressedDepth = 0; 299 | this.discord.ShadowDecoration.Parent = this.discord; 300 | this.discord.Size = new System.Drawing.Size(22, 22); 301 | this.discord.TabIndex = 6; 302 | this.discord.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; 303 | this.discord.Click += new System.EventHandler(this.discord_Click); 304 | this.discord.DoubleClick += new System.EventHandler(this.discord_DoubleClick); 305 | this.discord.MouseHover += new System.EventHandler(this.discord_MouseHover); 306 | // 307 | // guna2HtmlLabel6 308 | // 309 | this.guna2HtmlLabel6.BackColor = System.Drawing.Color.Transparent; 310 | this.guna2HtmlLabel6.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 311 | this.guna2HtmlLabel6.ForeColor = System.Drawing.SystemColors.Control; 312 | this.guna2HtmlLabel6.Location = new System.Drawing.Point(12, 195); 313 | this.guna2HtmlLabel6.Margin = new System.Windows.Forms.Padding(0); 314 | this.guna2HtmlLabel6.Name = "guna2HtmlLabel6"; 315 | this.guna2HtmlLabel6.Size = new System.Drawing.Size(36, 22); 316 | this.guna2HtmlLabel6.TabIndex = 5; 317 | this.guna2HtmlLabel6.Text = "Info : "; 318 | // 319 | // guna2HtmlLabel5 320 | // 321 | this.guna2HtmlLabel5.BackColor = System.Drawing.Color.Transparent; 322 | this.guna2HtmlLabel5.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 323 | this.guna2HtmlLabel5.ForeColor = System.Drawing.SystemColors.Control; 324 | this.guna2HtmlLabel5.Location = new System.Drawing.Point(12, 173); 325 | this.guna2HtmlLabel5.Margin = new System.Windows.Forms.Padding(0); 326 | this.guna2HtmlLabel5.Name = "guna2HtmlLabel5"; 327 | this.guna2HtmlLabel5.Size = new System.Drawing.Size(117, 22); 328 | this.guna2HtmlLabel5.TabIndex = 4; 329 | this.guna2HtmlLabel5.Text = "Version : 0.1"; 330 | // 331 | // guna2HtmlLabel4 332 | // 333 | this.guna2HtmlLabel4.BackColor = System.Drawing.Color.Transparent; 334 | this.guna2HtmlLabel4.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 335 | this.guna2HtmlLabel4.ForeColor = System.Drawing.SystemColors.Control; 336 | this.guna2HtmlLabel4.Location = new System.Drawing.Point(12, 151); 337 | this.guna2HtmlLabel4.Margin = new System.Windows.Forms.Padding(0); 338 | this.guna2HtmlLabel4.Name = "guna2HtmlLabel4"; 339 | this.guna2HtmlLabel4.Size = new System.Drawing.Size(117, 22); 340 | this.guna2HtmlLabel4.TabIndex = 3; 341 | this.guna2HtmlLabel4.Text = "Build N° : 1"; 342 | // 343 | // guna2HtmlLabel3 344 | // 345 | this.guna2HtmlLabel3.BackColor = System.Drawing.Color.Transparent; 346 | this.guna2HtmlLabel3.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 347 | this.guna2HtmlLabel3.ForeColor = System.Drawing.SystemColors.Control; 348 | this.guna2HtmlLabel3.Location = new System.Drawing.Point(12, 129); 349 | this.guna2HtmlLabel3.Margin = new System.Windows.Forms.Padding(0); 350 | this.guna2HtmlLabel3.Name = "guna2HtmlLabel3"; 351 | this.guna2HtmlLabel3.Size = new System.Drawing.Size(117, 22); 352 | this.guna2HtmlLabel3.TabIndex = 2; 353 | this.guna2HtmlLabel3.Text = "Inspired By Bolt."; 354 | // 355 | // guna2HtmlLabel2 356 | // 357 | this.guna2HtmlLabel2.BackColor = System.Drawing.Color.Transparent; 358 | this.guna2HtmlLabel2.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 359 | this.guna2HtmlLabel2.ForeColor = System.Drawing.SystemColors.Control; 360 | this.guna2HtmlLabel2.Location = new System.Drawing.Point(12, 105); 361 | this.guna2HtmlLabel2.Margin = new System.Windows.Forms.Padding(0); 362 | this.guna2HtmlLabel2.Name = "guna2HtmlLabel2"; 363 | this.guna2HtmlLabel2.Size = new System.Drawing.Size(189, 23); 364 | this.guna2HtmlLabel2.TabIndex = 1; 365 | this.guna2HtmlLabel2.Text = "★★ By Pickleft#1853 ★★"; 366 | // 367 | // guna2HtmlLabel1 368 | // 369 | this.guna2HtmlLabel1.BackColor = System.Drawing.Color.Transparent; 370 | this.guna2HtmlLabel1.Font = new System.Drawing.Font("Segoe UI", 48F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 371 | this.guna2HtmlLabel1.ForeColor = System.Drawing.SystemColors.Control; 372 | this.guna2HtmlLabel1.Location = new System.Drawing.Point(12, 6); 373 | this.guna2HtmlLabel1.Name = "guna2HtmlLabel1"; 374 | this.guna2HtmlLabel1.Size = new System.Drawing.Size(230, 88); 375 | this.guna2HtmlLabel1.TabIndex = 0; 376 | this.guna2HtmlLabel1.Text = "Swift.\r\n"; 377 | // 378 | // DC 379 | // 380 | this.DC.TargetControl = this.guna2Panel1; 381 | // 382 | // tt 383 | // 384 | this.tt.AllowLinksHandling = true; 385 | this.tt.AutomaticDelay = 1000; 386 | this.tt.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(15)))), ((int)(((byte)(15)))), ((int)(((byte)(15))))); 387 | this.tt.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(35)))), ((int)(((byte)(35)))), ((int)(((byte)(35))))); 388 | this.tt.ForeColor = System.Drawing.SystemColors.Control; 389 | this.tt.MaximumSize = new System.Drawing.Size(0, 0); 390 | this.tt.TitleForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(27)))), ((int)(((byte)(45))))); 391 | this.tt.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info; 392 | this.tt.ToolTipTitle = "Lol"; 393 | // 394 | // animate 395 | // 396 | this.animate.Interval = 1; 397 | this.animate.Tick += new System.EventHandler(this.animate_Tick); 398 | // 399 | // notifyIcon1 400 | // 401 | this.notifyIcon1.BalloonTipIcon = System.Windows.Forms.ToolTipIcon.Info; 402 | this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon"))); 403 | this.notifyIcon1.Text = "Swift"; 404 | this.notifyIcon1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseDoubleClick); 405 | // 406 | // Menu 407 | // 408 | this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 11F); 409 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 410 | this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(8)))), ((int)(((byte)(8))))); 411 | this.ClientSize = new System.Drawing.Size(550, 400); 412 | this.Controls.Add(this.guna2Panel2); 413 | this.Controls.Add(this.guna2Panel1); 414 | this.Font = new System.Drawing.Font("Lucida Console", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 415 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; 416 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); 417 | this.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3); 418 | this.Name = "Menu"; 419 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; 420 | this.Text = "Menu"; 421 | this.Load += new System.EventHandler(this.Menu_Load); 422 | this.guna2Panel1.ResumeLayout(false); 423 | this.guna2Panel2.ResumeLayout(false); 424 | this.ResumeLayout(false); 425 | 426 | } 427 | 428 | #endregion 429 | 430 | private Guna.UI2.WinForms.Guna2Panel guna2Panel1; 431 | private Guna.UI2.WinForms.Guna2Panel guna2Panel2; 432 | private System.Windows.Forms.Label guna2HtmlLabel2; 433 | private System.Windows.Forms.Label guna2HtmlLabel1; 434 | private System.Windows.Forms.Label guna2HtmlLabel3; 435 | private Guna.UI2.WinForms.Guna2Button discord; 436 | private System.Windows.Forms.Label guna2HtmlLabel6; 437 | private System.Windows.Forms.Label guna2HtmlLabel5; 438 | private System.Windows.Forms.Label guna2HtmlLabel4; 439 | private Guna.UI2.WinForms.Guna2Button youtube; 440 | private Guna.UI2.WinForms.Guna2Button twitter; 441 | private Guna.UI2.WinForms.Guna2DragControl DC; 442 | private Guna.UI2.WinForms.Guna2HtmlToolTip tt; 443 | private Guna.UI2.WinForms.Guna2Button clicker; 444 | private System.Windows.Forms.Timer animate; 445 | private Guna.UI2.WinForms.Guna2Button Home; 446 | private Guna.UI2.WinForms.Guna2Button Preset; 447 | private Guna.UI2.WinForms.Guna2Button destruct; 448 | private Guna.UI2.WinForms.Guna2Button guna2Button1; 449 | private System.Windows.Forms.NotifyIcon notifyIcon1; 450 | } 451 | } 452 | 453 | -------------------------------------------------------------------------------- /Swift/Menu.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Diagnostics; 3 | using System.Drawing; 4 | using System.Reflection; 5 | using System.Threading.Tasks; 6 | using System.Windows.Forms; 7 | using static Swift.Calls; 8 | 9 | namespace Swift 10 | { 11 | public partial class Menu : Form 12 | { 13 | #region Constructor .ctor 14 | public Menu() 15 | { 16 | InitializeComponent(); 17 | guna2HtmlLabel4.Text = "Build N° : " + Assembly.GetExecutingAssembly().GetName().Version.Build; 18 | guna2HtmlLabel5.Text = "Version : " + Process.GetCurrentProcess().MainModule.FileVersionInfo.FileVersion; 19 | Opacity = 0.95; 20 | } 21 | #endregion 22 | 23 | #region GUI & Socials Controls 24 | private void discord_DoubleClick(object sender, EventArgs e) 25 | { 26 | Process.Start("https://discord.gg/vTECNKcydU"); 27 | } 28 | 29 | private void twitter_DoubleClick(object sender, EventArgs e) 30 | { 31 | Process.Start("https://Twitter.com/Pickleft"); 32 | 33 | } 34 | 35 | private void youtube_DoubleClick(object sender, EventArgs e) 36 | { 37 | Process.Start("https://Youtube.com/Pickleft"); 38 | } 39 | 40 | private void youtube_MouseHover(object sender, EventArgs e) 41 | { 42 | tt.ToolTipTitle = "Youtube"; 43 | tt.SetToolTip(youtube, "Double Click to open Channel Link : Youtube.com/Pickleft"); 44 | } 45 | 46 | private void discord_MouseHover(object sender, EventArgs e) 47 | { 48 | tt.ToolTipTitle = "Discord"; 49 | tt.SetToolTip(discord, "Double Click to open Invite Link : Discord.gg/enDgttPKAW"); 50 | } 51 | 52 | private void twitter_MouseHover(object sender, EventArgs e) 53 | { 54 | tt.ToolTipTitle = "Twitter"; 55 | tt.SetToolTip(twitter, "Double Click to open Twitter Profile Link : Twitter.com/Pickleft"); 56 | } 57 | 58 | private void clicker_Click(object sender, EventArgs e) 59 | { 60 | Hide(); 61 | C.Location = Location; 62 | C.Opacity = 0.3; 63 | C.Show(); 64 | animate.Start(); 65 | } 66 | 67 | private void animate_Tick(object sender, EventArgs e) 68 | { 69 | if (C.Visible == true) 70 | { 71 | C.Opacity += 0.05; 72 | clicker.Checked = false; 73 | Home.Checked = true; 74 | if (C.Opacity >= 0.95) 75 | { 76 | animate.Stop(); 77 | } 78 | } 79 | else if (P.Visible == true) 80 | { 81 | P.Opacity += 0.05; 82 | Preset.Checked = false; 83 | Home.Checked = true; 84 | if (P.Opacity >= 0.95) 85 | { 86 | animate.Stop(); 87 | } 88 | } 89 | else if (D.Visible) 90 | { 91 | D.Opacity += 0.05; 92 | destruct.Checked = false; 93 | Home.Checked = true; 94 | if (D.Opacity >= 0.95) 95 | { 96 | animate.Stop(); 97 | } 98 | } 99 | } 100 | 101 | private void Home_Click(object sender, EventArgs e) 102 | { 103 | clicker.Checked = false; 104 | Preset.Checked = false; 105 | Home.Checked = true; 106 | } 107 | 108 | private async void Menu_Load(object sender, EventArgs e) 109 | { 110 | guna2HtmlLabel2.ForeColor = Color.White; 111 | Refresh(); 112 | int i = 0; 113 | string title = "Swift."; 114 | string newtitle = ""; 115 | for (; ; ) 116 | { 117 | if (newtitle.Length >= title.Length) 118 | { 119 | guna2HtmlLabel1.ForeColor = current_color; 120 | await Task.Delay(400); 121 | guna2HtmlLabel1.Text = guna2HtmlLabel1.Text.Insert(0, "★"); 122 | await Task.Delay(400); 123 | newtitle = ""; 124 | i = 0; 125 | guna2HtmlLabel1.ForeColor = Color.White; 126 | guna2HtmlLabel2.ForeColor = current_color; 127 | await Task.Delay(400); 128 | guna2HtmlLabel2.ForeColor = Color.White; 129 | guna2HtmlLabel3.ForeColor = current_color; 130 | await Task.Delay(400); 131 | guna2HtmlLabel3.ForeColor = Color.White; 132 | guna2HtmlLabel4.ForeColor = current_color; 133 | await Task.Delay(400); 134 | guna2HtmlLabel4.ForeColor = Color.White; 135 | guna2HtmlLabel5.ForeColor = current_color; 136 | await Task.Delay(400); 137 | guna2HtmlLabel5.ForeColor = Color.White; 138 | guna2HtmlLabel6.ForeColor = current_color; 139 | await Task.Delay(400); 140 | guna2HtmlLabel6.ForeColor = Color.White; 141 | } 142 | else 143 | { 144 | i += 1; 145 | await Task.Delay(400); 146 | guna2HtmlLabel1.Text = newtitle; 147 | newtitle += title.ToCharArray()[i - 1]; 148 | guna2HtmlLabel1.ForeColor = Color.White; 149 | } 150 | } 151 | 152 | } 153 | 154 | private void guna2Panel2_Paint(object sender, PaintEventArgs e) 155 | { 156 | 157 | } 158 | 159 | private void Presets_Click(object sender, EventArgs e) 160 | { 161 | Hide(); 162 | P.Location = Location; 163 | P.Opacity = 0.3; 164 | P.Show(); 165 | animate.Start(); 166 | } 167 | 168 | private void destruct_Click(object sender, EventArgs e) 169 | { 170 | Hide(); 171 | D.Location = Location; 172 | D.Opacity = 0.3; 173 | D.Show(); 174 | animate.Start(); 175 | KillService(); 176 | } 177 | 178 | private void discord_Click(object sender, EventArgs e) 179 | { 180 | 181 | } 182 | 183 | private void notifyIcon1_MouseDoubleClick(object sender, MouseEventArgs e) 184 | { 185 | Show(); 186 | WindowState = FormWindowState.Normal; 187 | notifyIcon1.Visible = false; 188 | } 189 | 190 | private void guna2Button1_Click(object sender, EventArgs e) 191 | { 192 | Hide(); 193 | notifyIcon1.Visible = true; 194 | } 195 | #endregion 196 | } 197 | } 198 | -------------------------------------------------------------------------------- /Swift/Mods/Core.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Runtime.InteropServices; 3 | using System.Text; 4 | using System.Threading; 5 | using System.Threading.Tasks; 6 | using System.Windows.Forms; 7 | using static Swift.Calls; 8 | 9 | namespace Swift.Mods 10 | { 11 | internal class Core 12 | { 13 | #region Properties 14 | public static Random rnd = new Random(); 15 | #endregion 16 | 17 | #region Left 18 | public static async Task leftclick(IntPtr window, bool leftlock, int timeout) 19 | { 20 | int delay = timeout / 2; 21 | int random = rnd.Next(delay / 2); 22 | switch (leftlock) 23 | { 24 | case true: 25 | if (Control.MouseButtons == MouseButtons.Left) 26 | { 27 | SendMessage(window, 0x201, 0, 0); 28 | await Task.Delay(delay - random); // random & split to humanize the clicks. 29 | SendMessage(window, 0x202, 0, 0); 30 | await Task.Delay(delay + random); 31 | } 32 | break; 33 | case false: 34 | if ((Control.MouseButtons & MouseButtons.Left) == MouseButtons.Left) 35 | { 36 | SendMessage(window, 0x201, 0, 0); 37 | await Task.Delay(delay - random); // random & split to humanize the clicks. 38 | SendMessage(window, 0x202, 0, 0); 39 | await Task.Delay(delay + random); 40 | } 41 | break; 42 | } 43 | } 44 | 45 | public static async Task breakblock(IntPtr window, bool leftlock, int timeout) 46 | { 47 | int delay = timeout / 2; 48 | int random = rnd.Next(delay / 2); 49 | switch (leftlock) 50 | { 51 | case true: 52 | if (Control.MouseButtons == MouseButtons.Left) 53 | { 54 | await Task.Delay(delay - random); 55 | SendMessage(window, 0x201, 0, 0); 56 | await Task.Delay(delay + random); 57 | } 58 | break; 59 | case false: 60 | if ((Control.MouseButtons & MouseButtons.Left) > 0) 61 | { 62 | await Task.Delay(delay - random); 63 | SendMessage(window, 0x201, 0, 0); 64 | await Task.Delay(delay + random); 65 | } 66 | break; 67 | } 68 | } 69 | 70 | public static async Task Mode18(IntPtr window, bool leftlock, int timeout) 71 | { 72 | switch (leftlock) 73 | { 74 | case true: 75 | if (Control.MouseButtons == MouseButtons.Left) 76 | { 77 | await Task.Delay(timeout); 78 | SendMessage(window, 0x201, 0, 0); 79 | await Task.Delay(rnd.Next(1, 4)); // random to prevent static delay & sleep for key strokes 80 | SendMessage(window, 0x202, 0, 0); 81 | } 82 | break; 83 | case false: 84 | if ((Control.MouseButtons & MouseButtons.Left) > 0) 85 | { 86 | await Task.Delay(timeout); 87 | SendMessage(window, 0x201, 0, 0); 88 | await Task.Delay(rnd.Next(1, 4)); // random to prevent static delay & sleep for key strokes 89 | SendMessage(window, 0x202, 0, 0); 90 | } 91 | break; 92 | } 93 | 94 | } 95 | #endregion 96 | 97 | #region Right 98 | public static async Task rightclick(IntPtr window, bool rightlock, int timeout) 99 | { 100 | int delay = timeout / 2; 101 | int random = rnd.Next(delay / 2); 102 | switch (rightlock) 103 | { 104 | case true: 105 | if (Control.MouseButtons == MouseButtons.Right) 106 | { 107 | await Task.Delay(delay - random); 108 | SendMessage(window, 0x204, 0, 0); 109 | await Task.Delay(delay + random); // random & split to humanize the clicks. 110 | SendMessage(window, 0x205, 0, 0); 111 | } 112 | break; 113 | case false: 114 | if ((Control.MouseButtons & MouseButtons.Right) > 0) 115 | { 116 | await Task.Delay(delay - random); 117 | SendMessage(window, 0x204, 0, 0); 118 | await Task.Delay(delay + random); // random & split to humanize the clicks. 119 | SendMessage(window, 0x205, 0, 0); 120 | } 121 | break; 122 | } 123 | } 124 | 125 | public static async Task rodorfoodlol(IntPtr window, bool rightlock, int timeout) 126 | { 127 | int delay = timeout / 2; 128 | int random = rnd.Next(delay / 2); 129 | switch (rightlock) 130 | { 131 | case true: 132 | if (Control.MouseButtons == MouseButtons.Right) 133 | { 134 | await Task.Delay(delay - random); 135 | SendMessage(window, 0x204, 0, 0); 136 | await Task.Delay(delay + random); // random & split to humanize the clicks. 137 | } 138 | break; 139 | case false: 140 | if ((Control.MouseButtons & MouseButtons.Right) > 0) 141 | { 142 | await Task.Delay(delay - random); 143 | SendMessage(window, 0x204, 0, 0); 144 | await Task.Delay(delay + random); // random & split to humanize the clicks. 145 | } 146 | break; 147 | } 148 | 149 | } 150 | #endregion 151 | } 152 | } 153 | -------------------------------------------------------------------------------- /Swift/Mods/Randomize.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Swift.Mods 4 | { 5 | public class Randomize 6 | { 7 | #region Properties 8 | public static Random C_Random { get; protected set; } 9 | public int Seed { get; protected set; } 10 | #endregion 11 | 12 | #region Constructor .ctor 13 | public Randomize(uint seed) 14 | { 15 | C_Random = new Random((int)seed); 16 | Seed = (int)seed; 17 | } 18 | #endregion 19 | 20 | #region Methods 21 | public int Rnd(dynamic min, dynamic max) 22 | { 23 | return C_Random.Next((int)min, (int)max); 24 | } 25 | #endregion 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /Swift/Presets.cs: -------------------------------------------------------------------------------- 1 | using Newtonsoft.Json; 2 | using System; 3 | using System.Linq; 4 | using System.Net; 5 | using System.Net.Http; 6 | using System.Text; 7 | using System.Windows.Forms; 8 | using static Swift.Calls; 9 | 10 | namespace Swift 11 | { 12 | public partial class Presets : Form 13 | { 14 | // promised to release at a specific time no time to fix horrible config code. 15 | 16 | #region Properties 17 | private Mods.Randomize randomize; 18 | #endregion 19 | 20 | #region Constructor .ctor 21 | public Presets() 22 | { 23 | InitializeComponent(); 24 | label2.Text = $"Stats : \nBoost Max : {boostmaxslider.Value}\nDrop Max : {dropmaxslider.Value}\nBoost Min : {boostminslider.Value}\nDrop Min : {dropminslider.Value}\nChance Boost : {chanceboostslider.Value}%\nChance Drop : {100 - chanceboostslider.Value}\nRandom Seed : {randomseedslider.Value}"; 25 | BoostMax = (uint)boostmaxslider.Value; 26 | BoostMin = (uint)boostminslider.Value; 27 | RandomSeed = (uint)randomseedslider.Value; 28 | ChanceBoost = (uint)chanceboostslider.Value; 29 | DropMax = (uint)dropmaxslider.Value; 30 | DropMin = (uint)dropminslider.Value; 31 | Opacity = 0.95; 32 | } 33 | #endregion 34 | 35 | #region GUI Control 36 | private void animate_Tick(object sender, EventArgs e) 37 | { 38 | if (C.Visible) 39 | { 40 | C.Opacity += 0.05; 41 | clicker.Checked = false; 42 | Preset.Checked = true; 43 | if (C.Opacity >= 0.95) 44 | { 45 | animate.Stop(); 46 | } 47 | } 48 | else if (H.Visible) 49 | { 50 | H.Opacity += 0.05; 51 | Home.Checked = false; 52 | Preset.Checked = true; 53 | if (H.Opacity >= 0.95) 54 | { 55 | animate.Stop(); 56 | } 57 | } 58 | else if (D.Visible) 59 | { 60 | D.Opacity += 0.05; 61 | destruct.Checked = false; 62 | Preset.Checked = true; 63 | if (D.Opacity >= 0.95) 64 | { 65 | animate.Stop(); 66 | } 67 | } 68 | 69 | } 70 | 71 | private void Home_Click(object sender, EventArgs e) 72 | { 73 | Hide(); 74 | H.Location = Location; 75 | H.Opacity = 0.3; 76 | H.Show(); 77 | animate.Start(); 78 | } 79 | 80 | private void clicker_Click(object sender, EventArgs e) 81 | { 82 | Hide(); 83 | C.Location = Location; 84 | C.Opacity = 0.3; 85 | C.Show(); 86 | animate.Start(); 87 | } 88 | 89 | private void Preset_Click(object sender, EventArgs e) 90 | { 91 | Preset.Checked = true; 92 | Home.Checked = false; 93 | clicker.Checked = false; 94 | } 95 | 96 | private void destruct_Click(object sender, EventArgs e) 97 | { 98 | Hide(); 99 | D.Location = Location; 100 | D.Opacity = 0.3; 101 | D.Show(); 102 | animate.Start(); 103 | KillService(); 104 | } 105 | 106 | private void CustomPresetButton_Click(object sender, EventArgs e) 107 | { 108 | paneluserinterface.Visible = false; 109 | CustomUIbutton.Checked = false; 110 | _presetpanel.Visible = CustomPresetButton.Checked; 111 | } 112 | 113 | private void guna2Button1_Click(object sender, EventArgs e) 114 | { 115 | Hide(); 116 | notifyIcon1.Visible = true; 117 | } 118 | 119 | private void notifyIcon1_MouseDoubleClick(object sender, MouseEventArgs e) 120 | { 121 | Show(); 122 | WindowState = FormWindowState.Normal; 123 | notifyIcon1.Visible = false; 124 | } 125 | 126 | private void chart1_Click(object sender, EventArgs e) 127 | { 128 | 129 | } 130 | #endregion 131 | 132 | #region Config Control 133 | private void apply_Click(object sender, EventArgs e) 134 | { 135 | chart1.Series.FirstOrDefault().Points.Clear(); 136 | chart1.ChartAreas.FirstOrDefault().AxisX.Maximum = 25; 137 | chart1.ChartAreas.FirstOrDefault().AxisX.Minimum = 0; 138 | randomize = new Mods.Randomize(RandomSeed); 139 | timer1.Enabled = !timer1.Enabled; 140 | } 141 | 142 | private void boostmaxslider_ValueChanged(object sender, EventArgs e) 143 | { 144 | label2.Text = $"Stats : \nBoost Max : {boostmaxslider.Value}\nDrop Max : {dropmaxslider.Value}\nBoost Min : {boostminslider.Value}\nDrop Min : {dropminslider.Value}\nChance Boost : {chanceboostslider.Value}%\nChance Drop : {100 - chanceboostslider.Value}\nRandom Seed : {randomseedslider.Value}"; 145 | BoostMax = (uint)boostmaxslider.Value; 146 | chart1.Series.FirstOrDefault().Points.Clear(); 147 | chart1.ChartAreas.FirstOrDefault().AxisX.Maximum = 25; 148 | chart1.ChartAreas.FirstOrDefault().AxisX.Minimum = 0; 149 | } 150 | 151 | private void boostminslider_ValueChanged(object sender, EventArgs e) 152 | { 153 | label2.Text = $"Stats : \nBoost Max : {boostmaxslider.Value}\nDrop Max : {dropmaxslider.Value}\nBoost Min : {boostminslider.Value}\nDrop Min : {dropminslider.Value}\nChance Boost : {chanceboostslider.Value}%\nChance Drop : {100 - chanceboostslider.Value}\nRandom Seed : {randomseedslider.Value}"; 154 | BoostMin = (uint)boostminslider.Value; 155 | chart1.Series.FirstOrDefault().Points.Clear(); 156 | chart1.ChartAreas.FirstOrDefault().AxisX.Maximum = 25; 157 | chart1.ChartAreas.FirstOrDefault().AxisX.Minimum = 0; 158 | } 159 | 160 | private void randomseedslider_ValueChanged(object sender, EventArgs e) 161 | { 162 | label2.Text = $"Stats : \nBoost Max : {boostmaxslider.Value}\nDrop Max : {dropmaxslider.Value}\nBoost Min : {boostminslider.Value}\nDrop Min : {dropminslider.Value}\nChance Boost : {chanceboostslider.Value}%\nChance Drop : {100 - chanceboostslider.Value}\nRandom Seed : {randomseedslider.Value}"; 163 | RandomSeed = (uint)randomseedslider.Value; 164 | chart1.Series.FirstOrDefault().Points.Clear(); 165 | chart1.ChartAreas.FirstOrDefault().AxisX.Maximum = 25; 166 | chart1.ChartAreas.FirstOrDefault().AxisX.Minimum = 0; 167 | Clicker.random = new Mods.Randomize(Calls.RandomSeed); 168 | } 169 | 170 | private void chanceboostslider_ValueChanged(object sender, EventArgs e) 171 | { 172 | label2.Text = $"Stats : \nBoost Max : {boostmaxslider.Value}\nDrop Max : {dropmaxslider.Value}\nBoost Min : {boostminslider.Value}\nDrop Min : {dropminslider.Value}\nChance Boost : {chanceboostslider.Value}%\nChance Drop : {100 - chanceboostslider.Value}\nRandom Seed : {randomseedslider.Value}"; 173 | ChanceBoost = (uint)chanceboostslider.Value; 174 | chart1.Series.FirstOrDefault().Points.Clear(); 175 | chart1.ChartAreas.FirstOrDefault().AxisX.Maximum = 25; 176 | chart1.ChartAreas.FirstOrDefault().AxisX.Minimum = 0; 177 | } 178 | 179 | private void dropmaxslider_ValueChanged(object sender, EventArgs e) 180 | { 181 | label2.Text = $"Stats : \nBoost Max : {boostmaxslider.Value}\nDrop Max : {dropmaxslider.Value}\nBoost Min : {boostminslider.Value}\nDrop Min : {dropminslider.Value}\nChance Boost : {chanceboostslider.Value}%\nChance Drop : {100 - chanceboostslider.Value}\nRandom Seed : {randomseedslider.Value}"; 182 | DropMax = (uint)dropmaxslider.Value; 183 | chart1.Series.FirstOrDefault().Points.Clear(); 184 | chart1.ChartAreas.FirstOrDefault().AxisX.Maximum = 25; 185 | chart1.ChartAreas.FirstOrDefault().AxisX.Minimum = 0; 186 | } 187 | 188 | private void dropminslider_ValueChanged(object sender, EventArgs e) 189 | { 190 | label2.Text = $"Stats : \nBoost Max : {boostmaxslider.Value}\nDrop Max : {dropmaxslider.Value}\nBoost Min : {boostminslider.Value}\nDrop Min : {dropminslider.Value}\nChance Boost : {chanceboostslider.Value}%\nChance Drop : {100 - chanceboostslider.Value}\nRandom Seed : {randomseedslider.Value}"; 191 | DropMin = (uint)dropminslider.Value; 192 | chart1.Series.FirstOrDefault().Points.Clear(); 193 | chart1.ChartAreas.FirstOrDefault().AxisX.Maximum = 25; 194 | chart1.ChartAreas.FirstOrDefault().AxisX.Minimum = 0; 195 | } 196 | 197 | private void timer1_Tick(object sender, EventArgs e) 198 | { 199 | UpdateChart(chart1, randomize, ChanceBoost, BoostMin, BoostMax, DropMin, DropMax, Calls.cps - 2); 200 | } 201 | #endregion 202 | 203 | #region Custom UI Control 204 | private void CustomUIbutton_Click(object sender, EventArgs e) 205 | { 206 | _presetpanel.Visible = false; 207 | CustomPresetButton.Checked = false; 208 | paneluserinterface.Visible = CustomUIbutton.Checked; 209 | } 210 | 211 | 212 | 213 | private void green_slider_Scroll(object sender, ScrollEventArgs e) 214 | { 215 | previewpanel.BackColor = System.Drawing.Color.FromArgb((int)red_slider.Value, (int)green_slider.Value, (int)blue_slider.Value); 216 | preview_label.Text = $"Preview ( {(int)red_slider.Value}, {(int)green_slider.Value}, {(int)blue_slider.Value} ) :"; 217 | } 218 | 219 | private void red_slider_Scroll(object sender, ScrollEventArgs e) 220 | { 221 | previewpanel.BackColor = System.Drawing.Color.FromArgb((int)red_slider.Value, (int)green_slider.Value, (int)blue_slider.Value); 222 | preview_label.Text = $"Preview ( {(int)red_slider.Value}, {(int)green_slider.Value}, {(int)blue_slider.Value} ) :"; 223 | } 224 | 225 | private void blue_slider_Scroll(object sender, ScrollEventArgs e) 226 | { 227 | previewpanel.BackColor = System.Drawing.Color.FromArgb((int)red_slider.Value, (int)green_slider.Value, (int)blue_slider.Value); 228 | preview_label.Text = $"Preview ( {(int)red_slider.Value}, {(int)green_slider.Value}, {(int)blue_slider.Value} ) :"; 229 | } 230 | 231 | private void applyui_Click(object sender, EventArgs e) 232 | { 233 | current_color = System.Drawing.Color.FromArgb((int)red_slider.Value, (int)green_slider.Value, (int)blue_slider.Value); 234 | Form[] forms = { P, C, H, D }; 235 | foreach (Form form in forms) 236 | { 237 | foreach (Guna.UI2.WinForms.Guna2Panel panel in form.Controls) 238 | { 239 | foreach (Control obj in panel.Controls) 240 | { 241 | if (obj.GetType() == typeof(Guna.UI2.WinForms.Guna2Button)) 242 | { 243 | Guna.UI2.WinForms.Guna2Button button = (Guna.UI2.WinForms.Guna2Button)obj; 244 | button.HoverState.BorderColor = current_color; 245 | button.HoverState.CustomBorderColor = current_color; 246 | button.CheckedState.ForeColor = current_color; 247 | button.CheckedState.BorderColor = current_color; 248 | button.CheckedState.CustomBorderColor = current_color; 249 | } 250 | if (obj.GetType() == typeof(Guna.UI2.WinForms.Guna2CheckBox)) 251 | { 252 | Guna.UI2.WinForms.Guna2CheckBox checkbox = (Guna.UI2.WinForms.Guna2CheckBox)obj; 253 | checkbox.CheckedState.FillColor = current_color; 254 | checkbox.CheckedState.BorderColor = current_color; 255 | } 256 | if (obj.GetType() == typeof(ColorSlider.ColorSlider)) 257 | { 258 | ColorSlider.ColorSlider slider = (ColorSlider.ColorSlider)obj; 259 | slider.ElapsedInnerColor = Calls.current_color; 260 | slider.ElapsedPenColorBottom = Calls.current_color; 261 | slider.ElapsedPenColorTop = Calls.current_color; 262 | slider.ThumbInnerColor = Calls.current_color; 263 | slider.ThumbOuterColor = Calls.current_color; 264 | slider.ThumbPenColor = Calls.current_color; 265 | } 266 | 267 | if (obj.GetType() == typeof(Guna.UI2.WinForms.Guna2Panel)) 268 | { 269 | foreach (object obj_child in ((Guna.UI2.WinForms.Guna2Panel)obj).Controls) 270 | { 271 | if (obj_child.GetType() == typeof(Guna.UI2.WinForms.Guna2Button)) 272 | { 273 | Guna.UI2.WinForms.Guna2Button button = (Guna.UI2.WinForms.Guna2Button)obj_child; 274 | button.HoverState.BorderColor = current_color; 275 | button.HoverState.CustomBorderColor = current_color; 276 | button.CheckedState.ForeColor = current_color; 277 | button.CheckedState.BorderColor = current_color; 278 | button.CheckedState.CustomBorderColor = current_color; 279 | } 280 | if (obj_child.GetType() == typeof(Guna.UI2.WinForms.Guna2CheckBox)) 281 | { 282 | Guna.UI2.WinForms.Guna2CheckBox checkbox = (Guna.UI2.WinForms.Guna2CheckBox)obj_child; 283 | checkbox.CheckedState.FillColor = current_color; 284 | checkbox.CheckedState.BorderColor = current_color; 285 | } 286 | if (obj_child.GetType() == typeof(ColorSlider.ColorSlider)) 287 | { 288 | ColorSlider.ColorSlider slider = (ColorSlider.ColorSlider)obj_child; 289 | slider.ElapsedInnerColor = Calls.current_color; 290 | slider.ElapsedPenColorBottom = Calls.current_color; 291 | slider.ElapsedPenColorTop = Calls.current_color; 292 | slider.ThumbInnerColor = Calls.current_color; 293 | slider.ThumbOuterColor = Calls.current_color; 294 | slider.ThumbPenColor = Calls.current_color; 295 | } 296 | } 297 | } 298 | } 299 | } 300 | } 301 | } 302 | #endregion 303 | 304 | #region Config Control 305 | private void LoadConfingBtn_Click(object sender, EventArgs e) 306 | { 307 | UrlDialog dialog = new UrlDialog(); 308 | dialog.ShowDialog(this); 309 | try 310 | { 311 | string dwn_config = new WebClient().DownloadString(dialog.ConfigURL); 312 | Config _config = JsonConvert.DeserializeObject(dwn_config); 313 | boostmaxslider.Value = _config.BoostMax; 314 | dropmaxslider.Value = _config.DropMax; 315 | dropminslider.Value = _config.DropMin; 316 | boostminslider.Value = _config.BoostMin; 317 | chanceboostslider.Value = _config.ChanceBoost; 318 | randomseedslider.Value = _config.RandomSeed; 319 | } 320 | catch (Exception ex) 321 | { 322 | if (ex.GetType() == typeof(WebException)) 323 | { 324 | MessageBox.Show("Download Error", "Config Loader", MessageBoxButtons.OK, MessageBoxIcon.Error); 325 | } 326 | else 327 | { 328 | MessageBox.Show("Bad Input", "Config Loader", MessageBoxButtons.OK, MessageBoxIcon.Error); 329 | } 330 | } 331 | } 332 | #endregion 333 | 334 | private void Catmode_Checkbox_CheckedChanged(object sender, EventArgs e) 335 | { 336 | Form[] forms = { P, C, H, D }; 337 | foreach (Form form in forms) 338 | { 339 | form.BackgroundImage = Properties.Resources.Cat; 340 | foreach (Guna.UI2.WinForms.Guna2Panel panel in form.Controls) 341 | { 342 | panel.BackColor = System.Drawing.Color.Transparent; 343 | panel.FillColor = System.Drawing.Color.Transparent; 344 | foreach (Control obj in panel.Controls) 345 | { 346 | if (obj.GetType() == typeof(Guna.UI2.WinForms.Guna2Button)) 347 | { 348 | Guna.UI2.WinForms.Guna2Button button = (Guna.UI2.WinForms.Guna2Button)obj; 349 | button.BackColor = System.Drawing.Color.Transparent; 350 | button.FillColor = System.Drawing.Color.Transparent; 351 | button.HoverState.FillColor = System.Drawing.Color.Transparent; 352 | button.CheckedState.FillColor = System.Drawing.Color.Transparent; 353 | } 354 | if (obj.GetType() == typeof(Guna.UI2.WinForms.Guna2Panel)) 355 | { 356 | Guna.UI2.WinForms.Guna2Panel panel_ = (Guna.UI2.WinForms.Guna2Panel)obj; 357 | panel_.BackColor = System.Drawing.Color.Transparent; 358 | panel_.FillColor = System.Drawing.Color.Transparent; 359 | foreach (object obj_child in panel_.Controls) 360 | { 361 | if (obj_child.GetType() == typeof(Guna.UI2.WinForms.Guna2Button)) 362 | { 363 | Guna.UI2.WinForms.Guna2Button button = (Guna.UI2.WinForms.Guna2Button)obj_child; 364 | button.FillColor = System.Drawing.Color.Transparent; 365 | button.BackColor = System.Drawing.Color.Transparent; 366 | button.HoverState.FillColor = System.Drawing.Color.Transparent; 367 | button.CheckedState.FillColor = System.Drawing.Color.Transparent; 368 | } 369 | } 370 | } 371 | } 372 | } 373 | } 374 | } 375 | 376 | private async void UpldCfgBtn_Click(object sender, EventArgs e) 377 | { 378 | ConfigDialog cfgdialg = new ConfigDialog(); 379 | cfgdialg.ShowDialog(this); 380 | try 381 | { 382 | HttpClient client = new HttpClient(); 383 | Config cfg = new Config(BoostMax, DropMax, BoostMin, DropMin, ChanceBoost, RandomSeed); 384 | StringContent str = new StringContent($"{JsonConvert.SerializeObject(cfg)}", Encoding.UTF8, "application/json"); 385 | var result = await client.PostAsync($"https://CrimsonGraveMonad.pickleft.repl.co/Settings?CfgName={cfgdialg.ConfigName}&USER_ID={cfgdialg.ID}", str); // swift manager website 386 | if (result.Content.ReadAsStringAsync().Result.Contains("Success -> ")) 387 | { 388 | MessageBox.Show("Confirmation Sent"); 389 | } 390 | else 391 | { 392 | MessageBox.Show("Failed To Upload => " + result.Content.ReadAsStringAsync().Result); 393 | } 394 | } 395 | catch (Exception ex) 396 | { 397 | MessageBox.Show("Error : " + ex.Message); 398 | } 399 | } 400 | } 401 | } 402 | -------------------------------------------------------------------------------- /Swift/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Windows.Forms; 3 | 4 | namespace Swift 5 | { 6 | internal static class Program 7 | { 8 | /// 9 | /// The main entry point for the application. 10 | /// 11 | [STAThread] 12 | private static void Main() 13 | { 14 | Calls.KillService(); 15 | Calls.H.FormClosed += FormClosed; 16 | Calls.C.FormClosed += FormClosed; 17 | Calls.D.FormClosed += FormClosed; 18 | Calls.P.FormClosed += FormClosed; 19 | Application.EnableVisualStyles(); 20 | Application.Run(Calls.H); 21 | } 22 | 23 | private static void FormClosed(object sender, FormClosedEventArgs e) 24 | { 25 | Calls.restartservice(); 26 | Environment.FailFast("Dll missing", new TypeLoadException()); 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /Swift/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.InteropServices; 3 | 4 | // General Information about an assembly is controlled through the following 5 | // set of attributes. Change these attribute values to modify the information 6 | // associated with an assembly. 7 | [assembly: AssemblyTitle("Clicker")] 8 | [assembly: AssemblyDescription("A Clicking Machine.")] 9 | [assembly: AssemblyConfiguration("")] 10 | [assembly: AssemblyCompany("Microsoft")] 11 | [assembly: AssemblyProduct("Clicker")] 12 | [assembly: AssemblyCopyright("Copyright © Microsoft 2022")] 13 | [assembly: AssemblyTrademark("")] 14 | [assembly: AssemblyCulture("")] 15 | 16 | // Setting ComVisible to false makes the types in this assembly not visible 17 | // to COM components. If you need to access a type in this assembly from 18 | // COM, set the ComVisible attribute to true on that type. 19 | [assembly: ComVisible(false)] 20 | 21 | // The following GUID is for the ID of the typelib if this project is exposed to COM 22 | [assembly: Guid("e5569080-9cb3-4849-820d-94c061eeb78a")] 23 | 24 | // Version information for an assembly consists of the following four values: 25 | // 26 | // Major Version 27 | // Minor Version 28 | // Build Number 29 | // Revision 30 | // 31 | // You can specify all the values or you can default the Build and Revision Numbers 32 | // by using the '*' as shown below: 33 | // [assembly: AssemblyVersion("1.0.*")] 34 | [assembly: AssemblyVersion("1.4.*")] 35 | [assembly: AssemblyFileVersion("1.4.3")] 36 | -------------------------------------------------------------------------------- /Swift/Properties/Resources.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 | namespace Swift.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// A strongly-typed resource class, for looking up localized strings, etc. 17 | /// 18 | // This class was auto-generated by the StronglyTypedResourceBuilder 19 | // class via a tool like ResGen or Visual Studio. 20 | // To add or remove a member, edit your .ResX file then rerun ResGen 21 | // with the /str option, or rebuild your VS project. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Returns the cached ResourceManager instance used by this class. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Swift.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Overrides the current thread's CurrentUICulture property for all 51 | /// resource lookups using this strongly typed resource class. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | 63 | /// 64 | /// Looks up a localized resource of type System.Drawing.Bitmap. 65 | /// 66 | internal static System.Drawing.Bitmap Cat { 67 | get { 68 | object obj = ResourceManager.GetObject("Cat", resourceCulture); 69 | return ((System.Drawing.Bitmap)(obj)); 70 | } 71 | } 72 | 73 | /// 74 | /// Looks up a localized resource of type System.Drawing.Bitmap. 75 | /// 76 | internal static System.Drawing.Bitmap icons8_discord_new_32 { 77 | get { 78 | object obj = ResourceManager.GetObject("icons8-discord-new-32", resourceCulture); 79 | return ((System.Drawing.Bitmap)(obj)); 80 | } 81 | } 82 | 83 | /// 84 | /// Looks up a localized resource of type System.Drawing.Bitmap. 85 | /// 86 | internal static System.Drawing.Bitmap icons8_twitter_22 { 87 | get { 88 | object obj = ResourceManager.GetObject("icons8-twitter-22", resourceCulture); 89 | return ((System.Drawing.Bitmap)(obj)); 90 | } 91 | } 92 | 93 | /// 94 | /// Looks up a localized resource of type System.Drawing.Bitmap. 95 | /// 96 | internal static System.Drawing.Bitmap icons8_youtube_22 { 97 | get { 98 | object obj = ResourceManager.GetObject("icons8-youtube-22", resourceCulture); 99 | return ((System.Drawing.Bitmap)(obj)); 100 | } 101 | } 102 | } 103 | } 104 | -------------------------------------------------------------------------------- /Swift/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 122 | ..\Resources\IMG_0745.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 123 | 124 | 125 | ..\Resources\icons8-discord-new-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 126 | 127 | 128 | ..\Resources\icons8-twitter-22.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 129 | 130 | 131 | ..\Resources\icons8-youtube-22.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 132 | 133 | -------------------------------------------------------------------------------- /Swift/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 | namespace Swift.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.2.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Swift/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Swift/Resources/8b80702a29fd8b392872d9fe262a478f.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pickleft/Swift/cfeca253b4fd669abcab11d257182798e36fcaf9/Swift/Resources/8b80702a29fd8b392872d9fe262a478f.ico -------------------------------------------------------------------------------- /Swift/Resources/IMG_0745.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pickleft/Swift/cfeca253b4fd669abcab11d257182798e36fcaf9/Swift/Resources/IMG_0745.jpg -------------------------------------------------------------------------------- /Swift/Resources/icons8-discord-new-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pickleft/Swift/cfeca253b4fd669abcab11d257182798e36fcaf9/Swift/Resources/icons8-discord-new-32.png -------------------------------------------------------------------------------- /Swift/Resources/icons8-twitter-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pickleft/Swift/cfeca253b4fd669abcab11d257182798e36fcaf9/Swift/Resources/icons8-twitter-22.png -------------------------------------------------------------------------------- /Swift/Resources/icons8-youtube-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pickleft/Swift/cfeca253b4fd669abcab11d257182798e36fcaf9/Swift/Resources/icons8-youtube-22.png -------------------------------------------------------------------------------- /Swift/Swift.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | Debug 7 | AnyCPU 8 | {E5569080-9CB3-4849-820D-94C061EEB78A} 9 | WinExe 10 | Swift 11 | Clicker 12 | v4.8 13 | 512 14 | true 15 | false 16 | 17 | 18 | 19 | 20 | AnyCPU 21 | true 22 | full 23 | false 24 | bin\Debug\ 25 | DEBUG;TRACE 26 | prompt 27 | 4 28 | 29 | 30 | AnyCPU 31 | pdbonly 32 | true 33 | bin\Release\ 34 | TRACE 35 | prompt 36 | 4 37 | 38 | 39 | true 40 | bin\x64\Debug\ 41 | DEBUG;TRACE 42 | full 43 | x64 44 | 7.3 45 | prompt 46 | true 47 | 48 | 49 | bin\x64\Release\ 50 | TRACE 51 | true 52 | pdbonly 53 | x64 54 | 7.3 55 | prompt 56 | true 57 | 58 | 59 | app.manifest 60 | 61 | 62 | false 63 | 64 | 65 | Resources\8b80702a29fd8b392872d9fe262a478f.ico 66 | 67 | 68 | 69 | 70 | Form 71 | 72 | 73 | Clicker.cs 74 | 75 | 76 | 77 | Form 78 | 79 | 80 | Destructs.cs 81 | 82 | 83 | Form 84 | 85 | 86 | Menu.cs 87 | 88 | 89 | 90 | Form 91 | 92 | 93 | Presets.cs 94 | 95 | 96 | 97 | 98 | Form 99 | 100 | 101 | ConfigDialog.cs 102 | 103 | 104 | Form 105 | 106 | 107 | UrlDialog.cs 108 | 109 | 110 | Clicker.cs 111 | Designer 112 | 113 | 114 | Destructs.cs 115 | 116 | 117 | Menu.cs 118 | 119 | 120 | Presets.cs 121 | Designer 122 | 123 | 124 | ResXFileCodeGenerator 125 | Resources.Designer.cs 126 | Designer 127 | 128 | 129 | True 130 | Resources.resx 131 | True 132 | 133 | 134 | ConfigDialog.cs 135 | 136 | 137 | UrlDialog.cs 138 | 139 | 140 | 141 | 142 | SettingsSingleFileGenerator 143 | Settings.Designer.cs 144 | 145 | 146 | True 147 | Settings.settings 148 | True 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | ..\packages\lioncs.ColorSlider.1.0.0\lib\net452\ColorSlider.dll 166 | 167 | 168 | ..\..\GunaUI-Key\Crack\Guna.UI2.dll 169 | 170 | 171 | 172 | ..\packages\Newtonsoft.Json.13.0.2\lib\net45\Newtonsoft.Json.dll 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. 193 | 194 | 195 | 196 | 197 | 198 | 199 | -------------------------------------------------------------------------------- /Swift/UrlDialog.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Swift 2 | { 3 | partial class UrlDialog 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.URLTextBox = new Guna.UI2.WinForms.Guna2TextBox(); 32 | this.SuspendLayout(); 33 | // 34 | // URLTextBox 35 | // 36 | this.URLTextBox.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(35)))), ((int)(((byte)(35)))), ((int)(((byte)(35))))); 37 | this.URLTextBox.Cursor = System.Windows.Forms.Cursors.IBeam; 38 | this.URLTextBox.DefaultText = ""; 39 | this.URLTextBox.DisabledState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(208)))), ((int)(((byte)(208))))); 40 | this.URLTextBox.DisabledState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(226)))), ((int)(((byte)(226)))), ((int)(((byte)(226))))); 41 | this.URLTextBox.DisabledState.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(138)))), ((int)(((byte)(138)))), ((int)(((byte)(138))))); 42 | this.URLTextBox.DisabledState.Parent = this.URLTextBox; 43 | this.URLTextBox.DisabledState.PlaceholderForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(138)))), ((int)(((byte)(138)))), ((int)(((byte)(138))))); 44 | this.URLTextBox.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(15)))), ((int)(((byte)(15)))), ((int)(((byte)(15))))); 45 | this.URLTextBox.FocusedState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(148)))), ((int)(((byte)(255))))); 46 | this.URLTextBox.FocusedState.Parent = this.URLTextBox; 47 | this.URLTextBox.HoverState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(148)))), ((int)(((byte)(255))))); 48 | this.URLTextBox.HoverState.Parent = this.URLTextBox; 49 | this.URLTextBox.Location = new System.Drawing.Point(12, 12); 50 | this.URLTextBox.Name = "URLTextBox"; 51 | this.URLTextBox.PasswordChar = '\0'; 52 | this.URLTextBox.PlaceholderText = "Raw Config URL"; 53 | this.URLTextBox.SelectedText = ""; 54 | this.URLTextBox.ShadowDecoration.Parent = this.URLTextBox; 55 | this.URLTextBox.Size = new System.Drawing.Size(410, 37); 56 | this.URLTextBox.Style = Guna.UI2.WinForms.Enums.TextBoxStyle.Material; 57 | this.URLTextBox.TabIndex = 0; 58 | this.URLTextBox.TextChanged += new System.EventHandler(this.URLTextBox_TextChanged); 59 | // 60 | // UrlDialog 61 | // 62 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 63 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 64 | this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(10)))), ((int)(((byte)(10))))); 65 | this.ClientSize = new System.Drawing.Size(434, 61); 66 | this.Controls.Add(this.URLTextBox); 67 | this.ForeColor = System.Drawing.SystemColors.Control; 68 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; 69 | this.MaximizeBox = false; 70 | this.MinimizeBox = false; 71 | this.Name = "UrlDialog"; 72 | this.ShowIcon = false; 73 | this.Text = "Config Loader"; 74 | this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.UrlDialog_FormClosed); 75 | this.ResumeLayout(false); 76 | 77 | } 78 | 79 | #endregion 80 | 81 | private Guna.UI2.WinForms.Guna2TextBox URLTextBox; 82 | } 83 | } -------------------------------------------------------------------------------- /Swift/UrlDialog.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Windows.Forms; 3 | 4 | namespace Swift 5 | { 6 | public partial class UrlDialog : Form 7 | { 8 | #region Constructor .ctor 9 | public UrlDialog() 10 | { 11 | InitializeComponent(); 12 | } 13 | #endregion 14 | 15 | #region Properties 16 | public string ConfigURL { get; private set; } 17 | #endregion 18 | 19 | #region Methods 20 | private void URLTextBox_TextChanged(object sender, EventArgs e) 21 | { 22 | ConfigURL = URLTextBox.Text; 23 | } 24 | 25 | private void UrlDialog_FormClosed(object sender, FormClosedEventArgs e) 26 | { 27 | } 28 | #endregion 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Swift/UrlDialog.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | -------------------------------------------------------------------------------- /Swift/app.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 54 | 62 | 63 | 64 | 78 | 79 | 80 | -------------------------------------------------------------------------------- /Swift/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | --------------------------------------------------------------------------------