Update README.md

This commit is contained in:
inkursion 2025-06-09 22:42:22 +00:00
parent 1609636e90
commit f72af02236

View file

@ -1,6 +1,28 @@
# HollowPS
# HollowPS mod by inkursion
A Server emulator for the game [`Zenless Zone Zero`](https://zenless.hoyoverse.com/en-us/)
A Server emulator for the game [`Zenless Zone Zero`](https://zenless.hoyoverse.com/en-us/) with 5 custom levels and a few new features
It's just a glimpse at how custom levels for TV mode can be built for ZZZ private servers.
I'm nowhere close Xeon's skill level, so my code is held together with dact-tape and "if" statements and definitely isn't accurate to cbt1, but I wanted this version of the game to have a bit more content to play and it was pretty fun to make.
## What I did:
- New levels can be added and quests actually will send you to different grid maps instead of every HDD quest sending you to the same map (you need to specify which quest links to which map if you want to add new ones in "../gameserver/src/net/handlers/world.rs" and the maps themselves are hardcoded into the server in "../gameserver/src/game/manager/hollow_grid.rs" and can be edited there. There is a "skill issue" for me at the moment to make them load from outside the server)
- 5 Custom levels designed by me, sorted by difficulty in the HDD. I wanted them to be non-linear except for 1 which is just a strict time trial(don't get fooled by it being lvl 1, it's the hardest level in the Cretan Hollow). Idk how well I accomplished that tho.
- Different time of day and weather for every commission. ChessboardID ultimately controls this and some battle encounters have set parameters, but the time of day is left blank for most IDs so it can be changed in "world.rs". (ChessboardIDs with their weather and time of day params can be found in ChessBoardPerformTemplateCollection)
- Levels can be replayed now without logging out
- Separate battle lists for every level (again, hardcoded in "hollow_grid.rs" and can be edited there. All of the game's battle Ids can be found in BattleEventConfigTemplateCollection).
- Character parameters(level, ascension, star rank, talents(proto mindscapes), skill levels) and use of manual chain attacks can now be set in the config file
- VisibleAtGridAround tiles
- TV screens in the room light up
## Installation
@ -21,7 +43,7 @@ rustup default nightly
#### Building
```sh
git clone https://git.xeondev.com/reversedrooms/HollowPS.git
git clone https://git.xeondev.com/inkursion/HollowPS_Custom_levels.git
cd HollowPS
cargo install --path gameserver
cargo install --path sdkserver
@ -29,8 +51,8 @@ cargo install --path sdkserver
### From Pre-built Binaries
Navigate to the [Releases](https://git.xeondev.com/reversedrooms/HollowPS/releases)
page and download the latest release for your platform.
Navigate to the [Releases](https://git.xeondev.com/inkursion/HollowPS_Custom_levels/releases)
page and download the latest release.
## Usage
@ -52,6 +74,7 @@ run the following in a terminal:
./nap-gameserver
./nap-sdkserver
```
Once you get into the game world, DON'T TOUCH THE SOFA! You will be stuck on a black screen until you restart the game
## Configuration