-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (39 loc) · 1.69 KB
/
index.html
File metadata and controls
41 lines (39 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href= "style.css">
</head>
<body>
<div class="game">
<div id="terminal-div">
<textarea id="terminal-window" disabled="true" ></textarea>
<div id="terminal-cli"><span>>>></span><input type="text" maxlength="30" id="terminal-input"></div>
</div>
<div id="canvas-div">
<canvas id="screen" width="600", height="640"></canvas>
</div>
</div>
<div class = "instructions">
<p>
Crawl through the network while enemies try to shutdown your connection.<br>
Use the arrow keys to move the character.<br>
Press the Escape key to set focus on the terminal input.<br>
Type in the 'help' command to list all available commands.<br>
Use the 'install' and 'uninstall' command to equip or unequip programs.<br>
With scripts, type in the name of the script to execute its effect. <br>
'Version' is the level of your character. You may increase it by defeating enemies. <br>
'Latency' is your hp, do not let it reach 400!
</p>
</div>
<script type="text/javascript" src= "util.js"></script>
<script type="text/javascript" src= "messages.js"></script>
<script type="text/javascript" src= "terminal.js"></script>
<script type="text/javascript" src= "entities.js"></script>
<script type="text/javascript" src= "BSP.js"></script>
<script type="text/javascript" src= "items.js"></script>
<script type="text/javascript" src= "dungeon.js"></script>
<script type="text/javascript" src= "scenes.js"></script>
<script type="text/javascript" src= "main.js"></script>
</body>
</html>