forked from Walksy/WalksyCrystalOptimizer
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/michaelScopic/WalksyCryst…
- Loading branch information
Showing
1 changed file
with
40 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/`. |