mirror of
https://github.com/milk-net/milk-net.github.io.git
synced 2025-04-19 17:43:42 -05:00
Compare commits
No commits in common. "1bb193ac2d3fff7af067220c6cd4a66900162a73" and "2d96f1e62166af352e65152a1a29805d6df9fc2b" have entirely different histories.
1bb193ac2d
...
2d96f1e621
7 changed files with 58 additions and 204 deletions
BIN
assets/games/5b/5b.swf
Normal file
BIN
assets/games/5b/5b.swf
Normal file
Binary file not shown.
|
@ -1,24 +1,38 @@
|
|||
<title>5B | Takes a bit to load | HTML5 port by zelo.dev</title>
|
||||
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
|
||||
<script>
|
||||
document.addEventListener("DOMContentLoaded", function() {
|
||||
let savedLink = localStorage.getItem("savedLink");
|
||||
|
||||
document.addEventListener("keydown", function(event) {
|
||||
if (event.key === ",") {
|
||||
if (!savedLink) {
|
||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
||||
if (savedLink) {
|
||||
localStorage.setItem("savedLink", savedLink);
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3044824252307692"
|
||||
crossorigin="anonymous"></script>
|
||||
<title>BFDIA 5b</title>
|
||||
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
||||
<!--Google Analytics-->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M9KJ1XPKLF"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag() { dataLayer.push(arguments); }
|
||||
gtag('js', new Date());
|
||||
|
||||
gtag('config', 'G-M9KJ1XPKLF');
|
||||
</script>
|
||||
<script>
|
||||
document.addEventListener("DOMContentLoaded", function() {
|
||||
let savedLink = localStorage.getItem("savedLink");
|
||||
|
||||
document.addEventListener("keydown", function(event) {
|
||||
if (event.key === ",") {
|
||||
if (!savedLink) {
|
||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
||||
if (savedLink) {
|
||||
localStorage.setItem("savedLink", savedLink);
|
||||
}
|
||||
} else {
|
||||
window.open(savedLink, "_blank");
|
||||
}
|
||||
} else {
|
||||
window.open(savedLink, "_blank");
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<script>
|
||||
</script>
|
||||
<script>
|
||||
document.addEventListener("keydown", function (event) {
|
||||
if (event.key === ".") {
|
||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
||||
|
@ -51,6 +65,27 @@
|
|||
document.getElementsByTagName("head")[0].appendChild(link);
|
||||
}
|
||||
</script>
|
||||
|
||||
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/5b" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
||||
</iframe>
|
||||
<!--Google Analytics-->
|
||||
<style>
|
||||
html, body {
|
||||
background-color: black;
|
||||
margin: 0;
|
||||
height: 100%;
|
||||
}
|
||||
.container {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100vh;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<object data="https://milk.servemp3.com/assets/games/5b/run.swf" width="1000" height="800" type="application/x-shockwave-flash">
|
||||
<param name="allowScriptAccess" value="always">
|
||||
<param name="allowFullScreen" value="true">
|
||||
</object>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
BIN
assets/games/5b/run.swf
Normal file
BIN
assets/games/5b/run.swf
Normal file
Binary file not shown.
|
@ -1,91 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3044824252307692"
|
||||
crossorigin="anonymous"></script>
|
||||
<title>Fleeing the Complex</title>
|
||||
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
||||
<!--Google Analytics-->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M9KJ1XPKLF"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag() { dataLayer.push(arguments); }
|
||||
gtag('js', new Date());
|
||||
|
||||
gtag('config', 'G-M9KJ1XPKLF');
|
||||
</script>
|
||||
<script>
|
||||
document.addEventListener("DOMContentLoaded", function() {
|
||||
let savedLink = localStorage.getItem("savedLink");
|
||||
|
||||
document.addEventListener("keydown", function(event) {
|
||||
if (event.key === ",") {
|
||||
if (!savedLink) {
|
||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
||||
if (savedLink) {
|
||||
localStorage.setItem("savedLink", savedLink);
|
||||
}
|
||||
} else {
|
||||
window.open(savedLink, "_blank");
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<script>
|
||||
document.addEventListener("keydown", function (event) {
|
||||
if (event.key === ".") {
|
||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
||||
|
||||
const options = {
|
||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
||||
};
|
||||
|
||||
if (options[choice]) {
|
||||
document.title = options[choice].title;
|
||||
changeFavicon(options[choice].icon);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
function changeFavicon(src) {
|
||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||
link.type = "image/x-icon";
|
||||
link.rel = "shortcut icon";
|
||||
link.href = src;
|
||||
document.getElementsByTagName("head")[0].appendChild(link);
|
||||
}
|
||||
</script>
|
||||
<!--Google Analytics-->
|
||||
<style>
|
||||
html, body {
|
||||
background-color: black;
|
||||
margin: 0;
|
||||
height: 100%;
|
||||
}
|
||||
.container {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100vh;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<object data="https://voxel.fsky.io/infiltratingtheairship.swf" width="1000" height="800" type="application/x-shockwave-flash">
|
||||
<param name="allowScriptAccess" value="always">
|
||||
<param name="allowFullScreen" value="true">
|
||||
</object>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Binary file not shown.
|
@ -1,91 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3044824252307692"
|
||||
crossorigin="anonymous"></script>
|
||||
<title>Fleeing the Complex</title>
|
||||
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
||||
<!--Google Analytics-->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M9KJ1XPKLF"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag() { dataLayer.push(arguments); }
|
||||
gtag('js', new Date());
|
||||
|
||||
gtag('config', 'G-M9KJ1XPKLF');
|
||||
</script>
|
||||
<script>
|
||||
document.addEventListener("DOMContentLoaded", function() {
|
||||
let savedLink = localStorage.getItem("savedLink");
|
||||
|
||||
document.addEventListener("keydown", function(event) {
|
||||
if (event.key === ",") {
|
||||
if (!savedLink) {
|
||||
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
||||
if (savedLink) {
|
||||
localStorage.setItem("savedLink", savedLink);
|
||||
}
|
||||
} else {
|
||||
window.open(savedLink, "_blank");
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<script>
|
||||
document.addEventListener("keydown", function (event) {
|
||||
if (event.key === ".") {
|
||||
let choice = prompt("CLOAK OPTIONS: Google Drive (enter g), Google Classroom (enter gc), Google Docs (enter gd), Clever (enter c), PowerSchool (enter p), Khan Academy (enter k), Desmos (enter d), Schoology (enter s), Cool Math Games (enter cmg)");
|
||||
|
||||
const options = {
|
||||
g: { title: "My Drive - Google Drive", icon: "/assets/img/drive.ico" },
|
||||
gc: { title: "Google Classroom", icon: "/assets/img/classroom.ico" },
|
||||
c: { title: "Clever | Portal", icon: "/assets/img/clever.ico" },
|
||||
p: { title: "Student and Parent Sign In", icon: "/assets/img/powerschool.ico" },
|
||||
k: { title: "Khan Academy", icon: "/assets/img/khan.ico" },
|
||||
gd: { title: "Google Docs", icon: "/assets/img/docs.ico" },
|
||||
s: { title: "Schoology", icon: "/assets/img/schoology.ico" },
|
||||
d: { title: "Desmos | Scientific Calculator", icon: "/assets/img/desmos.ico" },
|
||||
cmg: { title: "Cool Math Games - Free Online Games for Learning and Fun", icon: "/assets/img/coolmathgames.ico" },
|
||||
i: { title: "IXL | Math, Language Arts, Science, Social Studies, and Spanish", icon: "/assets/img/ixl.ico" },
|
||||
};
|
||||
|
||||
if (options[choice]) {
|
||||
document.title = options[choice].title;
|
||||
changeFavicon(options[choice].icon);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
function changeFavicon(src) {
|
||||
let link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
||||
link.type = "image/x-icon";
|
||||
link.rel = "shortcut icon";
|
||||
link.href = src;
|
||||
document.getElementsByTagName("head")[0].appendChild(link);
|
||||
}
|
||||
</script>
|
||||
<!--Google Analytics-->
|
||||
<style>
|
||||
html, body {
|
||||
background-color: black;
|
||||
margin: 0;
|
||||
height: 100%;
|
||||
}
|
||||
.container {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100vh;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<object data="/assets/games/bank/breakingthebank.swf" width="1000" height="800" type="application/x-shockwave-flash">
|
||||
<param name="allowScriptAccess" value="always">
|
||||
<param name="allowFullScreen" value="true">
|
||||
</object>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -72,7 +72,8 @@
|
|||
|
||||
<div class="center-text">
|
||||
<p class="center-text">Games (press , to escape)</p>
|
||||
<a href="/assets/games/smashkarts">Smash Karts</a> • <a href="/assets/games/stickmanhook">Stickman Hook</a> • <a href="/assets/games/slope">Slope</a> • <a href="/assets/games/slope2">Slope 2</a> • <a href="/assets/games/adofai">A Dance of Fire and Ice</a> • <a href="/assets/games/retrobowl">Retro Bowl</a> • <a href="/assets/games/totm">Tomb of the Mask</a> • <a href="/assets/games/whg">World's Hardest Game</a> • <a href="/assets/games/whg2">World's Hardest Game 2</a> • <a href="/assets/games/ovo">OvO</a> • <a href="/assets/games/2048">2048</a> • <a href="/assets/games/tunnelrush">Tunnel Rush</a> • <a href="/assets/games/basketrandom">Basket Random</a> • <a href="/assets/games/clusterrush">Cluster Rush</a> • <a href="/assets/games/bitlife">BitLife</a> • <a href="/assets/games/cookieclicker">Cookie Clicker</a> • <a href="/assets/games/dr3d">Death Run 3D</a> • <a href="/assets/games/flappybird">Flappy Bird</a> • <a href="/assets/games/retrobowl">Retro Bowl</a> • <a href="/assets/games/eagler/1.5.2.html">Eaglercraft 1.5.2</a> • <a href="/assets/games/eagler/1.8.html">Eaglercraft 1.8</a> • <a href="/assets/games/fruitninja">Fruit Ninja</a> • <a href="/assets/games/drivemad">Drive Mad</a> • <a href="/assets/games/jetpackjoyride">Jetpack Joyride</a> • <a href="/assets/games/knifehit">Knife Hit</a> • <a href="/assets/games/tetris">Tetris</a> • <a href="/assets/games/subwaysurfers">Subway Surfers</a> • <a href="/assets/games/wordle">Wordle</a> • <a href="/assets/games/prison">Henry Stickmin: Escaping the Prison</a> • <a href="/assets/games/bank">Henry Stickmin: Breaking the Bank</a> • <a href="/assets/games/airship">Henry Stickmin: Infiltrating the Airship</a> • <a href="/assets/games/complex">Henry Stickmin: Fleeing the Complex</a> • <a href="/assets/games/diamond">Henry Stickmin: Stealing the Diamond</a> • <a href="/assets/games/paperio2">Paper.io 2</a> • <a href="/assets/games/fnf">Friday Night Funkin</a> • <a href="/assets/games/baldisbasics">Baldi's Basics</a> • <a href="/assets/games/monkeymart">Monkey Mart</a> • <a href="/assets/games/fnaf/">FNAF</a> • <a href="/assets/games/fnaf/2">FNAF2</a> • <a href="/assets/games/fnaf/3">FNAF3</a> • <a href="/assets/games/fnaf/4">FNAF4</a> • <a href="/assets/games/motox3m">Moto X3M</a> • <a href="/assets/games/motox3m/2">Moto X3M 2</a> • <a href="/assets/games/motox3m/3">Moto X3M Pool Party</a> • <a href="/assets/games/motox3m/4">Moto X3M Winter</a> • <a href="/assets/games/motox3m/5">Moto X3M Spooky Land</a> • <a href="/assets/games/papas">Papa's Pizzeria</a> • <a href="/assets/games/papas/burgeria">Papa's Burgeria</a> • <a href="/assets/games/papas/pancakeria">Papa's Pancakeria</a> • <a href="/assets/papas/sushiria">Papa's Sushiria</a> • <a href="/assets/games/papas/freezeria">Papa's Freezeria</a> • <a href="/assets/games/papas/pastaria">Papa's Pastaria</a> • <a href="/assets/games/5b">BFDIA 5b</a>
|
||||
<a href="/assets/games/smashkarts">Smash Karts</a> • <a href="/assets/games/stickmanhook">Stickman Hook</a> • <a href="/assets/games/slope">Slope</a> • <a href="/assets/games/slope2">Slope 2</a> • <a href="/assets/games/adofai">A Dance of Fire and Ice</a> • <a href="/assets/games/retrobowl">Retro Bowl</a> • <a href="/assets/games/totm">Tomb of the Mask</a> • <a href="/assets/games/whg">World's Hardest Game</a> • <a href="/assets/games/whg2">World's Hardest Game 2</a> • <a href="/assets/games/ovo">OvO</a> • <a href="/assets/games/2048">2048</a> • <a href="/assets/games/tunnelrush">Tunnel Rush</a> • <a href="/assets/games/basketrandom">Basket Random</a> • <a href="/assets/games/clusterrush">Cluster Rush</a> • <a href="/assets/games/bitlife">BitLife</a> • <a href="/assets/games/cookieclicker">Cookie Clicker</a> • <a href="/assets/games/dr3d">Death Run 3D</a> • <a href="/assets/games/flappybird">Flappy Bird</a> • <a href="/assets/games/retrobowl">Retro Bowl</a> • <a href="/assets/games/eagler/1.5.2.html">Eaglercraft 1.5.2</a> • <a href="/assets/games/eagler/1.8.html">Eaglercraft 1.8</a> • <a href="/assets/games/fruitninja">Fruit Ninja</a> • <a href="/assets/games/drivemad">Drive Mad</a> • <a href="/assets/games/jetpackjoyride">Jetpack Joyride</a> • <a href="/assets/games/knifehit">Knife Hit</a> • <a href="/assets/games/tetris">Tetris</a> • <a href="/assets/games/subwaysurfers">Subway Surfers</a> • <a href="/assets/games/wordle">Wordle</a> • <a href="/assets/games/prison">Henry Stickmin: Escaping the Prison</a> • <a href="/assets/games/complex">Henry Stickmin: Fleeing the Complex</a> • <a href="/assets/games/diamond">Henry Stickmin: Stealing the Diamond</a> • <a href="/assets/games/paperio2">Paper.io 2</a> • <a href="/assets/games/fnf">Friday Night Funkin</a> • <a href="/assets/games/baldisbasics">Baldi's Basics</a> • <a href="/assets/games/monkeymart">Monkey Mart</a> • <a href="/assets/games/fnaf/">FNAF</a> • <a href="/assets/games/fnaf/2">FNAF2</a> • <a href="/assets/games/fnaf/3">FNAF3</a> • <a href="/assets/games/fnaf/4">FNAF4</a> • <a href="/assets/games/motox3m">Moto X3M</a> • <a href="/assets/games/motox3m/2">Moto X3M 2</a> • <a href="/assets/games/motox3m/3">Moto X3M Pool Party</a> • <a href="/assets/games/motox3m/4">Moto X3M Winter</a> • <a href="/assets/games/motox3m/5">Moto X3M Spooky Land</a> • <a href="/assets/games/papas">Papa's Pizzeria</a> • <a href="/assets/games/papas/burgeria">Papa's Burgeria</a> • <a href="/assets/games/papas/pancakeria">Papa's Pancakeria</a> • <a href="/assets/papas/sushiria">Papa's Sushiria</a> • <a href="/assets/games/papas/freezeria">Papa's Freezeria</a> • <a href="/assets/games/papas/pastaria">Papa's Pastaria</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
</head>
|
||||
|
|
Loading…
Add table
Reference in a new issue