This repository has been archived by the owner on Apr 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rules.html
178 lines (159 loc) · 5.02 KB
/
rules.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>SkullSpace :: Game AI Hackathon</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" type="image/x-icon" href="/img/logo.png" />
<link rel="icon" type="image/x-icon" href="/img/logo.png" />
<!-- Le styles -->
<link href="/css/bootstrap.min.css" rel="stylesheet">
<style type="text/css">
body {
padding-top: 20px;
padding-bottom: 40px;
}
/* Custom container */
.container-narrow {
margin: 0 auto;
max-width: 700px;
}
.container-narrow > hr {
margin: 30px 0;
}
/* Main marketing message and sign up button */
.jumbotron {
margin: 60px 0;
text-align: center;
}
.jumbotron h1 {
font-size: 72px;
line-height: 1;
}
.jumbotron .btn {
font-size: 21px;
padding: 14px 24px;
}
/* Supporting marketing content */
.marketing {
margin: 60px 0;
}
.marketing p + h4 {
margin-top: 28px;
}
</style>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="/js/html5shiv.js"></script>
<![endif]-->
<!-- fork me on github stuff, from http://codepo8.github.com/css-fork-on-github-ribbon/ -->
<style>
#forkongithub a {
background:#a00;
color:#fff;
text-decoration:none;
font-family:arial, sans-serif;
text-align:center;
font-weight:bold;
padding:5px 40px;
font-size:1rem;
line-height:2rem;
position:relative;
transition:0.5s;
}
#forkongithub a:hover {
background:#060;
color:#fff;
}
#forkongithub a::before, #forkongithub a::after {
content:"";
width:100%;
display:block;
position:absolute;
top:1px;
left:0;
height:1px;
background:#fff;
}
#forkongithub a::after {
bottom:1px;
top:auto;
}
@media screen and (min-width:1000px) {
#forkongithub {
position:absolute;
display:block;
top:0;
left:0;
width:200px;
overflow:hidden;
height:200px;
}
#forkongithub a {
width:200px;
position:absolute;
top:60px;
left:-60px;
transform:rotate(-45deg);
-webkit-transform:rotate(-45deg);
box-shadow:4px 4px 10px rgba(0,0,0,0.8);
}
}
</style>
</head>
<body>
<div class="container">
<div class="masthead">
<ul class="nav nav-pills pull-right">
<li><a href="/">Home</a></li>
<li><a href="/about/">About</a></li>
<li><a href="/contact/">Contact</a></li>
<li class="active"><a href="/rules/">Rules</a></li>
<li><a href="/stats/">Stats</a></li>
<li><a href="/api/">API</a></li>
</ul>
<h3 class="muted"><a href="http://skullspace.ca/">SkullSpace</a></h3>
</div>
<hr>
<div class="jumbotron">
<h1>Game AI Hackathon</h1>
<p class="lead">September 19th – 21st, 2014</p>
<a class="btn btn-large btn-success" href="/gameai-sdk-v3.zip">Download SDK v3</a>
</div>
<hr>
<div class="row-fluid marketing">
<div class="span12">
<h3>Rules of the Game AI Hackathon</h3>
<p>There is no 'winner' for the event, due to the difficulty
in accurately ranking bots in the framework of this event
(limitless games, random matchups, etc.). Just have fun and
try to learn something... maybe trash talk a little on IRC.
<p>No attacking the infrastructure! This event is hosted
entirely on a single-use virtual machine running only the
bare minimum to support the game. Attempts to attack the
infrastructure will result in being banned and branded a
jerk.</p>
<p>Don't flood the server! Don't connect more than a single
instance of your bot. Don't repeatedly scrape the website
for statistics. In general, just be considerate and
gentle.</p>
<p>There's nothing wrong with sharing techniques! Feel free
to talk in the #SkullSpace channel on the FreeNode IRC
network about the techniques you're researching or testing
for your bot.</p>
<p>The server is coded to check for anything I could think
of relating to cheating or just general workarounds or
dishonesty, but I've probably missed something
somewhere. Despite that, this is not a CTF, it is a
hackathon about AI, so please resist the temptation.</p>
</div>
</div> <!-- /container -->
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="/js/jquery.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
</body>
</html>