2019-03-02 13:29:42 +08:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "utf-8" >
2019-05-27 23:18:32 -04:00
< title > GFDM V5 Rock to Infinity DLL Modder</ title >
2019-03-02 13:29:42 +08:00
< link rel = "stylesheet" href = "css/style.css" >
<!-- don't hate -->
< script src = "https://code.jquery.com/jquery-3.3.1.slim.min.js" ></ script >
< script type = "text/javascript" src = "js/FileSaver.min.js" ></ script >
< script type = "text/javascript" src = "js/dllpatcher.js" ></ script >
< script type = "text/javascript" >
window . addEventListener ( "load" , function () {
new DllPatcherContainer ([
new DllPatcher ( "game" , [
{
name : "Force unlock SECRET folder" ,
patches : [
{ offset : 0xC259A , off : [ 0x74 , 0x12 , 0x68 , 0xC0 ], on : [ 0x90 , 0x90 , 0x68 , 0xC0 ]}
]
}
], true ),
new DllPatcher ( "boot" , [
{
name : "GF's volume fix" ,
patches : [
{ offset : 0x1BC1 , off : [ 0x00 , 0x00 , 0x00 , 0x00 ], on : [ 0x01 , 0x00 , 0x00 , 0x00 ]},
{ offset : 0x1BC9 , off : [ 0x01 ], on : [ 0x03 ]},
{ offset : 0x1BD1 , off : [ 0x02 ], on : [ 0x03 ]},
]
}
], true ),
new DllPatcher ( "libshare-pj" , [
{
name : "Let the game can access e-amuemu which IP is 192.168.*.*" ,
tooltip : "It's highly recommended using this just to turn off the e-AMUSEMENT easily,since it's not compatiable with e-amuemu(Cannot register cards but still can get into the game)" ,
patches : [
{ offset : 0x17ECA , off : [ 0x01 , 0x5B ], on : [ 0x00 , 0x5B ]}
]
}
], true ),
new DllPatcher ( "libsytem" , [
{
name : "White screen freeze fix" ,
patches : [{ offset : 0x306C , off : [ 0x53 , 0x53 ], on : [ 0x33 , 0xC0 ]}]
}
], true )
]);
});
</ script >
</ head >
< body >
2019-05-27 23:18:32 -04:00
< h1 > GFDM V5 Rock to Infinity DLL Modder</ h1 >
2019-03-02 13:29:42 +08:00
</ body >
</ html >