mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-23 09:42:53 +02:00
Finished Create Program functionality (needs testing) and did work on Tutorial
This commit is contained in:
+18
-7
@@ -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:
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user