1
0
mirror of synced 2024-09-24 02:58:24 +02:00
GC-local-server-rewrite/README.md

73 lines
2.7 KiB
Markdown
Raw Normal View History

2022-04-05 14:34:07 +02:00
# GC local server
This is a rewritten version of GC local server, original version is [here](https://github.com/asesidaa/gc-local-server).
Server functionality is basically the same, but the code should be now easier to work with, and can be extended esaily.
Now it supports card registration.
# Usage
Download latest release from release page.
Extract anywhere.
2022-04-06 12:51:00 +02:00
If you don't have the modified NesysService.exe, modify the host file, add the following lines
```
127.0.0.1 cert.nesys.jp
127.0.0.1 data.nesys.jp
127.0.0.1 nesys.taito.co.jp
127.0.0.1 fjm170920zero.nesica.net
```
2022-04-06 12:55:27 +02:00
Open mmc.exe, delete any certificate in LocalMachine/My or LocalMachine/Trusted root named Taito Arcade Machine CA (if present, most likely not)
2022-04-06 12:51:00 +02:00
2022-04-05 14:34:07 +02:00
Open exe with **admin privileges** for certificate generating functionalities to work.
Open game using teknoparrot loader (you can find that in discord). The loader should be also opened with **admin privileges**, otherwise it will not work.
# Config
The config file is GC-local-server-rewrite.exe.config.
2022-04-08 20:18:49 +02:00
If you are using 4MAX 4.65 data, it should work out of box.
2022-04-05 14:34:07 +02:00
2022-04-08 20:18:49 +02:00
If you are using 4MAX 4.61 data, first change MusicDBName to bundled music4MAX.db3
2022-04-05 14:34:07 +02:00
2022-04-08 20:18:49 +02:00
If you are using 4EX 4.52 data, change MusicDBName to bundled music.db3
To unlock new avatars/navgators/skins/sound effects/titles from other version, change the corresponding count in config.
2022-04-05 14:34:07 +02:00
2022-04-05 16:42:02 +02:00
You can get the corresponding count in data/boot/*.dat file.
# Missing functions
- [ ] Item/coin comsuming
- [ ] Unlocking system (I don't like these two so I just hardcode them, if you are interested you can implement that and add a switch to enable, PRs are welcome)
- [ ] Ranking system (Is this really needed for a local server?)
2022-04-06 12:55:27 +02:00
- [ ] Proper update check response (Now it will just throw 404)
- [ ] PlayInfo.php (Now it will just throw 404, I don't know what data it expext)
2022-04-05 16:42:02 +02:00
# Difficulty unlocking
This is processed on client side, so if you like to unlock all difficuties, just use bemani patcher.
2022-04-06 12:51:00 +02:00
# Local network
2022-04-06 12:55:27 +02:00
If your game and server is not on the same computer, try modify in config, change ServerIp to your server IP.
2022-04-06 12:51:00 +02:00
From server, open mmc.exe, export certificate named "Taito Arcade Machine CA" and "GC local server" with private key and import to game computer.
The cert "Taito Arcade Machine CA" goes into LocalMachine/My and Trusted root, the other only LocalMachine/My.
# Windows XP
If you are using Windows XP (e.g. using real machine), it will not recognize the generated certificate since it uses SHA256.
You will have to generate the certificates yourself.
The root certificate should have CN=Taito Arcade Machine CA, while the server certificate should have DNS entries for the domains in the host file.
The most important bit, **choose MD5 or SHA1 as signature algorithm**.