-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathincreedible-tanks.html
60 lines (58 loc) · 2.57 KB
/
increedible-tanks.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
<!DOCTYPE html>
<html>
<head>
<script async src="https://arc.io/widget.min.js#N3KzQsou">
</script>
<link rel="shortcut icon" href="/starlite-logo.png" type="image/png" />
<link rel='stylesheet' href='/style/increedible-tanks.css' type='text/css' />
<title>Starlite Games | Increedible Tanks</title>
</head>
<body>
<div id='wall'>
<div id="animate">
</div>
</div>
<div id="game" class="container">
<h1 id="gameName"> Increedible Tanks </h1>
<h3 id='fps'></h3>
<h3 id="views"></h3>
<h3 id="users"></h3>
<h2 id='speed'></h2>
<h3 style='height: 30px;' id='saveStatus'></h3>
<div id='fullscreen' style='display:inline;'>
<div id='container' width='500px' style="margin-bottom: -500px; margin-top: 500px;">
<input id='server' type='number' style="display: none; margin-left:250px; width:100px; z-index: 1000000; position: absolute;"/>
<select id='gamemode' style="display: none; margin-left:150px; width:100px; z-index: 1000000; position: absolute;">
<option value='pvp'>Quick Play</option>
<option value='private'>Private Game</option>
</select>
</div>
<canvas width="500" height="500" id="canvas" tabindex='1'>
<strong>Canvas is not supported.</strong> Try using a diffrent browser, If that does not work, please restart your device or use a diffrent device.
</canvas>
<script src="https://browser.sentry-cdn.com/6.2.5/bundle.tracing.min.js" integrity="sha384-xd/W0P7puokZpoEqk4srLDzK5R0WV2B2IZVlA0T4MEU4Fojxk+o+5KF6u43wkTL6" crossorigin="anonymous"></script>
<script>
window.onload = function() {
var gameScript = document.createElement('SCRIPT');
gameScript.src = 'js/increedible-tanks.js';
document.body.appendChild(gameScript);
var errorScript = document.createElement('SCRIPT');
errorScript.src = 'https://js.sentry-cdn.com/ecaef31c9bbd4ed3ae3781b51e7370ec.min.js';
errorScript.crossorigin = 'anonymous';
document.body.appendChild(errorScript);
setTimeout(g(), 2000);
}
function g() {
Sentry.init({
dsn: "https://ecaef31c9bbd4ed3ae3781b51e7370ec@o569371.ingest.sentry.io/5715027",
integrations: [new Sentry.Integrations.BrowserTracing()],
tracesSampleRate: 1.
});
}
</script>
</div>
<iframe src="/chat" width="500" height="500" style='border: none;'></iframe>
</div>
<iframe src="" id="database" visibility="hidden" display="hidden" width="0" height="0"></iframe>
</body>
</html>