diff options
| author | Michael VanOverbeek <[email protected]> | 2016-07-20 06:43:10 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2016-07-20 06:43:10 -0700 |
| commit | 4fe0de40aa9e3dc82de40d447331c39fab5f4c4c (patch) | |
| tree | 9cde5fe3d96d2118330ecbcbb5eaa0d4de1fa4d8 /source/WindowsFormsApplication1/Apps/Terminal.cs | |
| parent | 75516ee42dfb89cbe60cb3d1f0121381bc39317f (diff) | |
| parent | 6cc2ae2259967a09db4143ac8c6b2e2400ffe73a (diff) | |
| download | shiftos-c-_theultimatehacker-4fe0de40aa9e3dc82de40d447331c39fab5f4c4c.tar.gz shiftos-c-_theultimatehacker-4fe0de40aa9e3dc82de40d447331c39fab5f4c4c.tar.bz2 shiftos-c-_theultimatehacker-4fe0de40aa9e3dc82de40d447331c39fab5f4c4c.zip | |
Merge pull request #7 from GabrielTK/master
Added "cheat" Command
Diffstat (limited to 'source/WindowsFormsApplication1/Apps/Terminal.cs')
| -rw-r--r-- | source/WindowsFormsApplication1/Apps/Terminal.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/source/WindowsFormsApplication1/Apps/Terminal.cs b/source/WindowsFormsApplication1/Apps/Terminal.cs index 944b333..8293283 100644 --- a/source/WindowsFormsApplication1/Apps/Terminal.cs +++ b/source/WindowsFormsApplication1/Apps/Terminal.cs @@ -1,4 +1,5 @@ using Newtonsoft.Json; + using System; using System.Collections.Generic; using System.ComponentModel; @@ -1632,6 +1633,20 @@ Password: z7fjsd3"); wrongcommand(); } break; + case "cheat": + if (API.DeveloperMode) + { + WriteLine("Opening..."); + + //Apps.Cheats chts = new Apps.Cheats(); + //chts.Show(); + API.CreateForm(new Apps.Cheats(), "Cheats", API.GetIcon("Terminal")); + } + else + { + wrongcommand(); + } + break; case "netgen": WriteLine("Starting netgen..."); API.CreateForm(new NetGen(), "Network Generator", API.GetIcon("Terminal")); |
