Finished Create Program functionality (needs testing) and did work on Tutorial

This commit is contained in:
Daniel Xie
2017-03-31 16:47:06 -05:00
parent 8de538a59a
commit 14684dd6d5
12 changed files with 893 additions and 681 deletions
+18 -7
View File
@@ -1,17 +1,22 @@
CONSTANTS = {
//Max level for any skill. Determined by max numerical value in javascript and the skill level
//formula in Player.js
MaxSkillLevel: 1025,
MaxSkillLevel: 975,
//How much reputation is needed to join a megacorporation's faction
CorpFactionRepRequirement: 250000,
/* Script related things */
//Time (ms) it takes to run one operation in Netscript.
CodeInstructionRunTime: 1500,
//Time (seconds) it takes to run one operation in Netscript OFFLINE
CodeOfflineExecutionTime: 10,
//Maximum number of log entries for a script
MaxLogCapacity: 20,
//Programs
PortHackProgram: "PortHack.exe",
BruteSSHProgram: "BruteSSH.exe",
@@ -37,15 +42,21 @@ CONSTANTS = {
"ps Display all scripts that are currently running<br>" +
"rm Delete a script/program from the machine. (WARNING: Permanent)<br>" +
"run [script/program] Execute a program or a script<br>" +
"scan See 'netstat' command<br>" +
"scan See 'netstat' command<br>" +
"tail Display script logs (logs contain details about active scripts)"
"telnet [ip/hostname] See 'connect' command<br>" +
"top Display all running scripts and their RAM usage<br>",
//TutorialGettingStartedText:
//TutorialServersText:
//TutorialScriptText:
/* Tutorial related things */
TutorialGettingStartedText:
TutorialNetworkingText:
TutorialHackingText:
TutorialScriptsText:
TutorialTravelingText:
TutorialJobsText:
TutorialFactionsText:
TutorialAugmentationsText: