html
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
<!-- Created by ODLNT -->
<!-- Created by Maneren -->
<!-- Created by Trevor-->
<!-- Created by Jason Kennedy -->
<!-- Created by James -->
<head>
<script src="https://code.jquery.com/jquery-3.1.1.js"></script>
</head>
<body onload="OnStart()">
<p id="fix"></p>
<div id=MAIN1>
<p>Welcome! You have been chosen to... save us all.</p>
<p>You see, there are monsters coming at a speed of 45 miles per hour. We only have one army troop ready and it is you. The others are still in boot camp. So please your our only hope. You have to- wait hold on look up there! </p>
<br />
<p>Monster! Let me dea- No, actually you take this one </p>
<br />
<br />
<b class="spl1">
Specs:
</b>
<p class="healthheading"> Health:</p>
<p>Monsters Health:50</p>
<p>Your Health:100</p>
Enter to Rename, Shift+Enter to Preview
css
css
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
/* Created by ODLNT */
/* Created by Maneren */
/* Created by Trevor */
/* Created by Jason Kennedy */
body {
font-family:Arial
}
body {
}
#modalContainer {
background-color: rgba(0, 0, 0, 0.3);
position:absolute;
width:100%;
height:100%;
top:0px;
left:0px;
z-index:10000;
background-image:url(tp.png); /* required by MSIE to prevent actions on lower z-index elements */
}
#alertBox {
position:relative;
Enter to Rename, Shift+Enter to Preview
js
js
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
alert("Hi, thanks for checking out this game it still is in very basic form but I hope to make this game better!")
// Created by ODLNT
// Created by Maneren
// Created by Trevor
//Created by Jason Kennedy
function OnStart() {
document.getElementById("FA2").style.display = "none";
document.getElementById("rs").style.display = "none";
document.getElementById("k1at").style.display = "none";
document.getElementById("CB").style.display = "none"
}
var mh = 50;
var md = 7;
var ph = 100;
var pd = 14;
var cs = 100;
var level = 1;
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run