https://github.com/ona-li-toki-e-jan-Epiphany-tawa-mi/BitMasher
A fast-paced text adventure game inside a ransomware-infected computer | Mirror of http://oytjumugnwsf4g72vemtamo72vfvgmp4lfsf6wmggcvba3qmcsta.b32.i2p/cgit/BitMasher.git/about and http://4blcq4arxhbkc77tfrtmy4pptf55gjbhlj32rbfyskl672v2plsmjcyd.onion/cgit/BitMasher.git/about
https://github.com/ona-li-toki-e-jan-Epiphany-tawa-mi/BitMasher
computer computer-themed fast-paced fast-paced-game game ransomware terminal terminal-game text text-adventure text-game
Last synced: about 2 months ago
JSON representation
A fast-paced text adventure game inside a ransomware-infected computer | Mirror of http://oytjumugnwsf4g72vemtamo72vfvgmp4lfsf6wmggcvba3qmcsta.b32.i2p/cgit/BitMasher.git/about and http://4blcq4arxhbkc77tfrtmy4pptf55gjbhlj32rbfyskl672v2plsmjcyd.onion/cgit/BitMasher.git/about
- Host: GitHub
- URL: https://github.com/ona-li-toki-e-jan-Epiphany-tawa-mi/BitMasher
- Owner: ona-li-toki-e-jan-Epiphany-tawa-mi
- License: mit
- Created: 2022-10-07T13:31:23.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-07-17T21:14:24.000Z (9 months ago)
- Last Synced: 2024-07-18T01:32:21.276Z (9 months ago)
- Topics: computer, computer-themed, fast-paced, fast-paced-game, game, ransomware, terminal, terminal-game, text, text-adventure, text-game
- Language: Python
- Homepage: https://pypi.org/project/bitmasher-game/
- Size: 43 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
```text
______ __________________ _______ _______ _______ _______ _______
( ___ \ \__ __/\__ __/( )( ___ )( ____ \|\ /|( ____ \( ____ )
| ( ) ) ) ( ) ( | () () || ( ) || ( \/| ) ( || ( \/| ( )|
| (__/ / | | | | | || || || (___) || (_____ | (___) || (__ | (____)|
| __ ( | | | | | |(_)| || ___ |(_____ )| ___ || __) | __)
| ( \ \ | | | | | | | || ( ) | ) || ( ) || ( | (\ (
| )___) )___) (___ | | | ) ( || ) ( |/\____) || ) ( || (____/\| ) \ \__
|/ \___/ \_______/ )_( |/ \||/ \|\_______)|/ \|(_______/|/ \__/
```# BitMasher
A text adventure game where you act as an antivirus attempting to rid a computer
of a RANSOMWARE attack.## How to build
Dependencies:
- A C compiler supporting c11. Clang or GCC recommended.
- POSIX system.Then, run the following command(s):
```sh
./build.sh
```To enable optimizations, you can add one or more of the following arguments to
the EXTRA_CFLAGS enviroment variable:- `-O3` - general optimizations.
- `-DNDEBUG` - disable safety checks. Performance > safety.I.e.:
```sh
EXTRA_CFLAGS='-O3 -DNDEBUG' ./build.sh
```The executable will be named `bitmasher`.
## Configuration
There is a section at the top of the program file `bitmasher.c` containing
configuration options. All config options bear a description detailing what they
modify and what values they accept.## Installation
You can install it with Nix from my personal package repository
[https://paltepuk.xyz/cgit/epitaphpkgs.git/about](https://paltepuk.xyz/cgit/epitaphpkgs.git/about).## Controls
Each option you can select will be shown by a single character in paranthesis.
Typing that character and hitting ENTER will select that option.## How to play
You are an antivirus trying to rid a computer of a RANSOMWARE before it takes
over the system. There is a finite amount of time before the system is fully
infected.In order to defeat it, you must find all items before you find the RANSOMWARE.
If you do not, you will not be able to EXTRACT it and you will lose.Each system (room) contains an item, which you can move to; UP, DOWN, LEFT, AND
RIGHT. Keep in mind that the map is NOT 2D; Moving RIGHT, UP, LEFT, and DOWN
will lead to a different room than the one you started in. The map is "Spiky"
so-to-speak.You have a SCANner to aid in figuring out which rooms contain items and which
have RANSOMWARE. Using the SCANner will reveal what the surronding rooms
contain, and the room you are currently in will be automatically SCANned for
you. But beware: SCANning takes time. Also, occasionaly a SCAN will fail and
need to be repeated.