-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
48 lines (41 loc) · 1.85 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>CYOA</title>
<link rel="stylesheet" href="style.css">
<script src="home.js"></script>
</head>
<body>
<button onclick="window.location.href='/CYOA/cyoa.html'" id="home_button">Game</button>
<div id="text">
Version: 1.1.3<br />
A full list of adventures can be found <a href="https://github.com/developerdjay/CYOA/tree/master/adventures">here</a>.<br /><br />
<b>Unlocked Adventures:</b>
<ul>
<li>
<a href="javascript:select_cyoa('shadow_of_light.txt');">Shadow of Light</a>
<span id="shadow_of_light.txt_progress">0/10</span>
</li>
<li>
<a href="javascript:select_cyoa('journey_under_the_sea.txt');">Journey Under the Sea</a>
<span id="journey_under_the_sea.txt_progress">0/42</span>
</li>
<li>
<a href="javascript:select_cyoa('secret_of_the_pyramids.txt');">Secret of the Pyramids</a>
<span id="secret_of_the_pyramids.txt_progress">0/22</span>
</li>
</ul>
</div><br />
<button onclick="set_cookie('id','start')" id="fancy_btn">Restart Adventure</button><br><br>
<button onclick="set_cookie('achievements','')" id="fancy_btn">Restart Achievements</button><br><br>
<!-- hitwebcounter Code START
<div id="text">
Total Page Visits: <img id="counter" src="http://hitwebcounter.com/counter/counter.php?page=7158801&style=0007&nbdigits=5&type=page&initCount=0" title="Total Visits" Alt="Total Visits" border="0"><br />
Unique Page Visits: <img id="counter" src="http://hitwebcounter.com/counter/counter.php?page=7158810&style=0007&nbdigits=5&type=ip&initCount=0" title="Unique Visits" Alt="Unique Visits" border="0"><br />
</div>
-->
</body>
<script>
get_achievements();
</script>
</html>