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" / >
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 >
2016-12-19 19:20:19 +01:00
< script src = "utils/ObjectHelperFunctions.js" > < / script >
2017-02-03 23:05:59 +01:00
< script src = "utils/DialogBox.js" > < / script >
< script src = "utils/PurchaseServerBox.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-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 >
< 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 >
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" >
< div id = "script-editor-filename-row-div" >
< p id = "script-editor-filename-tag" > Script name (edit below): < / p >
< input id = "script-editor-filename" type = "text" maxlength = "30" > < / input >
< br >
< p id = "script-editor-status" > < / p >
< / div >
< br > < br >
2017-01-28 04:10:16 +01:00
< textarea id = "script-editor-text" style = "border: none" 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" >
< ul class = "active-scripts-list" id = "active-scripts-list" >
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" >
< / 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-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" >
< div id = "faction-hack-button-div" > < button id = "faction-hack-button" > Hacking Contracts < / button > < / div >
2017-01-11 21:00:51 +01:00
< p id = "faction-hack-text" > Complete hacking contracts for your faction! Speed and effectiveness determined by hacking skill. Gain hacking exp.< / p >
< div id = "faction-hack-text-div" >
< / div >
2017-01-09 23:14:18 +01:00
< / div >
< div id = "faction-fieldwork-div" >
< div id = "faction-fieldwork-button-div" > < button id = "faction-fieldwork-button" > Field Work < / button > < / div >
2017-01-11 21:00:51 +01:00
< div id = "faction-fieldwork-text-div" >
< p id = "faction-fieldwork-text" > Carry out field missions for your faction. Speed and effectiveness determined by all stats. Gains exp for all stats.< / p >
< / div >
2017-01-09 23:14:18 +01:00
< / div >
2017-01-11 21:00:51 +01:00
< div id = "faction-securitywork-div" >
2017-01-09 23:14:18 +01:00
< div id = "faction-securitywork-button-div" > < button id = "faction-securitywork-button" > Security Work < / button > < / div >
2017-01-11 21:00:51 +01:00
< div id = "faction-securitywork-text-div" >
< p id = "faction-securitywork-text" > Serve in a security detail for your faction. Speed and effectiveness determined by combat stats. Gains exp for all combat stats.< / p >
< / div >
2017-01-09 23:14:18 +01:00
< / div >
2016-12-22 18:13:00 +01:00
< / div >
<!-- Installed augmentations -->
2017-01-09 23:14:18 +01:00
< div id = "augmentations-container" >
< / div >
<!-- Tutorial content -->
< div id = "tutorial-container" >
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-02-03 23:05:59 +01:00
< a href = "#" id = "location-purchase-1gb" class = "a-link-button" > Purchase 1GB Server - $100,000< / a >
< a href = "#" id = "location-purchase-2gb" class = "a-link-button" > Purchase 2GB Server - $250,000< / a >
< a href = "#" id = "location-purchase-4gb" class = "a-link-button" > Purchase 4GB Server - $600,000< / a >
< a href = "#" id = "location-purchase-8gb" class = "a-link-button" > Purchase 8GB Server - $1,500,000< / a >
< a href = "#" id = "location-purchase-16gb" class = "a-link-button" > Purchase 16GB Server - $4,000,000< / a >
< a href = "#" id = "location-purchase-32gb" class = "a-link-button" > Purchase 32GB Server - $9,000,000< / a >
< a href = "#" id = "location-purchase-64gb" class = "a-link-button" > Purchase 64GB Server - $20,000,000< / a >
< a href = "#" id = "location-purchase-128gb" class = "a-link-button" > Purchase 128GB Server - $45,000,000< / a >
< 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 >
< a href = "#" id = "location-purchase-1tb" class = "a-link-button" > Purchase 1TB Server - $600,000,000< / a >
2017-01-31 04:41:42 +01:00
<!-- Travel agency -->
< 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 >
<!-- Purchase Server Box -->
< 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-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 >