This commit is contained in:
drmext 2025-12-11 05:27:02 +00:00
parent 0b07b33085
commit 827c80b26d
No known key found for this signature in database
GPG Key ID: F1ED48FFE79A6961
2 changed files with 11 additions and 4 deletions

View File

@ -10,7 +10,7 @@ Run [start.bat (Windows)](start.bat) or [start.sh (Linux, MacOS)](start.sh)
## Playable Games
- IIDX 18-20, 29-33 (Online Arena/BPL support)
- DDR A20P, A3 (OmniMIX support w/ DAN & pfree score saving hack)
- DDR A20P, A3 (OmniMIX/GF, BPL, and [Fake PFREE](https://github.com/drmext/BemaniPatcher/blob/nopr/ddra3.html#L133) support)
- GD 6-10 DELTA (Battle Mode support)
- DRS
- NOST 3

View File

@ -149,8 +149,8 @@ async def playerdata_2_usergamedata_advanced(request: Request):
)
for event in [
e
for e in range(1, 100)
if e not in [4, 6, 7, 8, 14, 47, 89, 90]
for e in range(100, 1, -1)
if e not in [4, 6, 7, 8, 14, 47, 90]
]
],
E.grade(
@ -566,9 +566,16 @@ async def playerdata_2_usergamedata_advanced(request: Request):
)
)
elif mode == "mergeddataload":
response = E.response(
E.playerdata_2(
E.result(0, __type="s32"),
)
)
else:
response = E.response(
E.playerdata(
E.playerdata_2(
E.result(1, __type="s32"),
)
)