Updated readme to reflect the recent changes
This commit is contained in:
19
README.md
19
README.md
@@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
# Countroll - Description
|
# Countroll - Description
|
||||||
|
|
||||||
Countroll is designed to make using counting bots a bit more interesting. It turns integers into complex, unreadable
|
Countroll is designed to make using counting bots a bit more interesting. It turns integers into complex, unreadable
|
||||||
mathematical expressions, perfect for showing off your mathematical knowledge to you friends!
|
mathematical expressions, perfect for showing off your mathematical knowledge to you friends!
|
||||||
Countroll uses the following operators to make your integer as complex as possible
|
Countroll uses the following operators to make your integer as complex as possible
|
||||||
|
|
||||||
@@ -14,7 +14,9 @@ Countroll uses the following operators to make your integer as complex as possib
|
|||||||
|
|
||||||
## Compatibility
|
## Compatibility
|
||||||
|
|
||||||
Countroll is currently only compatible with [Numselli's counting bot](https://counting.numselli.xyz/), although I hope to be able to support more counting bots soon!
|
Countroll is currently compatible with the following bots, please open an issue if you find another bot that is compatible or one that isn't compatible!
|
||||||
|
- [Numselli's counting bot](https://counting.numselli.xyz/)
|
||||||
|
- [DuckGroup's Counting bot](https://countingbot.com/)
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
@@ -34,6 +36,15 @@ There are multiple command line arguments you can use for ease of use
|
|||||||
| --color | -rgb | Enables colored output for debug/it looks cool |
|
| --color | -rgb | Enables colored output for debug/it looks cool |
|
||||||
| --deep | -d | Will run the Complexers on the Increaser values |
|
| --deep | -d | Will run the Complexers on the Increaser values |
|
||||||
| --help | --h, -h | Shows a message like this table |
|
| --help | --h, -h | Shows a message like this table |
|
||||||
|
| --mode | -m | Changes the mode of the bot |
|
||||||
|
|
||||||
|
## Modes:
|
||||||
|
You can change the bot's mode with the --mode option
|
||||||
|
- `--mode=numselli` or `-m=n` Uses Square Root
|
||||||
|
- `--mode=duckgroup` or `-m=d` Does not use Square Root
|
||||||
|
- `--mode=TEST` or `-m=t` testing mode (evaluates a given expression)
|
||||||
|
|
||||||
|
DuckGroup does not support square roots, which is why they are seperate
|
||||||
|
|
||||||
# Compiling
|
# Compiling
|
||||||
Make sure you have Java 17 or higher installed on your system!
|
Make sure you have Java 17 or higher installed on your system!
|
||||||
@@ -42,3 +53,7 @@ Make sure you have Java 17 or higher installed on your system!
|
|||||||
3. Build with gradle `$ ./gradlew build`
|
3. Build with gradle `$ ./gradlew build`
|
||||||
4. Build will be output to `/Countroll/build/libs`
|
4. Build will be output to `/Countroll/build/libs`
|
||||||
|
|
||||||
|
# Up Next
|
||||||
|
Development will continue with the addition of bitwise operations AND (&) and OR (|)
|
||||||
|
- Both bots support these operators, and it will be in both modes
|
||||||
|
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ public class Main {
|
|||||||
case "--help", "--h", "-h" -> printHelp = true;
|
case "--help", "--h", "-h" -> printHelp = true;
|
||||||
case "--mode=numselli", "-m=n" -> mode = "N";
|
case "--mode=numselli", "-m=n" -> mode = "N";
|
||||||
case "--mode=duckgroup", "-m=d" -> mode = "D";
|
case "--mode=duckgroup", "-m=d" -> mode = "D";
|
||||||
case "--mode=TEST" -> mode = "TEST";
|
case "--mode=TEST", "-m=t" -> mode = "TEST";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user