So, Im not at home and have only access to my Dropbox Folder.
There I have my Projekt, and I want to extract the RGSS3 Library from it, since I have no access to my RPG Maker VX Ace from this PC, to script a little bit while I have freetime and test and debug it later at home.
I thought I just Marshal.load the scripts.rvdata2 and save it to a .txt-document, but this didnt work.
This was my code:
object = File.open("Scripts.rvdata2", "rb") {|io| Marshal.load(io)}File.open('test.txt', 'w') {|f| f.write(object) }The loading and saving worked, but the data was not readable:
[[25125893, "", "x\x9C\x03\x00\x00\x00\x00\x01"], [77343326, "\u25BC Modules", "x\x9C\u0003\u0000\u0000\u0000\u0000\u0001"],[97506006, "Vocab", "x\x9C\xADXmo\xDC6\f\xFE^\xA0\xFFAIW4-\xB6tI\xDF\u0011\u0014C\x9A\\\x92bM\u001A$\x97n@;\u001Ct6}'\u0136 #...#And so onI only need a clean library without any Custom Scripts(like in my project) so is there a way to access the RGSS3 Library somehow?