Grasscutter/README.md

80 lines
3.9 KiB
Markdown
Raw Normal View History

# Grasscutter
2022-04-20 22:37:16 +00:00
A WIP server reimplementation for *some anime game* 2.3-2.6
**Documentation**: [Grasscutter Wiki](https://github.com/Melledy/Grasscutter/wiki/)
**Note**: For support please join the [Discord server](https://discord.gg/T5vZU6UyeG).
# Current features
* Logging in
* Combat
2022-04-20 22:37:16 +00:00
* Spawning monsters via console
* Inventory features (recieving items/characters, upgrading items/characters, etc)
* Gacha system
2022-04-20 22:37:16 +00:00
* Friends list
2022-04-22 07:52:33 +00:00
* Co-op *partially* works
# Quick setup guide
2022-04-22 03:46:55 +00:00
### Note
2022-04-22 07:52:33 +00:00
* If you updated from an older version, delete `config.json` to regenerate it.
2022-04-22 03:46:55 +00:00
### Prerequisites
2022-04-22 07:52:33 +00:00
* JDK-8u202 ([mirror link](https://mirrors.huaweicloud.com/java/jdk/8u202-b08/) since Oracle requires an account to download old builds)
* Mongodb (recommended 4.0+)
* Proxy daemon: mitmproxy (mitmdump, recommended), Fiddler Classic, etc.
### Starting up Grasscutter server (Assuming you are on Windows)
2022-04-22 07:52:33 +00:00
1. Setup the compile environment with `gradlew.bat`
2. Compile Grasscutter with `gradlew jar`
2022-04-22 07:52:33 +00:00
3. Create a folder named `resources` in your Grasscutter directory, move your `BinOutput` and `ExcelBinOutput` folders there *(Check the wiki for more details on how to get those.)*
2022-04-20 22:37:16 +00:00
4. Run Grasscutter with `java -jar grasscutter.jar`. Make sure mongodb service is running as well.
### Connecting with the client
2022-04-20 22:37:16 +00:00
½. Create an account using *server console command* below
2022-04-19 09:06:44 +00:00
1. Run a proxy daemon: (choose either one)
2022-04-22 03:46:55 +00:00
- mitmdump: `mitmdump -s proxy.py -k`
- Fiddler Classic: Run Fiddler Classic, turn on `Decrypt https traffic` in setting and change the default port there (Tools -> Options -> Connections) to anything other than `8888`, and load [this script](https://github.lunatic.moe/fiddlerscript).
- [Hosts file](https://github.com/Melledy/Grasscutter/wiki/Running#traffic-route-map)
2. Trust CA certificate:
- mitmdump: `certutil -addstore root %USERPROFILE%\.mitmproxy\mitmproxy-ca-cert.cer`
2. Set network proxy to `127.0.0.1:8080` or the proxy port you specified.
4. *yoink*
2022-04-22 07:52:33 +00:00
* or you can use `run.cmd` to start the Server & Proxy daemon with one click
2022-04-19 09:06:44 +00:00
# Grasscutter commands
2022-04-22 03:46:55 +00:00
There is a dummy user named "Server" in every player's friends list that you can message to use commands. Commands also work in other chat rooms, such as private/team chats.
`account create [username] {playerid}` - Creates an account with the specified username and the in-game uid for that account. The playerid parameter is optional and will be auto generated if not set.
2022-04-22 03:46:55 +00:00
`spawn [monster id] [level] [amount]`
2022-04-22 03:46:55 +00:00
`give [item id] [amount]`
2022-04-22 03:46:55 +00:00
`givechar [avatar id] [level]`
2022-04-19 08:00:49 +00:00
2022-04-22 03:46:55 +00:00
`drop [item id] [amount]`
2022-04-22 03:46:55 +00:00
`killall`
2022-04-22 07:52:33 +00:00
`setworldlevel [level]` - Changes your world level, relog to see effects properly
2022-04-19 09:45:15 +00:00
2022-04-22 03:46:55 +00:00
`godmode` - Prevents you from taking damage
2022-04-22 07:52:33 +00:00
`resetconst` - Resets the constellation level on your currently selected character, will need to relog after using the command to see any changes.
2022-04-22 07:52:33 +00:00
`setstats [stats] [amount]` - Changes the currently selected character's specified stat.
2022-04-22 07:55:44 +00:00
`clearartifacts` - Deletes all unequipped and unlocked level 0 artifacts, **including 5-star rarity ones** from your inventory
2022-04-22 07:52:33 +00:00
`pos` - Gets your current coordinates.
2022-04-22 03:46:55 +00:00
`weather [weather id] [climate id]` - Changes the current weather.
2022-04-20 22:37:16 +00:00
*More commands will be updated in the [wiki](https://github.com/Melledy/Grasscutter/wiki/).*
### Bonus
2022-04-22 07:52:33 +00:00
When you want to teleport somewhere, use the in-game marking function on the Map, click Confirm. You will see your character falling from a very high spot at the exact location you marked.
2022-04-19 09:06:44 +00:00
# Quick Troubleshooting
2022-04-20 22:37:16 +00:00
* If compiling wasn't successful, please check your JDK installation (must be JDK 8 and validated JDK's bin PATH variable)
2022-04-22 07:52:33 +00:00
* My client doesn't connect, doesn't login, 4206, etc... - Mostly your proxy daemon setup is *the issue*, if you're using Fiddler make sure it's running on a port other than 8888
* Startup sequence: Mongodb > Grasscutter > Proxy daemon (mitmdump, fiddler, etc.) > Client