- Dec 11, 2017
- 110
- 221
While trying to launch on JoiPlay games of this creator (both this and "New Project"/"New Game"), encountered error even though I could play and finish them on pc. Error messages are similar and look as such:
Fixed this error by unpacking game's Scripts.rvdata2 with rvpacker tool and changed in any found instance the next line:
into:
removing
Now both games launch normally and I can play them. Don't know if it will give me any errors down the line, but all is well for now.
*Erroneous script in this game is called "エセフルスクリーン"(en: Fake Full Screen) and in "New Project": "画像保存"(en: Save Image)
Code:
Script ... line ...: ArgumentError occured.
not fully converted, ... bytes left
Fixed this error by unpacking game's Scripts.rvdata2 with rvpacker tool and changed in any found instance the next line:
Python:
GAME_TITLE = load_data("Data/System.rvdata2").game_title.encode('SHIFT_JIS')
Python:
GAME_TITLE = load_data("Data/System.rvdata2").game_title
.encode('SHIFT_JIS')
method call.Now both games launch normally and I can play them. Don't know if it will give me any errors down the line, but all is well for now.
*Erroneous script in this game is called "エセフルスクリーン"(en: Fake Full Screen) and in "New Project": "画像保存"(en: Save Image)