The script is here:
http://rmxp.org/forums/index.php?topic=15204.0
I would like to ask if it is possible to change (or even add) one of the dlls so that it can play another emulated music. In my case, I would like to change "in_ym.dll" (which plays .gym and .cym) to "in_vgm.dll" (which plays .vgm and .vgz) as both plays Genesis emulated music, but vgm file is superior than gym file because it supports looping. What I do is:
replace: GEN_EXT = ['.gym', '.cym']
with: GEN_EXT = ['.vgm', '.vgz']
replace: GEN_DLL = 'in_ym.dll'
with: GEN_DLL = 'in_vgm.dll'
I put in.vgm.dll file into DLL folder like normal.
But it looks I am still missing something here. The game would not run (generic windows error) if I chose .vgm/.vgz file as the music. With my very limited RGSS knowledge, I could not find the line I would need to change in the script. Maybe it won't be that simple to change something like this in the script, but any help here would be appreciated. :smile:
http://rmxp.org/forums/index.php?topic=15204.0
I would like to ask if it is possible to change (or even add) one of the dlls so that it can play another emulated music. In my case, I would like to change "in_ym.dll" (which plays .gym and .cym) to "in_vgm.dll" (which plays .vgm and .vgz) as both plays Genesis emulated music, but vgm file is superior than gym file because it supports looping. What I do is:
replace: GEN_EXT = ['.gym', '.cym']
with: GEN_EXT = ['.vgm', '.vgz']
replace: GEN_DLL = 'in_ym.dll'
with: GEN_DLL = 'in_vgm.dll'
I put in.vgm.dll file into DLL folder like normal.
But it looks I am still missing something here. The game would not run (generic windows error) if I chose .vgm/.vgz file as the music. With my very limited RGSS knowledge, I could not find the line I would need to change in the script. Maybe it won't be that simple to change something like this in the script, but any help here would be appreciated. :smile: