-
Notifications
You must be signed in to change notification settings - Fork 3
/
sleuthc.html
58 lines (54 loc) · 1.88 KB
/
sleuthc.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
<!-- Code copyright Ben Collier 2013, Concept copyright Eric N. Miller -->
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script src="crafty.js"></script>
<script src="https://connect.facebook.net/en_US/all.js"></script>
<script src="componentsc.js"></script>
<script src="gamec.js"></script>
<link rel="stylesheet" href="sleuth.css">
<script>
window.addEventListener('load', Game.start);
</script>
</head>
<body>
<div id="game">
<div id="cr-stage"></div>
<div id="dialogue">
It is a dark and stormy Christmas night. A murder is being committed.
</div>
<div id="commands">
> _
</div>
</div>
<div id="fb-root"></div>
<!-- Start of StatCounter Code for Default Guide -->
<script type="text/javascript">
var sc_project=9141097;
var sc_invisible=1;
var sc_security="50f62956";
var scJsHost = (("https:" == document.location.protocol) ?
"https://secure." : "/www.");
document.write("<sc"+"ript type='text/javascript' src='" +
scJsHost+
"statcounter.com/counter/counter.js'></"+"script>");
</script>
<noscript><div class="statcounter"><a title="web analytics"
href="http://statcounter.com/" target="_blank"><img
class="statcounter"
src="http://c.statcounter.com/9141097/0/50f62956/1/"
alt="web analytics"></a></div></noscript>
<!-- End of StatCounter Code for Default Guide -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-3467564-20']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>