├── nitrogen ├── obj │ ├── Debug │ │ └── net6.0 │ │ │ ├── nitrogen.genruntimeconfig.cache │ │ │ ├── nitrogen.AssemblyInfoInputs.cache │ │ │ ├── nitrogen.csproj.CoreCompileInputs.cache │ │ │ ├── apphost.exe │ │ │ ├── nitrogen.dll │ │ │ ├── nitrogen.pdb │ │ │ ├── ref │ │ │ └── nitrogen.dll │ │ │ ├── nitrogen.assets.cache │ │ │ ├── nitrogen.GlobalUsings.g.cs │ │ │ ├── nitrogen.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── nitrogen.AssemblyInfo.cs │ │ │ └── nitrogen.csproj.FileListAbsolute.txt │ ├── nitrogen.csproj.nuget.g.targets │ ├── project.nuget.cache │ ├── nitrogen.csproj.nuget.g.props │ ├── project.assets.json │ └── nitrogen.csproj.nuget.dgspec.json ├── bin │ └── Debug │ │ └── net6.0 │ │ ├── nitrogen.dll │ │ ├── nitrogen.exe │ │ ├── nitrogen.pdb │ │ ├── ref │ │ └── nitrogen.dll │ │ ├── nitrogen.runtimeconfig.json │ │ └── nitrogen.deps.json ├── nitrogen.csproj └── Program.cs ├── README.md └── nitrogen.sln /nitrogen/obj/Debug/net6.0/nitrogen.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86a465b958e4e4717f6d637f969ee2188c44572c 2 | -------------------------------------------------------------------------------- /nitrogen/obj/Debug/net6.0/nitrogen.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | c6e617d2af0acce8b6090aafbebbf48fbc44ed67 2 | -------------------------------------------------------------------------------- /nitrogen/obj/Debug/net6.0/nitrogen.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a2d7e5b67277c34bd36eee5f30b0aa46c8c7cf86 2 | -------------------------------------------------------------------------------- /nitrogen/bin/Debug/net6.0/nitrogen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LillyAngel/codesgen/HEAD/nitrogen/bin/Debug/net6.0/nitrogen.dll -------------------------------------------------------------------------------- /nitrogen/bin/Debug/net6.0/nitrogen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LillyAngel/codesgen/HEAD/nitrogen/bin/Debug/net6.0/nitrogen.exe -------------------------------------------------------------------------------- /nitrogen/bin/Debug/net6.0/nitrogen.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LillyAngel/codesgen/HEAD/nitrogen/bin/Debug/net6.0/nitrogen.pdb -------------------------------------------------------------------------------- /nitrogen/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LillyAngel/codesgen/HEAD/nitrogen/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /nitrogen/obj/Debug/net6.0/nitrogen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LillyAngel/codesgen/HEAD/nitrogen/obj/Debug/net6.0/nitrogen.dll -------------------------------------------------------------------------------- /nitrogen/obj/Debug/net6.0/nitrogen.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LillyAngel/codesgen/HEAD/nitrogen/obj/Debug/net6.0/nitrogen.pdb -------------------------------------------------------------------------------- /nitrogen/bin/Debug/net6.0/ref/nitrogen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LillyAngel/codesgen/HEAD/nitrogen/bin/Debug/net6.0/ref/nitrogen.dll -------------------------------------------------------------------------------- /nitrogen/obj/Debug/net6.0/ref/nitrogen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LillyAngel/codesgen/HEAD/nitrogen/obj/Debug/net6.0/ref/nitrogen.dll -------------------------------------------------------------------------------- /nitrogen/obj/Debug/net6.0/nitrogen.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LillyAngel/codesgen/HEAD/nitrogen/obj/Debug/net6.0/nitrogen.assets.cache -------------------------------------------------------------------------------- /nitrogen/obj/nitrogen.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /nitrogen/bin/Debug/net6.0/nitrogen.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net6.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "6.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /nitrogen/nitrogen.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net6.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /nitrogen/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "sg8w+HAkE9lHSaMnL0ileoXEuwR11kUID2JSIPI2e6dCax9CVc4UQd0VTSVIVN7719Z5f/WiXB1pR5Yjl0QlMg==", 4 | "success": true, 5 | "projectFilePath": "C:\\Users\\zwola\\source\\repos\\nitrogen\\nitrogen\\nitrogen.csproj", 6 | "expectedPackageFiles": [], 7 | "logs": [] 8 | } -------------------------------------------------------------------------------- /nitrogen/obj/Debug/net6.0/nitrogen.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::System; 3 | global using global::System.Collections.Generic; 4 | global using global::System.IO; 5 | global using global::System.Linq; 6 | global using global::System.Net.Http; 7 | global using global::System.Threading; 8 | global using global::System.Threading.Tasks; 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![](https://filmdaily.co/wp-content/uploads/2021/06/dis-01.jpg) 2 | # Hello there 3 | # NITRO, PAYSAFECARD, STEAM CODES GENERATOR 4 | SIMPLE CODES GENERATOR WRITTEN IN C#. Feel free to use it. 5 | 6 | CHECKER TO NITRO CODES: 7 | https://github.com/LillyAngel/discord-nitro-checker 8 | -------------------------------------------------------------------------------- /nitrogen/bin/Debug/net6.0/nitrogen.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v6.0", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v6.0": { 9 | "nitrogen/1.0.0": { 10 | "runtime": { 11 | "nitrogen.dll": {} 12 | } 13 | } 14 | } 15 | }, 16 | "libraries": { 17 | "nitrogen/1.0.0": { 18 | "type": "project", 19 | "serviceable": false, 20 | "sha512": "" 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /nitrogen/obj/Debug/net6.0/nitrogen.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net6.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = 5 | build_property.ProjectTypeGuids = 6 | build_property.InvariantGlobalization = 7 | build_property.PlatformNeutralAssembly = 8 | build_property._SupportedPlatformList = Linux,macOS,Windows 9 | build_property.RootNamespace = nitrogen 10 | build_property.ProjectDir = C:\Users\zwola\source\repos\nitrogen\nitrogen\ 11 | -------------------------------------------------------------------------------- /nitrogen/obj/Debug/net6.0/nitrogen.AssemblyInfo.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 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("nitrogen")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("nitrogen")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("nitrogen")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /nitrogen/obj/nitrogen.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\zwola\.nuget\packages\ 9 | PackageReference 10 | 6.0.0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /nitrogen.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31912.275 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nitrogen", "nitrogen\nitrogen.csproj", "{290CE3BB-4AEA-4181-BD20-B636F13AAFBE}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {290CE3BB-4AEA-4181-BD20-B636F13AAFBE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {290CE3BB-4AEA-4181-BD20-B636F13AAFBE}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {290CE3BB-4AEA-4181-BD20-B636F13AAFBE}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {290CE3BB-4AEA-4181-BD20-B636F13AAFBE}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {E03E8E0F-432B-4F65-BBFF-63D962E7CB6A} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /nitrogen/obj/Debug/net6.0/nitrogen.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\zwola\source\repos\nitrogen\nitrogen\bin\Debug\net6.0\nitrogen.exe 2 | C:\Users\zwola\source\repos\nitrogen\nitrogen\bin\Debug\net6.0\nitrogen.deps.json 3 | C:\Users\zwola\source\repos\nitrogen\nitrogen\bin\Debug\net6.0\nitrogen.runtimeconfig.json 4 | C:\Users\zwola\source\repos\nitrogen\nitrogen\bin\Debug\net6.0\nitrogen.dll 5 | C:\Users\zwola\source\repos\nitrogen\nitrogen\bin\Debug\net6.0\ref\nitrogen.dll 6 | C:\Users\zwola\source\repos\nitrogen\nitrogen\bin\Debug\net6.0\nitrogen.pdb 7 | C:\Users\zwola\source\repos\nitrogen\nitrogen\obj\Debug\net6.0\nitrogen.GeneratedMSBuildEditorConfig.editorconfig 8 | C:\Users\zwola\source\repos\nitrogen\nitrogen\obj\Debug\net6.0\nitrogen.AssemblyInfoInputs.cache 9 | C:\Users\zwola\source\repos\nitrogen\nitrogen\obj\Debug\net6.0\nitrogen.AssemblyInfo.cs 10 | C:\Users\zwola\source\repos\nitrogen\nitrogen\obj\Debug\net6.0\nitrogen.csproj.CoreCompileInputs.cache 11 | C:\Users\zwola\source\repos\nitrogen\nitrogen\obj\Debug\net6.0\nitrogen.dll 12 | C:\Users\zwola\source\repos\nitrogen\nitrogen\obj\Debug\net6.0\ref\nitrogen.dll 13 | C:\Users\zwola\source\repos\nitrogen\nitrogen\obj\Debug\net6.0\nitrogen.pdb 14 | C:\Users\zwola\source\repos\nitrogen\nitrogen\obj\Debug\net6.0\nitrogen.genruntimeconfig.cache 15 | -------------------------------------------------------------------------------- /nitrogen/obj/project.assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "targets": { 4 | "net6.0": {} 5 | }, 6 | "libraries": {}, 7 | "projectFileDependencyGroups": { 8 | "net6.0": [] 9 | }, 10 | "packageFolders": { 11 | "C:\\Users\\zwola\\.nuget\\packages\\": {} 12 | }, 13 | "project": { 14 | "version": "1.0.0", 15 | "restore": { 16 | "projectUniqueName": "C:\\Users\\zwola\\source\\repos\\nitrogen\\nitrogen\\nitrogen.csproj", 17 | "projectName": "nitrogen", 18 | "projectPath": "C:\\Users\\zwola\\source\\repos\\nitrogen\\nitrogen\\nitrogen.csproj", 19 | "packagesPath": "C:\\Users\\zwola\\.nuget\\packages\\", 20 | "outputPath": "C:\\Users\\zwola\\source\\repos\\nitrogen\\nitrogen\\obj\\", 21 | "projectStyle": "PackageReference", 22 | "configFilePaths": [ 23 | "C:\\Users\\zwola\\AppData\\Roaming\\NuGet\\NuGet.Config", 24 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 25 | ], 26 | "originalTargetFrameworks": [ 27 | "net6.0" 28 | ], 29 | "sources": { 30 | "https://api.nuget.org/v3/index.json": {} 31 | }, 32 | "frameworks": { 33 | "net6.0": { 34 | "targetAlias": "net6.0", 35 | "projectReferences": {} 36 | } 37 | }, 38 | "warningProperties": { 39 | "warnAsError": [ 40 | "NU1605" 41 | ] 42 | } 43 | }, 44 | "frameworks": { 45 | "net6.0": { 46 | "targetAlias": "net6.0", 47 | "imports": [ 48 | "net461", 49 | "net462", 50 | "net47", 51 | "net471", 52 | "net472", 53 | "net48" 54 | ], 55 | "assetTargetFallback": true, 56 | "warn": true, 57 | "frameworkReferences": { 58 | "Microsoft.NETCore.App": { 59 | "privateAssets": "all" 60 | } 61 | }, 62 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json" 63 | } 64 | } 65 | } 66 | } -------------------------------------------------------------------------------- /nitrogen/obj/nitrogen.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "C:\\Users\\zwola\\source\\repos\\nitrogen\\nitrogen\\nitrogen.csproj": {} 5 | }, 6 | "projects": { 7 | "C:\\Users\\zwola\\source\\repos\\nitrogen\\nitrogen\\nitrogen.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "C:\\Users\\zwola\\source\\repos\\nitrogen\\nitrogen\\nitrogen.csproj", 11 | "projectName": "nitrogen", 12 | "projectPath": "C:\\Users\\zwola\\source\\repos\\nitrogen\\nitrogen\\nitrogen.csproj", 13 | "packagesPath": "C:\\Users\\zwola\\.nuget\\packages\\", 14 | "outputPath": "C:\\Users\\zwola\\source\\repos\\nitrogen\\nitrogen\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "C:\\Users\\zwola\\AppData\\Roaming\\NuGet\\NuGet.Config", 18 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 19 | ], 20 | "originalTargetFrameworks": [ 21 | "net6.0" 22 | ], 23 | "sources": { 24 | "https://api.nuget.org/v3/index.json": {} 25 | }, 26 | "frameworks": { 27 | "net6.0": { 28 | "targetAlias": "net6.0", 29 | "projectReferences": {} 30 | } 31 | }, 32 | "warningProperties": { 33 | "warnAsError": [ 34 | "NU1605" 35 | ] 36 | } 37 | }, 38 | "frameworks": { 39 | "net6.0": { 40 | "targetAlias": "net6.0", 41 | "imports": [ 42 | "net461", 43 | "net462", 44 | "net47", 45 | "net471", 46 | "net472", 47 | "net48" 48 | ], 49 | "assetTargetFallback": true, 50 | "warn": true, 51 | "frameworkReferences": { 52 | "Microsoft.NETCore.App": { 53 | "privateAssets": "all" 54 | } 55 | }, 56 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json" 57 | } 58 | } 59 | } 60 | } 61 | } -------------------------------------------------------------------------------- /nitrogen/Program.cs: -------------------------------------------------------------------------------- 1 | using System.Threading; 2 | 3 | 4 | 5 | var chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; 6 | var stringChars = new char[16]; 7 | var random = new Random(); 8 | Console.ForegroundColor = ConsoleColor.Blue; 9 | string text = @" 10 | _ _ _ _______ _____ __ __ _______ ______ _____ ______ _ _ ______ _____ _______ ____ _____ 11 | | | | | | |__ __|_ _| \/ | /\|__ __| ____| / ____| ____| \ | | ____| __ \ /\|__ __/ __ \| __ \ 12 | | | | | | | | | | | \ / | / \ | | | |__ | | __| |__ | \| | |__ | |__) | / \ | | | | | | |__) | 13 | | | | | | | | | | | |\/| | / /\ \ | | | __| | | |_ | __| | . ` | __| | _ / / /\ \ | | | | | | _ / 14 | | |__| | |____| | _| |_| | | |/ ____ \| | | |____ | |__| | |____| |\ | |____| | \ \ / ____ \| | | |__| | | \ \ 15 | \____/|______|_| |_____|_| |_/_/ \_|_| |______| \_____|______|_| \_|______|_| \_/_/ \_|_| \____/|_| \_\ 16 | 17 | 18 | "; 19 | Console.WriteLine(text); 20 | Thread.Sleep(2000); 21 | Console.Clear(); 22 | Console.WriteLine(text); 23 | Console.WriteLine("What do you want generate? "); 24 | Console.WriteLine("[1] Discord Nitro"); 25 | Console.WriteLine("[2] PaySafeCard Code"); 26 | Console.WriteLine("[3] Steam Gift Codes"); 27 | Console.Write(">"); 28 | var wybor = Convert.ToInt32(Console.ReadLine()); 29 | Console.Clear(); 30 | if (wybor == 1) 31 | { 32 | Console.WriteLine(text); 33 | Console.WriteLine("HOW MANY DISCORD NITRO CODES DO YOU WANT GENERATE?: "); 34 | Console.Write(">"); 35 | var dlugosc = Convert.ToInt32(Console.ReadLine()); 36 | Console.Clear(); 37 | Console.WriteLine(text); 38 | Console.WriteLine("Generating..."); 39 | using (StreamWriter writer = new StreamWriter("nitrocodes.txt", true)) 40 | { 41 | writer.WriteLine("########## NITRO CODES GENERATED BY ULTIMATEGENERATOR ##########"); 42 | writer.WriteLine("########## IF YOU WANT CHECK IT MANUALLY WRITE DISCORD.GIFT/ BEFORE THE CODE ##########"); 43 | } 44 | for (int j = 0; j < dlugosc; j++) 45 | { 46 | for (int i = 0; i < stringChars.Length; i++) 47 | { 48 | stringChars[i] = chars[random.Next(chars.Length)]; 49 | } 50 | var finalString = new String(stringChars); 51 | Console.WriteLine("discord.gift/" + finalString); 52 | using (StreamWriter writer = new StreamWriter("nitrocodes.txt", true)) 53 | { 54 | writer.WriteLine(finalString); 55 | } 56 | } 57 | Console.WriteLine("Nitro codes are saved in nitrocodes.txt"); 58 | Console.WriteLine("YOUR CODES ARE READY TO CHECK!"); 59 | Console.ReadKey(); 60 | } 61 | if (wybor == 2) 62 | { 63 | 64 | var numbers = "0123456789"; 65 | var intNumbers = new char[16]; 66 | var randomnumbers = new Random(); 67 | Console.WriteLine(text); 68 | Console.WriteLine("HOW MANY PAYSAFECARD CODES DO YOU WANT GENERATE?: "); 69 | Console.Write(">"); 70 | var dlugosc = Convert.ToInt32(Console.ReadLine()); 71 | Console.Clear(); 72 | Console.WriteLine("Generating..."); 73 | using (StreamWriter writer = new StreamWriter("codespsc.txt", true)) 74 | { 75 | writer.WriteLine("########## PAYSAFECARD CODES GENERATED BY ULTIMATEGENERATOR ##########"); 76 | } 77 | for (int j = 0; j < dlugosc; j++) 78 | { 79 | for (int i = 0; i < intNumbers.Length; i++) 80 | { 81 | intNumbers[i] = numbers[random.Next(numbers.Length)]; 82 | } 83 | var finalNumbers = new String(intNumbers); 84 | Console.WriteLine(finalNumbers); 85 | using (StreamWriter writer = new StreamWriter("codespsc.txt", true)) 86 | { 87 | writer.WriteLine(finalNumbers); 88 | } 89 | } 90 | Console.WriteLine("PAYSAFECARD CODES ARE SAVED IN codespsc.txt"); 91 | Console.ReadKey(); 92 | } 93 | if (wybor == 3) 94 | { 95 | 96 | var steamchars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; 97 | var stringSteam = new char[15]; 98 | var randomsteam = new Random(); 99 | Console.WriteLine(text); 100 | Console.WriteLine("HOW MANY STEAM GIFT CODES DO YOU WANT GENERATE?: "); 101 | Console.Write(">"); 102 | var dlugosc = Convert.ToInt32(Console.ReadLine()); 103 | Console.Clear(); 104 | Console.WriteLine("Generating..."); 105 | using (StreamWriter writer = new StreamWriter("steamcodes.txt", true)) 106 | { 107 | writer.WriteLine("########## STEAM GIFT CODES GENERATED BY ULTIMATEGENERATOR ##########"); 108 | } 109 | for (int j = 0; j < dlugosc; j++) 110 | { 111 | for (int i = 0; i < stringSteam.Length; i++) 112 | { 113 | stringSteam[i] = steamchars[random.Next(steamchars.Length)]; 114 | } 115 | var finalSteam = new String(stringSteam); 116 | Console.WriteLine(finalSteam); 117 | using (StreamWriter writer = new StreamWriter("steamcodes.txt", true)) 118 | { 119 | writer.WriteLine(finalSteam); 120 | } 121 | } 122 | Console.WriteLine("STEAM GIFT CODES ARE SAVED IN steamcodes.txt"); 123 | Console.ReadKey(); 124 | } 125 | 126 | 127 | 128 | --------------------------------------------------------------------------------