Skip to content

Commit

Permalink
v2 release, earlier commit was commit-happy
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyGamer13 committed Feb 18, 2025
1 parent 5268b7d commit df3f598
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
12 changes: 5 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,15 @@ funny doors reference except its REAL
a90 is from roblox rooms i think and then roblox doors took that and put it in their game

# WHAT IS THIS
its a program for WINDOWS HAHA
(i hate linux and mac os)
its a program for WINDOWS!!!!!!!!
(i will not make this work with linux and mac os myself)

basically if you know A-90 he shows up randomly and attacks you if you move your mouse so i made a program that does that on your computer

# EPIC WARNINGS
# WARNINGS
he CAN close all your current windows
(im not responsible for any data loss caused by this, you have the option to turn it off if you have important things opened)

to stop A-90 you can click on his window on the taskbar and press Alt + F4
to stop A-90 you can click on his window on the taskbar and close it, click on the window and press Alt + F4, or close A90 or Electron in Task Manager

I tried to make him avoid certain programs but he can and likely will close programs that end up bypassing my checks either purposely or accidentally. If you are really worried, use a VM or something idk

BE CAREFUL WITH RUNNING HIM ON HIGH SPEEDS IF YOU HAVE CLOSE WINDOWS ENABLED. He can and will start bugging out your computer.
I tried to make him avoid certain programs but he can and likely will close programs that end up bypassing my checks either purposely or accidentally. If you are really worried, use a VM or something idk
4 changes: 4 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
const fs = require('fs');
const path = require('path');
const childProcess = require('child_process');

const electron = require('electron');
const csvParser = require('csv-parse/sync');

// Make our config DB work
if (!fs.existsSync("./databases")) fs.mkdirSync("./databases");
const Database = require('./easy-json-database');
const configuration = new Database("./databases/a90-config.json");

const devMode = !electron.app.isPackaged;

// TODO: Make a system tray icon that can be used to close A-90.
let globalWindow = null;
const createWindow = () => {
const win = new electron.BrowserWindow({
Expand Down
1 change: 1 addition & 0 deletions preload.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const { uIOhook } = require('uiohook-napi');
// TODO: Start delay, sensitivity (one for when a-90 will count you as having moved and another in advanced for how quickly inputs are cleared) and A-90 size
// TODO: Add a setting to allow non-letter drive programs to be killed (ie, //?/C:/Program......). At the moment this can still happen.
// TODO: Add settings for shutting down + restarting the PC on attack or even blue screening?
// TODO: Hotkey for closing A90?
const appSettings = {
a90AttackInterval: 5000,
a90AttackChance: 40,
Expand Down

0 comments on commit df3f598

Please sign in to comment.