Skip to content

Commit 774510e

Browse files
committed
Changed README.md, Renamed deathSeq to startDeathSeq, Renamed canDeathSeq to cancelDeathSeq
1 parent c6c8649 commit 774510e

File tree

2 files changed

+96
-3
lines changed

2 files changed

+96
-3
lines changed

README.md

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,94 @@
11
# DebugMod
2+
3+
Command List:
4+
5+
openAllPorts - Opens all ports on connected computer
6+
bypassProxy - Disable proxy on connected computer
7+
solveFirewall - Solves firewall on connected computer
8+
getAdmin- Gives admin on connected computer
9+
loseAdmin - Lose admin on connected computer
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+
59+
60+
61+
62+
63+
64+
65+
66+
Debug Command:
67+
68+
startDeathSeq - Starts ETAS
69+
cancelDeathSeq - Stops ETAS
70+
setHomeNodeServer - Sets home contracts server
71+
setHomeAssetServer - Sets home assets server
72+
debug - gives all executables in the game (You can't use port exploits that open unhackable ports)
73+
revealAll - Reveals all computers in game save
74+
addIRCMessage - Adds IRC Message to server: Usage: addIRCMessage (ComputerID) (Author) (Message)
75+
strikerAttack - Starts Striker hack
76+
themeAttack - Starts Naix hack
77+
callThePoliceSoTheyCanTraceYou - 100 sec trace
78+
reportYourselfToFBI - 20 sec trace
79+
traceYourselfIn - However long you want trace: Usage: traceYourselfIn (TimeInSeconds)
80+
warningFlash - Shows a warning flash
81+
stopTrace - Stops a trace
82+
hideDisplay - Hides display
83+
hideNetMap - Hides NetMap
84+
hideTerminal - Hides terminal (There is no way to get it back apart from restart the game)
85+
hideRAM - Hides RAM
86+
showDisplay - Shows display
87+
showNetMap - Shows NetMap
88+
showTerminal - Shows Terminal
89+
showRAM - Shows RAM
90+
getUniversalAdmin - Gets admin on every computer in game save
91+
changeAdminPassword - Changes admin password
92+
executeHack - Executes a hacker script (Put hacker scripts in Content/HackerScripts)
93+
generateExampleAcademicRecord - Generates an example academic record
94+
generateExampleMedicalRecord - Generates an example medical record

TemplateMod/OpenAllPortsMod.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ public override void LoadContent()
2525
Command.Handler.AddCommand("loseAdmin", Commands.LoseAdmin, true);
2626
if (DebugEnabled)
2727
{
28-
Command.Handler.AddCommand("deathSeq", Commands.DeathSeq, false);
29-
Command.Handler.AddCommand("canDeathSeq", Commands.CancelDeathSeq, false);
28+
Command.Handler.AddCommand("startDeathSeq", Commands.DeathSeq, false);
29+
Command.Handler.AddCommand("cancelDeathSeq", Commands.CancelDeathSeq, false);
3030
Command.Handler.AddCommand("setHomeNodeServer", Commands.SetHomeNodeServer, false);
3131
Command.Handler.AddCommand("setHomeAssetServer", Commands.SetHomeAssetServer, false);
3232
Command.Handler.AddCommand("debug", Commands.Debug, false);
@@ -48,7 +48,7 @@ public override void LoadContent()
4848
Command.Handler.AddCommand("showTerminal", Commands.ShowTerminal, false);
4949
Command.Handler.AddCommand("showRAM", Commands.ShowRAM, false);
5050
Command.Handler.AddCommand("getUniversalAdmin", Commands.GetUniversalAdmin, false);
51-
Command.Handler.AddCommand("changeAdminPassword", Commands.ChangeAdminPassword, false);
51+
Command.Handler.AddCommand("changeUserDetails", Commands.ChangeUserDetails, false);
5252
Command.Handler.AddCommand("executeHack", Commands.ExecuteHack, false);
5353
Command.Handler.AddCommand("generateExampleAcademicRecord", Commands.GenerateExampleAcadmicRecord, false);
5454
Command.Handler.AddCommand("generateExampleMedicalRecord", Commands.GenerateExampleMedicalRecord, false);

0 commit comments

Comments
 (0)