A server software implementation, ineroperable with a certain anime game client. The code in this repository is fully custom made for edyoucational purposes and future preservation, no copyrighted code is allowed in this repository.
Go to file
2022-04-18 16:00:25 +07:00
data Initial commit 2022-04-17 05:43:07 -07:00
gradle/wrapper Initial commit 2022-04-17 05:43:07 -07:00
keys Initial commit 2022-04-17 05:43:07 -07:00
lib Initial commit 2022-04-17 05:43:07 -07:00
src/main Properly level up characters with the character exp virtual item 2022-04-18 00:45:28 -07:00
.gitignore Initial commit 2022-04-17 05:43:07 -07:00
build.gradle Initial commit 2022-04-17 05:43:07 -07:00
gradlew Initial commit 2022-04-17 05:43:07 -07:00
gradlew.bat Initial commit 2022-04-17 05:43:07 -07:00
keystore.p12 Initial commit 2022-04-17 05:43:07 -07:00
LICENSE Initial commit 2022-04-17 05:43:07 -07:00
README.md overhauled readme.md 2022-04-18 16:00:25 +07:00
settings.gradle Initial commit 2022-04-17 05:43:07 -07:00

Grasscutter

A WIP server emulator for Genshin Impact 2.3-2.6

Current features

  • Logging in
  • Spawning monsters via console
  • Combat
  • Inventory features (recieving items/characters, upgrading items/characters, etc)
  • Co-op does work, but movement is kind of buggy and some player ults do not spawn properly
  • Friends list
  • Gacha system

Running the server and client

Prerequisites

  • Java 8 JDK
  • Mongodb (recommended 4.0+)

Starting up the server (Assuming you are on Windows)

  1. Setup compile environment gradlew.bat
  2. Compile the server with gradlew jar
  3. Create a folder named resources in your server directory, you will need to copy BinData and ExcelBinOutput folders which you can get from a repo like https://github.com/Dimbreath/GenshinData into your resources folder.
  4. Run the server with java -jar grasscutter.jar. Make sure mongodb is running as well.

Connecting with the client

½. Create an account using command below

  1. Run Fiddler and turn on Decrypt https traffic in setting
  2. Set your hosts file to redirect at least api-account-os.hoyoverse.com and dispatchosglobal.yuanshen.com to your dispatch server ip. Or use Fiddler with script from https://github.lunatic.moe/fiddlerscript (Recommended)
  3. yoink

Server console commands

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.

In-Game commands

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.

!spawn [monster id] [level] [amount]

!give [item id] [amount]

!drop [item id] [amount]

!killall

!godmode - Prevents you from taking damage

!resetconst - Resets the constellation level on your current active character, will need to relog after using the command to see any changes.

!sethp [hp]

!clearartifacts - Deletes all unequipped and unlocked level 0 artifacts, including yellow rarity ones from your inventory

Troubleshooting

  • If compiling wasnt successful, please check your JDK installation (must be JDK 8 and JDK's bin PATH variable is correct)
  • My client doesn't connect, doesn't login, 4206, etc... - Mostly your fiddler is the issue, make sure it running on another port except 8888
  • Startup sequence: Mongodb > The server > Fiddler > Client