Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelScopic committed Mar 21, 2024
2 parents 111b94f + d7ae45c commit c659cac
Showing 1 changed file with 40 additions and 2 deletions.
42 changes: 40 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,45 @@
# Walksy's Crystal Optimizer Legit

Fork of [Walksy's Crystal Optimizer](https://github.com/Walksy/WalksyCrystalOptimizer) but without the AC feature because they are considered cheating.
Fork of [Walksy's Crystal Optimizer](https://github.com/Walksy/WalksyCrystalOptimizer) but without the AC feature because it's considered cheating.

I have no clue how to program in Java, so if this works maybe God does exist.

![alt text](src/main/resources/assets/optimizer/icon.png)
Short video showing the difference between the original optimizer and mine:

https://github.com/michaelScopic/WalksyCrystalOptimizer/assets/67214805/81ea7a01-3438-4d68-ba60-9ed50d2b854b

## Building from source (optional)

If you want to compile from source because you just want to build it or if you don't trust my precompiled package, here's how to do it.

To build this mod from source you need a couple of things.

- `git`
- Gradle

To install Gradle on Windows, install [Scoop](https://scoop.sh/) and then run `scoop install gradle`.

For MacOS, use [Homebrew](https://brew.sh), and run `brew install gradle`

For Linux, use your package manager. (Eg: `sudo apt install gradle`, `sudo pacman -S gradle`, `sudo dnf install gradle`, etc)

### In your terminal, run these commands:

#### Windows users:
```sh
git clone https://github.com/michaelScopic/WalksyCrystalOptimizer
cd WalksyCrystalOptimizer

gradlew.bat build
```

#### MacOS/Linux users:

```sh
git clone https://github.com/michaelScopic/WalksyCrystalOptimizer
cd WalksyCrystalOptimizer

gradlew build
```

Output `.jar` will be placed in `./build/libs/`.

0 comments on commit c659cac

Please sign in to comment.