From 0d6fff5880f3d3cd3f917c6d784a768084e43b3f Mon Sep 17 00:00:00 2001 From: entar Date: Tue, 10 Jun 2025 12:14:18 +0700 Subject: [PATCH] Update How to add charts? --- How-to-add-charts%3F.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/How-to-add-charts%3F.md b/How-to-add-charts%3F.md index 3458324..b2298d2 100644 --- a/How-to-add-charts%3F.md +++ b/How-to-add-charts%3F.md @@ -6,11 +6,17 @@ Unfortunately for now there is not a chart editor for this engine yet. But, we p ## Psych 1.x charts -If you want to add charts that were made in Psych above version 1.0, you need to go to psych.lua +If you want to add charts that were made in Psych above version 1.0, you need to go to modules/states/playstate.lua Then you need to replace line 21 -> `local chart = json.parse(chartString).song` +- `local chart = json.parse(chartString).song` with -> `local chart = json.parse(chartString)` +- `local chart = json.parse(chartString)` + +Then you need to go to modules/types/note.lua +Go to line 18 and replace +- `mustPress = mustHitSection and raw[2] <= 3 or not mustHitSection and raw[2] > 3,` +With +- `mustPress = raw[2] > 3,`