Skip to content

Commit 80b290b

Browse files
committed
(v0.1.7.3(2)-alpha) Dialog + Others
Now when the user is logging in, there is now an alert which tells the player to check the "README.txt". Changed the initial file in vscode for better gameplay.
1 parent 6dd5b27 commit 80b290b

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<meta name="description" content="Compromised PC; Can you regain control?" property="og:description" />
1010
<meta content="https://raw.githubusercontent.com/rupnil-codes/Override/refs/heads/main/public/banner.png" property="og:image"/>
1111

12-
<title>Override - Can you regain control?</title>
12+
<title>Override.exe - Can you regain control?</title>
1313
</head>
1414
<body>
1515
<div id="root"></div>

public/01101000/01100011.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<body>
99
<h2>Puzzle 3</h2>
1010
Not bad. Most applicants lose to hexadecimal.
11-
<p>Always inspect or check the page's source code,<br/>You never know what is hiding</p>
11+
<p>Always inspect or check the page's source code,<br/>You never know what is hiding (You may use the VSCode in desktop)</p>
1212

1313
<!-- Congrats if you see this! Here's what to do next: -->
1414
<!-- Go to /696D67/70757A7A6C6534.png -->

src/apps/vscode.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ function VSCode() {
55
return (
66
<>
77
<iframe
8-
src="https://github1s.com/rupnil-codes/override.exe/blob/main/src/routes/desktop.jsx"
8+
src="https://github1s.com/rupnil-codes/override.exe/blob/main/public/01101000/01100011.html"
99
title="VSCode"
1010
className="vscode-iframe"
1111
></iframe>

src/data/Cmd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export const COMMANDS = {
33
help: "Available commands: help, dih, clear/cls, about, shiden",
44
about: "Go find out",
55
shiden: "https://flavortown.hackclub.com/projects/10866",
6-
"rm -rf": "Are you f**king mad?? This is windows you idiot.",
6+
"rm -rf": "This is windows you nitwit poopy head.",
77
dih: "https://tomwebsites.nl",
88
"ipconfig /dns --history": "BRO IM MAKING IT ALR??? PLEASE SLOW DOWN"
99
};

src/routes/lockscreen.jsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ function LockScreen() {
4242
const handleSubmit = (e) => {
4343
if (e.key === "Enter") {
4444
if (password === "DuckyCelestron76700" || password === "42069") {
45+
confirm("Remember to check README.txt in the desktop");
46+
4547
const elem = document.documentElement;
4648
elem.requestFullscreen().catch(err => {
4749
console.error(`Error attempting to enable fullscreen: ${err.message}`);
@@ -58,6 +60,12 @@ function LockScreen() {
5860
const startupSound = new Audio("/sounds/startup.mp3");
5961
startupSound.volume = Math.min(1.5, 1.0);
6062
startupSound.play().catch(e => console.log("Audio play blocked", e));
63+
// .then(() => {
64+
// setTimeout(() => {
65+
// alert("Remember to check README.txt in the desktop");
66+
// }, 800);
67+
// })
68+
//
6169

6270
// navigate("/desktop");
6371
}, 1000);

0 commit comments

Comments
 (0)