2016-10-16 01:23:04 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>Netburner</title>
|
2016-10-17 10:24:39 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="css/styles.css" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="css/terminal.css" />
|
2016-11-24 23:30:33 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="css/menupages.css" />
|
2017-02-08 01:27:11 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="css/workinprogress.css" />
|
2017-02-16 19:52:11 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="css/popupboxes.css" />
|
2016-10-17 10:24:39 +02:00
|
|
|
|
2016-11-17 23:25:40 +01:00
|
|
|
<!-- We'll add in the jQuery library here - direct from
|
|
|
|
the Google CDN (Content Delivery Network). -->
|
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
|
|
|
|
|
2016-12-01 23:18:18 +01:00
|
|
|
<!-- Utils -->
|
|
|
|
<script src="utils/IPAddress.js"></script>
|
|
|
|
<script src="utils/JSONReviver.js"></script>
|
2016-12-15 18:51:23 +01:00
|
|
|
<script src="utils/StringHelperFunctions.js"></script>
|
2017-04-19 21:19:33 +02:00
|
|
|
<script src="utils/HelperFunctions.js"></script>
|
2017-02-03 23:05:59 +01:00
|
|
|
<script src="utils/DialogBox.js"></script>
|
|
|
|
<script src="utils/PurchaseServerBox.js"></script>
|
2017-02-16 19:52:11 +01:00
|
|
|
<script src="utils/FactionInvitationBox.js"></script>
|
2017-02-17 23:19:25 +01:00
|
|
|
<script src="utils/PurchaseAugmentationBox.js"></script>
|
2017-04-13 19:33:34 +02:00
|
|
|
<script src="utils/TravelBox.js"></script>
|
2016-12-01 23:18:18 +01:00
|
|
|
|
|
|
|
<!-- Netscript -->
|
2016-11-28 23:02:06 +01:00
|
|
|
<script src="src/netscript/NetScriptWorker.js"></script>
|
2016-11-30 00:07:24 +01:00
|
|
|
<script src="src/netscript/InputStream.js"></script>
|
|
|
|
<script src="src/netscript/Tokenizer.js"></script>
|
|
|
|
<script src="src/netscript/Parser.js"></script>
|
|
|
|
<script src="src/netscript/Evaluator.js"></script>
|
|
|
|
<script src="src/netscript/Environment.js"></script>
|
2016-11-21 07:11:14 +01:00
|
|
|
|
2016-12-01 23:18:18 +01:00
|
|
|
<!-- Main game files -->
|
2016-11-17 23:25:40 +01:00
|
|
|
<script src="src/Constants.js"></script>
|
2017-02-16 19:52:11 +01:00
|
|
|
<script src="src/SpecialServerIps.js"></script>
|
2017-01-31 04:41:42 +01:00
|
|
|
<script src="src/Location.js"></script>
|
2016-12-14 22:44:18 +01:00
|
|
|
<script src="src/Script.js"></script>
|
2016-11-17 23:25:40 +01:00
|
|
|
<script src="src/Server.js"></script>
|
|
|
|
<script src="src/Player.js"></script>
|
|
|
|
<script src="src/Faction.js"></script>
|
2017-04-19 21:19:33 +02:00
|
|
|
<script src="src/FactionInfo.js"></script>
|
2016-11-17 23:25:40 +01:00
|
|
|
<script src="src/Company.js"></script>
|
2017-02-03 23:05:59 +01:00
|
|
|
<script src="src/CompanyJobApplication.js"></script>
|
2016-11-17 23:25:40 +01:00
|
|
|
<script src="src/Terminal.js"></script>
|
2017-02-03 23:05:59 +01:00
|
|
|
<script src="src/PurchaseServers.js"></script>
|
2017-02-28 22:20:37 +01:00
|
|
|
<script src="src/CreateProgram.js"></script>
|
2017-02-27 23:14:11 +01:00
|
|
|
<script src="src/Augmentations.js"></script>
|
2017-04-13 19:33:34 +02:00
|
|
|
<script src="src/Perk.js"></script>
|
2016-11-17 23:25:40 +01:00
|
|
|
|
|
|
|
<script src="src/engine.js"></script>
|
2016-11-24 23:30:33 +01:00
|
|
|
|
2016-10-16 01:23:04 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2016-10-17 10:24:39 +02:00
|
|
|
<div id="mainmenu-container">
|
|
|
|
<!-- Main menu -->
|
|
|
|
<ul class="mainmenu">
|
|
|
|
<li class="terminal-tab">
|
|
|
|
<a href="#" id="terminal-menu-link"> Terminal </a>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li class="character-tab">
|
|
|
|
<a href="#" id="character-menu-link"> Character </a>
|
|
|
|
</li>
|
2016-10-27 20:26:00 +02:00
|
|
|
|
2016-12-19 19:20:19 +01:00
|
|
|
<!-- These scripts stuff should be hidden until level 2, but leave them visible for now to test -->
|
2016-11-24 23:30:33 +01:00
|
|
|
<li class="create-script-tab">
|
2016-10-27 20:26:00 +02:00
|
|
|
<a href="#" id="create-script-menu-link"> Create Script </a>
|
|
|
|
</li>
|
|
|
|
|
2016-12-19 19:20:19 +01:00
|
|
|
<li class="active-scripts-tab">
|
|
|
|
<a href="#" id="active-scripts-menu-link"> Active Scripts </a>
|
2016-12-01 23:59:51 +01:00
|
|
|
</li>
|
|
|
|
|
2016-12-22 18:13:00 +01:00
|
|
|
<li class="world-tab">
|
2016-10-27 20:26:00 +02:00
|
|
|
<a href="#" id="world-menu-link"> World </a>
|
|
|
|
</li>
|
|
|
|
|
2016-12-22 18:13:00 +01:00
|
|
|
<li class="create-program-tab">
|
2016-12-01 23:59:51 +01:00
|
|
|
<a href="#" id="create-program-menu-link"> Create Program </a>
|
2016-10-17 10:24:39 +02:00
|
|
|
</li>
|
2016-12-01 23:18:18 +01:00
|
|
|
|
2016-12-22 18:13:00 +01:00
|
|
|
<li class="factions-tab">
|
2016-12-22 17:19:02 +01:00
|
|
|
<a href="#" id="factions-menu-link"> Factions </a>
|
|
|
|
</li>
|
|
|
|
|
2016-12-22 18:13:00 +01:00
|
|
|
<li class="augmentations-tab">
|
2016-12-22 17:19:02 +01:00
|
|
|
<a href="#" id="augmentations-menu-link"> Augmentations </a>
|
2016-12-19 21:59:13 +01:00
|
|
|
</li>
|
|
|
|
|
2016-12-21 17:33:00 +01:00
|
|
|
<li class="tutorial-tab">
|
|
|
|
<a href="#" id="tutorial-menu-link"> Tutorial </a>
|
|
|
|
</li>
|
|
|
|
|
2016-12-01 23:18:18 +01:00
|
|
|
<li class="save-game-tab">
|
|
|
|
<a href="#" id="save-game-link"> Save Game </a>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li class="delete-game-tab">
|
|
|
|
<a href="#" id="delete-game-link"> Delete Game </a>
|
|
|
|
</li>
|
2016-10-17 10:24:39 +02:00
|
|
|
</ul>
|
2016-10-16 01:23:04 +02:00
|
|
|
</div>
|
|
|
|
|
2016-11-24 23:30:33 +01:00
|
|
|
<!-- Terminal page -->
|
2016-10-17 10:24:39 +02:00
|
|
|
<div id="terminal-container">
|
|
|
|
<table id="terminal">
|
|
|
|
<tr id="terminal-input">
|
2016-10-27 20:26:00 +02:00
|
|
|
<td id="terminal-input-td">$ <input type="text" class="terminal-input"/></td>
|
2016-10-17 10:24:39 +02:00
|
|
|
</tr>
|
|
|
|
|
2016-11-24 23:30:33 +01:00
|
|
|
</table>
|
|
|
|
</div>
|
2016-10-17 10:24:39 +02:00
|
|
|
|
2016-11-24 23:30:33 +01:00
|
|
|
<!-- Character Info page -->
|
2016-10-17 10:24:39 +02:00
|
|
|
<div id="character-container">
|
|
|
|
<p id="character-info"> </p>
|
2016-11-24 23:30:33 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Script editor -->
|
|
|
|
<div id="script-editor-container">
|
2017-04-24 03:43:41 +02:00
|
|
|
<span>
|
2017-04-20 10:29:07 +02:00
|
|
|
<p id="script-editor-filename-tag"> Script name: </p>
|
2017-04-24 03:43:41 +02:00
|
|
|
|
|
|
|
</span>
|
2017-04-20 10:29:07 +02:00
|
|
|
|
|
|
|
<input id="script-editor-filename" type="text" maxlength="30"> </input>
|
|
|
|
<br>
|
2016-11-24 23:30:33 +01:00
|
|
|
<br><br>
|
2017-04-24 03:43:41 +02:00
|
|
|
<textarea id="script-editor-text" autofocus> </textarea>
|
2016-11-24 23:30:33 +01:00
|
|
|
</div>
|
2016-12-19 19:20:19 +01:00
|
|
|
|
|
|
|
<!-- Active scripts info page -->
|
|
|
|
<div id="active-scripts-container">
|
2017-04-18 06:32:17 +02:00
|
|
|
<ul class="active-scripts-list" id="active-scripts-list" style="list-style: none;">
|
2016-12-22 18:13:00 +01:00
|
|
|
</ul>
|
2016-12-19 19:20:19 +01:00
|
|
|
</div>
|
2016-10-17 10:24:39 +02:00
|
|
|
|
2016-12-22 18:13:00 +01:00
|
|
|
<!-- World -->
|
2017-01-11 21:00:51 +01:00
|
|
|
<div id="world-container" class="world-container">
|
|
|
|
<ul id="aevum-locations-list">
|
|
|
|
<li id="aevum-travelagency-li">
|
2017-01-31 04:41:42 +01:00
|
|
|
<a href="#" id="aevum-travelagency" class="a-link-button"> Travel Agency </a>
|
2017-01-11 21:00:51 +01:00
|
|
|
</li>
|
|
|
|
<li id="aevum-ecorp-li">
|
2017-01-31 04:41:42 +01:00
|
|
|
<a href="#" id="aevum-ecorp" class="a-link-button"> ECorp </a>
|
2017-01-11 21:00:51 +01:00
|
|
|
</li>
|
|
|
|
<li id="aevum-bachmanandassociates-li">
|
2017-01-31 04:41:42 +01:00
|
|
|
<a href="#" id="aevum-bachmanandassociates" class="a-link-button"> Bachman & Associates</a>
|
2017-01-11 21:00:51 +01:00
|
|
|
</li>
|
|
|
|
<li id="aevum-clarkeincorporated-li">
|
2017-01-31 04:41:42 +01:00
|
|
|
<a href="#" id="aevum-clarkeincorporated" class="a-link-button"> Clarke Incorporated </a>
|
2017-01-11 21:00:51 +01:00
|
|
|
</li>
|
|
|
|
<li id="aevum-fulcrumtechnologies-li">
|
2017-01-31 04:41:42 +01:00
|
|
|
<a href="#" id="aevum-fulcrumtechnologies" class="a-link-button"> Fulcrum Technologies </a>
|
2017-01-11 21:00:51 +01:00
|
|
|
</li>
|
|
|
|
<li id="aevum-aerocorp-li">
|
2017-01-31 04:41:42 +01:00
|
|
|
<a href="#" id="aevum-aerocorp" class="a-link-button"> AeroCorp </a>
|
2017-01-11 21:00:51 +01:00
|
|
|
</li>
|
|
|
|
<li id="aevum-galacticcybersystems-li">
|
2017-01-31 04:41:42 +01:00
|
|
|
<a href="#" id="aevum-galacticcybersystems" class="a-link-button"> Galactic Cybersystems </a>
|
2017-01-11 21:00:51 +01:00
|
|
|
</li>
|
|
|
|
<li id="aevum-watchdogsecurity-li">
|
2017-01-31 04:41:42 +01:00
|
|
|
<a href="#" id="aevum-watchdogsecurity" class="a-link-button">Watchdog Security </a>
|
2017-01-11 21:00:51 +01:00
|
|
|
</li>
|
|
|
|
<li id="aevum-rhoconstruction-li">
|
2017-01-31 04:41:42 +01:00
|
|
|
<a href="#" id="aevum-rhoconstruction" class="a-link-button">Rho Construction </a>
|
2017-01-11 21:00:51 +01:00
|
|
|
</li>
|
|
|
|
<li id="aevum-aevumpolice-li">
|
2017-01-31 04:41:42 +01:00
|
|
|
<a href="#" id="aevum-aevumpolice" class="a-link-button">Aevum Police</a>
|
2017-01-11 21:00:51 +01:00
|
|
|
</li>
|
|
|
|
<li id="aevum-netlinktechnologies-li">
|
2017-01-31 04:41:42 +01:00
|
|
|
<a href="#" id="aevum-netlinktechnologies" class="a-link-button">NetLink Technologies</a>
|
2017-01-11 21:00:51 +01:00
|
|
|
</li>
|
|
|
|
<li id="aevum-crushfitnessgym-li">
|
2017-01-31 04:41:42 +01:00
|
|
|
<a href="#" id="aevum-crushfitnessgym" class="a-link-button">Crush Fitness Gym </a>
|
2017-01-11 21:00:51 +01:00
|
|
|
</li>
|
|
|
|
<li id="aevum-snapfitnessgym-li">
|
2017-01-31 04:41:42 +01:00
|
|
|
<a href="#" id="aevum-snapfitnessgym" class="a-link-button">Snap Fitness Gym</a>
|
2017-01-11 21:00:51 +01:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<ul id="chongqing-locations-list">
|
|
|
|
<li id="chongqing-travelagency-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="chongqing-travelagency" class="a-link-button"> Travel Agency </a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="chonqging-kuaigonginternational-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="chongqing-kuaigonginternational" class="a-link-button">KuaiGong International </a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="chongqing-solarisspacesystems-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="chongqing-solarisspacesystems" class="a-link-button">Solaris Space Systems</a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<ul id="sector12-locations-list">
|
|
|
|
<li id="sector12-travelagency-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="sector12-travelagency" class="a-link-button">Travel Agency </a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="sector12-megacorp-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="sector12-megacorp" class="a-link-button">MegaCorp</a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="sector12-bladeindustries-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="sector12-bladeindustries" class="a-link-button"> Blade Industries</a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="sector12-foursigma-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="sector12-foursigma" class="a-link-button">Four Sigma</a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="sector12-icarusmicrosystems-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="sector12-icarusmicrosystems" class="a-link-button"> Icarus Microsystems</a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="sector12-universalenergy-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="sector12-universalenergy" class="a-link-button">Universal Energy </a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="sector12-deltaone-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="sector12-deltaone" class="a-link-button">DeltaOne </a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="sector12-cia-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="sector12-cia" class="a-link-button">Central Intelligence Agency </a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="sector12-nsa-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="sector12-nsa" class="a-link-button">National Security Agency </a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="sector12-alphaenterprises-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="sector12-alphaenterprises" class="a-link-button">Alpha Enterprises</a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="sector12-carmichaelsecurity-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="sector12-carmichaelsecurity" class="a-link-button"> Carmichael Security</a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="sector12-foodnstuff-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="sector12-foodnstuff" class="a-link-button">FoodNStuff</a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="sector12-joesguns-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="sector12-joesguns" class="a-link-button"> Joe's Guns</a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="sector12-irongym-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="sector12-irongym" class="a-link-button">Iron Gym </a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="sector12-powerhousegym-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="sector12-powerhousegym" class="a-link-button">Powerhouse Gym</a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<ul id="newtokyo-locations-list">
|
|
|
|
<li id="newtokyo-travelagency-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="newtokyo-travelagency" class="a-link-button"> Travel Agency</a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="newtokyo-defcomm-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="newtokyo-defcomm" class="a-link-button"> DefComm</a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="newtokyo-vitalife-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="newtokyo-vitalife" class="a-link-button">VitaLife </a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="newtokyo-globalpharmaceuticals-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="newtokyo-globalpharmaceuticals" class="a-link-button">Global Pharmaceuticals</a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="newtokyo-noodlebar-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="newtokyo-noodlebar" class="a-link-button">Noodle Bar </a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<ul id="ishima-locations-list">
|
|
|
|
<li id="ishima-travelagency-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="ishima-travelagency" class="a-link-button">Travel Agency </a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="ishima-stormtechnologies-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="ishima-stormtechnologies" class="a-link-button">Storm Technologies</a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="ishima-novamedical-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="ishima-novamedical" class="a-link-button">Nova Medical</a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="ishima-omegasoftware-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="ishima-omegasoftware" class="a-link-button">Omega Software </a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<ul id="volhaven-locations-list">
|
|
|
|
<li id="volhaven-travelagency-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="volhaven-travelagency" class="a-link-button">Travel Agency </a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="volhaven-omnitekincorporated-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="volhaven-omnitekincorporated" class="a-link-button">OmniTek Incorporated </a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="volhaven-nwo-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="volhaven-nwo" class="a-link-button">NWO</a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="volhaven-helislabs-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="volhaven-helioslabs" class="a-link-button">Helios Labs</a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="volhaven-omniacybersystems-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="volhaven-omniacybersystems" class="a-link-button">Omnia Cybersystems</a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="volhaven-lexocorp-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="volhaven-lexocorp" class="a-link-button">LexoCorp</a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="volhaven-syscoresecurities-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="volhaven-syscoresecurities" class="a-link-button">SysCore Securities</a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="volhaven-computek-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="volhaven-computek" class="a-link-button">CompuTek</a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
|
|
|
<li id="volhaven-milleniumfitnessgym-li">
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="volhaven-milleniumfitnessgym" class="a-link-button">Millenium Fitness Gym</a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<li>
|
2017-01-28 04:10:16 +01:00
|
|
|
</ul>
|
2017-01-09 23:14:18 +01:00
|
|
|
</div>
|
2016-12-22 18:13:00 +01:00
|
|
|
|
|
|
|
<!-- Create a program(executable) -->
|
2017-01-09 23:14:18 +01:00
|
|
|
<div id="create-program-container">
|
2017-02-28 23:06:12 +01:00
|
|
|
<ul id="create-program-list">
|
2017-03-31 14:32:04 +02:00
|
|
|
<a class="create-program-a-link-button" id="create-program-porthack" href="#">
|
|
|
|
PortHack.exe
|
|
|
|
</a>
|
2017-03-09 23:49:51 +01:00
|
|
|
|
2017-03-31 14:32:04 +02:00
|
|
|
<a class="create-program-a-link-button" id="create-program-brutessh" href="#">
|
|
|
|
BruteSSH.exe
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<a class="create-program-a-link-button" id="create-program-ftpcrack" href="#">
|
|
|
|
FTPCrack.exe
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<a class="create-program-a-link-button" id="create-program-relaysmtp" href="#">
|
|
|
|
relaySMTP.exe
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<a class="create-program-a-link-button" id="create-program-httpworm" href="#">
|
|
|
|
HTTPWorm.exe
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<a class="create-program-a-link-button" id="create-program-sqlinject" href="#">
|
|
|
|
SQLInject.exe
|
|
|
|
</a>
|
2017-02-28 23:06:12 +01:00
|
|
|
|
|
|
|
</ul>
|
2017-01-09 23:14:18 +01:00
|
|
|
</div>
|
2016-12-22 18:13:00 +01:00
|
|
|
|
|
|
|
<!-- Factions -->
|
|
|
|
<div id="factions-container">
|
2017-01-10 23:23:17 +01:00
|
|
|
<h1> Factions </h1>
|
|
|
|
<p> Lists all factions you have joined </p>
|
2017-01-03 17:24:41 +01:00
|
|
|
<ul class="factions-list" id="factions-list">
|
2016-12-22 18:13:00 +01:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Single Faction info (when you select a faction from the Factions menu) -->
|
|
|
|
<div id="faction-container">
|
2017-01-10 23:23:17 +01:00
|
|
|
<h1 id="faction-name"></h1>
|
2017-01-03 17:24:41 +01:00
|
|
|
<p id="faction-info"></p>
|
2017-01-09 23:14:18 +01:00
|
|
|
|
2017-02-08 23:50:22 +01:00
|
|
|
<p id="faction-reputation"></p>
|
|
|
|
|
2017-01-11 21:00:51 +01:00
|
|
|
<p id="work-description-text">
|
|
|
|
Perform work/carry out assignments for your faction to help further its cause! Each
|
|
|
|
task takes a certain amount of time to complete, which is dependent on your stats. Completing
|
|
|
|
a task will earn you exp and increase your reputation with the faction. Note that you cannot
|
|
|
|
use your terminal or create scripts when you are performing a task!
|
|
|
|
</p>
|
|
|
|
|
2017-01-09 23:14:18 +01:00
|
|
|
<div id="faction-hack-div">
|
2017-02-17 23:19:25 +01:00
|
|
|
<a href="#" id="faction-hack-button" class="a-link-button">Hacking Contracts</a>
|
|
|
|
<p id="faction-hack-text">
|
|
|
|
Complete hacking contracts for your faction! <br>
|
|
|
|
Your effectiveness, which determines how much reputation you gain for this faction, is based on your hacking skill. <br>
|
|
|
|
Gain hacking exp.
|
|
|
|
</p>
|
2017-01-11 21:00:51 +01:00
|
|
|
<div id="faction-hack-text-div">
|
|
|
|
</div>
|
2017-01-09 23:14:18 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="faction-fieldwork-div">
|
2017-02-17 23:19:25 +01:00
|
|
|
<a href="#" id="faction-fieldwork-button" class="a-link-button">Field Work</a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<div id="faction-fieldwork-text-div">
|
2017-02-17 23:19:25 +01:00
|
|
|
<p id="faction-fieldwork-text">
|
|
|
|
Carry out field missions for your faction. <br>
|
|
|
|
Your effectiveness, which determines how much reputation you gain for this faction, is based on all of your stats. <br>
|
|
|
|
Gains exp for all stats.
|
|
|
|
</p>
|
2017-01-11 21:00:51 +01:00
|
|
|
</div>
|
2017-01-09 23:14:18 +01:00
|
|
|
</div>
|
|
|
|
|
2017-01-11 21:00:51 +01:00
|
|
|
<div id="faction-securitywork-div">
|
2017-02-17 23:19:25 +01:00
|
|
|
<a href="#" id="faction-securitywork-button" class="a-link-button">Security Work</a>
|
2017-01-11 21:00:51 +01:00
|
|
|
<div id="faction-securitywork-text-div">
|
2017-02-17 23:19:25 +01:00
|
|
|
<p id="faction-securitywork-text">
|
|
|
|
Serve in a security detail for your faction. <br>
|
|
|
|
Your effectiveness, which determines how much reputation you gain for this faction, is based on your combat stats. <br>
|
|
|
|
Gains exp for all combat stats.
|
|
|
|
</p>
|
2017-01-11 21:00:51 +01:00
|
|
|
</div>
|
2017-01-09 23:14:18 +01:00
|
|
|
</div>
|
2017-02-17 23:19:25 +01:00
|
|
|
|
|
|
|
<p>
|
|
|
|
As your reputation with this faction rises, you will unlock Augmentations, which you
|
|
|
|
can purchase to enhance your abilities.
|
|
|
|
</p>
|
|
|
|
<a href="#" id="faction-purchase-augmentations" class="a-link-button">Purchase Augmentations</a>
|
2016-12-22 18:13:00 +01:00
|
|
|
</div>
|
2017-02-17 23:19:25 +01:00
|
|
|
|
|
|
|
<div id="faction-augmentations-container">
|
2017-04-19 23:39:25 +02:00
|
|
|
<a href="#" id="faction-augmentations-back-button" class="a-link-button"> Back </a>
|
2017-02-28 18:10:35 +01:00
|
|
|
<h1> Faction Augmentations </h1>
|
2017-02-28 18:47:43 +01:00
|
|
|
<p id="faction-augmentations-page-desc"> Lists all augmentations that are available to purchase from </p>
|
2017-04-19 23:39:25 +02:00
|
|
|
|
2017-02-28 18:10:35 +01:00
|
|
|
<ul class="faction-augmentations-list" id="faction-augmentations-list">
|
2017-02-17 23:19:25 +01:00
|
|
|
</ul>
|
|
|
|
</div>
|
2016-12-22 18:13:00 +01:00
|
|
|
|
|
|
|
<!-- Installed augmentations -->
|
2017-01-09 23:14:18 +01:00
|
|
|
<div id="augmentations-container">
|
2017-02-28 18:47:43 +01:00
|
|
|
<h1> Augmentations </h1>
|
|
|
|
<p> Lists all augmentations you have installed </p>
|
2017-02-20 23:45:36 +01:00
|
|
|
<ul id="augmentations-list">
|
|
|
|
</ul>
|
2017-01-09 23:14:18 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Tutorial content -->
|
|
|
|
<div id="tutorial-container">
|
2017-03-31 23:47:06 +02:00
|
|
|
<a href="#" id="tutorial-getting-started-link" class="a-link-button"> Getting Started </a>
|
|
|
|
<a href="#" id="tutorial-networking-link" class="a-link-button"> Networking </a>
|
|
|
|
<a href="#" id="tutorial-hacking-link" class="a-link-button"> Hacking </a>
|
|
|
|
<a href="#" id="tutorial-scripts-link" class="a-link-button"> Scripts </a>
|
|
|
|
<a href="#" id="tutorial-traveling-link" class="a-link-button"> Traveling </a>
|
|
|
|
<a href="#" id="tutorial-jobs-link" class="a-link-button"> Jobs </a>
|
|
|
|
<a href="#" id="tutorial-factions-link" class="a-link-button"> Factions </a>
|
|
|
|
<a href="#" id="tutorial-augmentations-link" class="a-link-button"> Augmentations </a>
|
|
|
|
|
|
|
|
<a href="#" id="tutorial-back-button" class="a-link-button"> Back </a>
|
|
|
|
<p id="tutorial-text"> </p>
|
2017-01-31 04:41:42 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Location (visiting a location in World) -->
|
|
|
|
<div id="location-container">
|
2017-01-31 05:43:33 +01:00
|
|
|
<a href="#" id="location-return-to-world-button" class="a-link-button"> Return to World </a>
|
2017-01-31 04:41:42 +01:00
|
|
|
<h1 id="location-name"></h1>
|
|
|
|
<p id="location-info"> </p>
|
|
|
|
|
2017-02-03 00:33:47 +01:00
|
|
|
<p id="location-job-title"> </p>
|
2017-02-06 06:01:01 +01:00
|
|
|
<p id="location-job-reputation"> </p>
|
|
|
|
|
2017-01-31 04:41:42 +01:00
|
|
|
<!-- Jobs/Work at a company -->
|
|
|
|
<a href="#" id="location-software-job" class="a-link-button"> Apply for Software Job</a>
|
|
|
|
<a href="#" id="location-it-job" class="a-link-button"> Apply for IT Job </a>
|
|
|
|
<a href="#" id="location-security-engineer-job" class="a-link-button"> Apply for Security Engineer Job</a>
|
|
|
|
<a href="#" id="location-network-engineer-job" class="a-link-button"> Apply for Network Engineer Job</a>
|
|
|
|
<a href="#" id="location-business-job" class="a-link-button"> Apply for Business Job</a>
|
|
|
|
<a href="#" id="location-security-job" class="a-link-button"> Apply for Security Job</a>
|
|
|
|
<a href="#" id="location-agent-job" class="a-link-button"> Apply to be an Agent</a>
|
|
|
|
<a href="#" id="location-employee-job" class="a-link-button"> Apply to be an Employee </a>
|
|
|
|
<a href="#" id="location-waiter-job" class="a-link-button"> Apply to be a Waiter</a>
|
|
|
|
|
|
|
|
<a href="#" id="location-work" class="a-link-button"> Work </a>
|
|
|
|
|
|
|
|
<!-- Gym -->
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="location-gym-train-str" class="a-link-button">Train Strength</a>
|
|
|
|
<a href="#" id="location-gym-train-def" class="a-link-button">Train Defense </a>
|
|
|
|
<a href="#" id="location-gym-train-dex" class="a-link-button">Train Dexterity</a>
|
|
|
|
<a href="#" id="location-gym-train-agi" class="a-link-button">Train Agility</a>
|
2017-01-31 04:41:42 +01:00
|
|
|
|
|
|
|
<!-- Purchase servers -->
|
2017-04-24 03:43:41 +02:00
|
|
|
<a href="#" id="location-purchase-1gb" class="a-link-button"> Purchase 1GB Server - $50,000</a>
|
|
|
|
<a href="#" id="location-purchase-2gb" class="a-link-button"> Purchase 2GB Server - $100,000</a>
|
|
|
|
<a href="#" id="location-purchase-4gb" class="a-link-button"> Purchase 4GB Server - $250,000</a>
|
|
|
|
<a href="#" id="location-purchase-8gb" class="a-link-button"> Purchase 8GB Server - $1,000,000</a>
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="location-purchase-16gb" class="a-link-button"> Purchase 16GB Server - $4,000,000</a>
|
2017-04-24 03:43:41 +02:00
|
|
|
<a href="#" id="location-purchase-32gb" class="a-link-button"> Purchase 32GB Server - $10,000,000</a>
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="location-purchase-64gb" class="a-link-button"> Purchase 64GB Server - $20,000,000</a>
|
2017-04-24 03:43:41 +02:00
|
|
|
<a href="#" id="location-purchase-128gb" class="a-link-button"> Purchase 128GB Server - $50,000,000</a>
|
2017-02-03 23:05:59 +01:00
|
|
|
<a href="#" id="location-purchase-256gb" class="a-link-button"> Purchase 256GB Server - $100,000,000</a>
|
|
|
|
<a href="#" id="location-purchase-512gb" class="a-link-button"> Purchase 512GB Server - $250,000,000</a>
|
2017-04-24 03:43:41 +02:00
|
|
|
<a href="#" id="location-purchase-1tb" class="a-link-button"> Purchase 1TB Server - $750,000,000</a>
|
2017-04-13 22:21:03 +02:00
|
|
|
<a href="#" id="location-purchase-tor" class="a-link-button"> Purchase TOR Router - $2,000,000</a>
|
2017-01-31 04:41:42 +01:00
|
|
|
|
|
|
|
<!-- Travel agency -->
|
2017-04-13 19:33:34 +02:00
|
|
|
<p id="location-travel-agency-text">
|
|
|
|
From here, you can travel to any other city! A ticket costs $1,000,000.
|
|
|
|
</p>
|
2017-01-31 04:41:42 +01:00
|
|
|
<a href="#" id="location-travel-to-aevum" class="a-link-button"> Travel to Aevum </a>
|
|
|
|
<a href="#" id="location-travel-to-chongqing" class="a-link-button"> Travel to Chongqing</a>
|
|
|
|
<a href="#" id="location-travel-to-sector12" class="a-link-button"> Travel to Sector-12</a>
|
|
|
|
<a href="#" id="location-travel-to-newtokyo" class="a-link-button"> Travel to New Tokyo</a>
|
|
|
|
<a href="#" id="location-travel-to-ishima" class="a-link-button"> Travel to Ishima</a>
|
|
|
|
<a href="#" id="location-travel-to-volhaven" class="a-link-button"> Travel to Volhaven</a>
|
|
|
|
</div>
|
2017-01-28 04:10:16 +01:00
|
|
|
|
2017-02-03 23:05:59 +01:00
|
|
|
<!-- Dialog Box, displays status text only -->
|
|
|
|
<div id="dialog-box-container">
|
|
|
|
<div id="dialog-box-content">
|
|
|
|
<span id="dialog-box-close-button">×</span>
|
|
|
|
<p id="dialog-box-text-1" class="dialog-box-text"> </p>
|
|
|
|
<p id="dialog-box-text-2" class="dialog-box-text"> </p>
|
|
|
|
<p id="dialog-box-text-3" class="dialog-box-text"> </p>
|
|
|
|
<p id="dialog-box-text-4" class="dialog-box-text"> </p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2017-02-16 19:52:11 +01:00
|
|
|
<!-- Purchase Server Pop-up Box -->
|
2017-02-03 23:05:59 +01:00
|
|
|
<div id="purchase-server-box-container">
|
|
|
|
<div id="purchase-server-box-content">
|
|
|
|
<p id="purchase-server-box-text"> </p>
|
|
|
|
<p id="purchase-server-box-enter-name"> Enter new server hostname: </p>
|
|
|
|
<input type="text" id="purchase-server-box-input" pattern="[a-zA-Z0-9-_]+ maxlength="30"> </input>
|
|
|
|
<span id="purchase-server-box-confirm"> Purchase </span>
|
|
|
|
<span id="purchase-server-box-cancel"> Cancel </span>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-04-13 19:33:34 +02:00
|
|
|
|
|
|
|
<!-- Travel Pop-up Box -->
|
|
|
|
<div id="travel-box-container">
|
2017-04-18 06:32:17 +02:00
|
|
|
<div id="travel-box-content">
|
2017-04-13 19:33:34 +02:00
|
|
|
<p id="travel-box-text"> </p>
|
|
|
|
<span id="travel-box-confirm"> Yes </span>
|
|
|
|
<span id="travel-box-cancel"> No </span>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-02-17 23:19:25 +01:00
|
|
|
|
|
|
|
<!-- Purchase Augmentation Pop-up Box -->
|
|
|
|
<div id="purchase-augmentation-box-container">
|
|
|
|
<div id="purchase-augmentation-box-content">
|
|
|
|
<p id="purchase-augmentation-box-text"> </p>
|
|
|
|
<p> WARNING: Purchasing an Augmentation resets most of your progress, including: <br>
|
|
|
|
Stats/Skill levels and Experience <br>
|
|
|
|
Money <br>
|
|
|
|
Scripts <br>
|
|
|
|
Faction/Company reputation <br><br>
|
|
|
|
Purchasing an Augmentation lets you start over with the perks and benefits granted by all
|
|
|
|
of the Augmentations you have ever purchased (purchasing an Augmentation does not reset the benefits
|
|
|
|
of Augmentations you have previously purchased).
|
|
|
|
<p>
|
|
|
|
<span id="purchase-augmentation-box-confirm"> Purchase </span>
|
|
|
|
<span id="purchase-augmentation-box-cancel"> Cancel </span>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-02-03 23:05:59 +01:00
|
|
|
|
2017-02-16 19:52:11 +01:00
|
|
|
<!-- Faction Invitation Pop-up Box -->
|
|
|
|
<div id="faction-invitation-box-container">
|
|
|
|
<div id="faction-invitation-box-content">
|
|
|
|
<p id="faction-invitation-box-text"> </p>
|
|
|
|
<p id="faction-invitation-box-message"> </p>
|
|
|
|
<p id="faction-invitation-box-warning">
|
|
|
|
Would you like to join? <br> <br>
|
|
|
|
Warning: Joining this faction may prevent you from joining other factions during this run!
|
|
|
|
</p>
|
|
|
|
<span id="faction-invitation-box-yes"> Yes </span>
|
|
|
|
<span id="faction-invitation-box-no"> No </span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2017-02-06 06:01:01 +01:00
|
|
|
<!-- Work in progress screen -->
|
|
|
|
<div id="work-in-progress-container">
|
|
|
|
<p id="work-in-progress-text"> </p>
|
|
|
|
|
|
|
|
<span id="work-in-progress-cancel-button"> Cancel Work </span>
|
|
|
|
</div>
|
|
|
|
|
2016-10-16 01:23:04 +02:00
|
|
|
</body>
|
|
|
|
</html>
|