Skip to content

Commit

Permalink
yes
Browse files Browse the repository at this point in the history
  • Loading branch information
thisismyaltaccountt committed May 29, 2024
1 parent 6aa8a42 commit e1b158e
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 27 deletions.
28 changes: 27 additions & 1 deletion index.html

Large diffs are not rendered by default.

25 changes: 25 additions & 0 deletions script.js
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,13 @@ var HMR3_optionText = [
"Run 2",
"Duck Life 5",
"Burrito Bison",
"10 Minutes till Dawn",
"2048",
"Celeste",
"Space Bar Clicker",
"Stack",
"Stickman Hook",
"Tanuki Sunset"
];

var HMR3_optionValue = [
Expand Down Expand Up @@ -842,6 +849,13 @@ var HMR3_optionValue = [
"https://raw.githack.com/SJRNoodles/Flash-Game-Archive/master/run2.swf",
"https://raw.githack.com/mountain658/mountain658.github.io/main/zswfs/ducklife5.swf",
"https://raw.githack.com/mountain658/mountain658.github.io/main/zswfs/burritobison.swf",
"10 Minutes till Dawn filler",
"2048 filler",
"Celeste filler",
"Space Bar Clicker filler",
"Stack filler",
"Stickman Hook filler",
"Tanuki Sunset filler"
];

var flashgames = [
Expand Down Expand Up @@ -900,4 +914,15 @@ var HMR3_SEGAMS = [

]

var HMR3_HTML = [
"10 Minutes till Dawn",
"2048",
"Celeste",
"Space Bar Clicker",
"Stack",
"Stickman Hook",
"Tanuki Sunset"

]


53 changes: 27 additions & 26 deletions test.html
Original file line number Diff line number Diff line change
@@ -1,30 +1,31 @@

<script>
let loaded = document.cookie;
let code = document.cookie;
if (loaded == 1) {
document.write(code)
document.cookie = "loaded=0"
}else {
fetch('https://trapjawws.github.io/funnyemulatorjs/index.html')
.then(function (response) {
switch (response.status) {
// status "OK"
case 200:
return response.text();
// status "Not Found"
case 404:
throw response;
}
})
.then(function (template) {
document.cookie = "loaded=1; code=" + template;
location.reload();
})
.catch(function (response) {
// "Not Found"
alert(response.statusText);
});
fetch('https://trapjawws.github.io/funnyemulatorjs/index.html')
.then(function (response) {
switch (response.status) {
// status "OK"
case 200:
return response.text();
// status "Not Found"
case 404:
throw response;
}
})
.then(function (template) {

}
window.location.replace("https://clever.com/in/stratfordschools");

var W = window.open(); // create a new window

W.document.open(); // create a write-stream to this window

W.document.write(template); // add some HTML

W.document.close(); // close it off

})
.catch(function (response) {
// "Not Found"
alert(response.statusText);
});
</script>

0 comments on commit e1b158e

Please sign in to comment.