-
Notifications
You must be signed in to change notification settings - Fork 14
/
launch.html
62 lines (50 loc) · 1.72 KB
/
launch.html
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<html>
<style>
html, body {
overflow-y: visible;
padding: 4px;
}
</style>
<body>
<h1 style="text-align:center">Web Quake for Chrome</h1>
<div style="text-align:center">
<p>
<input id="launch" type="button" value="Launch Quake" />
<br />
Start playing Quake now!
</p>
<p>
<input id="launch-server" type="button" value="Start Multiplayer Server" />
<br />
Launch a multiplayer server
</p>
<p>
<b>Options</b>
<br />
Disable sound <input id="disablesound" type="checkbox" /><br /><span id="armcrash"></span>
</p>
<hr />
<p>
<input id="donate" type="button" value="Donate via Google Wallet" />
<br />
Consider donating! Your donation means more features such as multiplayer, gamepad support, full version, etc. Please <a target="_blank" href="https://chrome.google.com/webstore/detail/web-quake/ibkbfanmkmadbbgggonficloplenbefh">leave a rating in the Chrome Web Store</a>
</p>
<p>
<input id="addfiles" type="button" value="Add Game .pak File" />
<br />
If you have the files for the full version of Quake (pak1.pak), you can select the folder and play the full version
</p>
</div>
<h4>Credits</h4>
<ul>
<li><a target="_blank" href="http://www.idsoftware.com">id Software</a></li>
<li><a target="_blank" href="https://github.com/3angel/WebQuake">https://github.com/3angel/WebQuake</a></li>
<li><a target="_blank" href="https://github.com/kzahel/WebQuake-Chrome">https://github.com/kzahel/WebQuake-Chrome</a></li>
<li><a target="_blank" href="https://github.com/kzahel/web-server-chrome">https://github.com/kzahel/web-server-chrome</a></li>
</ul>
<script src="WebQuake-async/Client/WebQuake/Store.js"></script>
<script src="common.js"></script>
<script src="launch.js"></script>
<script src="buy.js"></script>
</body>
</html>