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" / >
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 >
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 >
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 >
< script src = "src/Terminal.js" > < / script >
< 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" >
< a href = "#" id = "aevum-travelagency" > Travel Agency < / a >
< / li >
< li id = "aevum-ecorp-li" >
< a href = "#" id = "aevum-ecorp" > ECorp < / a >
< / li >
< li id = "aevum-bachmanandassociates-li" >
< a href = "#" id = "aevum-bachmanandassociates" > Bachman & Associates< / a >
< / li >
< li id = "aevum-clarkeincorporated-li" >
< a href = "#" id = "aevum-clarkeincorporated" > Clarke Incorporated < / a >
< / li >
< li id = "aevum-fulcrumtechnologies-li" >
< a href = "#" id = "aevum-fulcrumtechnologies" > Fulcrum Technologies < / a >
< / li >
< li id = "aevum-aerocorp-li" >
< a href = "#" id = "aevum-aerocorp" > AeroCorp < / a >
< / li >
< li id = "aevum-galacticcybersystems-li" >
< a href = "#" id = "aevum-galacticcybersystems" > Galactic Cybersystems < / a >
< / li >
< li id = "aevum-watchdogsecurity-li" >
< a href = "#" id = "aevum-watchdogsecurity" > Watchdog Security < / a >
< / li >
< li id = "aevum-rhoconstruction-li" >
< a href = "#" id = "aevum-rhoconstruction" > Rho Construction < / a >
< / li >
< li id = "aevum-aevumpolice-li" >
< a href = "#" id = "aevum-aevumpolice" > Aevum Police< / a >
< / li >
< li id = "aevum-netlinktechnologies-li" >
< a href = "#" id = "aevum-netlinktechnologies" > NetLink Technologies< / a >
< / li >
< li id = "aevum-crushfitnessgym-li" >
< a href = "#" id = "aevum-crushfitnessgym" > Crush Fitness Gym < / a >
< / li >
< li id = "aevum-snapfitnessgym-li" >
< a href = "#" id = "aevum-snapfitnessgym" > Snap Fitness Gym< / a >
< / li >
< / ul >
< ul id = "chongqing-locations-list" >
< li id = "chongqing-travelagency-li" >
< a href = "#" id = "chongqing-travelagency" > Travel Agency < / a >
< li >
< li id = "chonqging-kuaigonginternational-li" >
< a href = "#" id = "chongqing-kuaigonginternational" > KuaiGong International < / a >
< li >
< li id = "chongqing-solarisspacesystems-li" >
< a href = "#" id = "chongqing-solarisspacesystems" > Solaris Space Systems< / a >
< li >
< / ul >
< ul id = "sector12-locations-list" >
< li id = "sector12-travelagency-li" >
< a href = "#" id = "sector12-travelagency" > Travel Agency < / a >
< li >
< li id = "sector12-megacorp-li" >
< a href = "#" id = "sector12-megacorp" > MegaCorp< / a >
< li >
< li id = "sector12-bladeindustries-li" >
< a href = "#" id = "sector12-bladeindustries" > Blade Industries< / a >
< li >
< li id = "sector12-foursigma-li" >
< a href = "#" id = "sector12-foursigma" > Four Sigma< / a >
< li >
< li id = "sector12-icarusmicrosystems-li" >
< a href = "#" id = "sector12-icarusmicrosystems" > Icarus Microsystems< / a >
< li >
< li id = "sector12-universalenergy-li" >
< a href = "#" id = "sector12-universalenergy" > Universal Energy < / a >
< li >
< li id = "sector12-deltaone-li" >
< a href = "#" id = "sector12-deltaone" > DeltaOne < / a >
< li >
< li id = "sector12-cia-li" >
< a href = "#" id = "sector12-cia" > Central Intelligence Agency < / a >
< li >
< li id = "sector12-nsa-li" >
< a href = "#" id = "sector12-nsa" > National Security Agency < / a >
< li >
< li id = "sector12-alphaenterprises-li" >
< a href = "#" id = "sector12-alphaenterprises" > Alpha Enterprises< / a >
< li >
< li id = "sector12-carmichaelsecurity-li" >
< a href = "#" id = "sector12-carmichaelsecurity" > Carmichael Security< / a >
< li >
< li id = "sector12-foodnstuff-li" >
< a href = "#" id = "sector12-foodnstuff" > FoodNStuff< / a >
< li >
< li id = "sector12-joesguns-li" >
< a href = "#" id = "sector12-joesguns" > Joe's Guns< / a >
< li >
< li id = "sector12-irongym-li" >
< a href = "#" id = "sector12-irongym" > Iron Gym < / a >
< li >
< li id = "sector12-powerhousegym-li" >
< a href = "#" id = "sector12-powerhousegym" > Powerhouse Gym< / a >
< li >
< / ul >
< ul id = "newtokyo-locations-list" >
< li id = "newtokyo-travelagency-li" >
< a href = "#" id = "newtokyo-travelagency" > Travel Agency< / a >
< li >
< li id = "newtokyo-defcomm-li" >
< a href = "#" id = "newtokyo-defcomm" > DefComm< / a >
< li >
< li id = "newtokyo-vitalife-li" >
< a href = "#" id = "newtokyo-vitalife" > VitaLife < / a >
< li >
< li id = "newtokyo-globalpharmaceuticals-li" >
< a href = "#" id = "newtokyo-globalpharmaceuticals" > Global Pharmaceuticals< / a >
< li >
< li id = "newtokyo-noodlebar-li" >
< a href = "#" id = "newtokyo-noodlebar" > Noodle Bar < / a >
< li >
< / ul >
< ul id = "ishima-locations-list" >
< li id = "ishima-travelagency-li" >
< a href = "#" id = "ishima-travelagency" > Travel Agency < / a >
< li >
< li id = "ishima-stormtechnologies-li" >
< a href = "#" id = "ishima-stormtechnologies" > Storm Technologies< / a >
< li >
< li id = "ishima-novamedical-li" >
< a href = "#" id = "ishima-novamedical" > Nova Medical< / a >
< li >
< li id = "ishima-omegasoftware-li" >
< a href = "#" id = "ishima-omegasoftware" > Omega Software < / a >
< li >
< / ul >
< ul id = "volhaven-locations-list" >
< li id = "volhaven-travelagency-li" >
< a href = "#" id = "volhaven-travelagency" > Travel Agency < / a >
< li >
< li id = "volhaven-omnitekincorporated-li" >
< a href = "#" id = "volhaven-omnitekincorporated" > OmniTek Incorporated < / a >
< li >
< li id = "volhaven-nwo-li" >
< a href = "#" id = "volhaven-nwo" > NWO< / a >
< li >
< li id = "volhaven-helislabs-li" >
< a href = "#" id = "volhaven-helioslabs" > Helios Labs< / a >
< li >
< li id = "volhaven-omniacybersystems-li" >
< a href = "#" id = "volhaven-omniacybersystems" > Omnia Cybersystems< / a >
< li >
< li id = "volhaven-lexocorp-li" >
< a href = "#" id = "volhaven-lexocorp" > LexoCorp< / a >
< li >
< li id = "volhaven-syscoresecurities-li" >
< a href = "#" id = "volhaven-syscoresecurities" > SysCore Securities< / a >
< li >
< li id = "volhaven-computek-li" >
< a href = "#" id = "volhaven-computek" > CompuTek< / a >
< li >
< li id = "volhaven-milleniumfitnessgym-li" >
< a href = "#" id = "volhaven-milleniumfitnessgym" > Millenium Fitness Gym< / a >
< 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-28 04:10:16 +01:00
< / div > -
2016-10-16 01:23:04 +02:00
< / body >
< / html >