2019-03-02 06:29:42 +01:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "utf-8" >
2019-05-28 05:18:32 +02:00
< title > GFDM V5 Rock to Infinity DLL Modder< / title >
2019-03-02 06:29:42 +01: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 () {
2019-11-17 11:58:28 +01:00
new Patcher("game.dll", "", [
2019-03-02 06:29:42 +01:00
{
name: "Force unlock SECRET folder",
patches: [
2019-11-17 11:58:28 +01:00
{offset: 0xC259A, off: [0x74, 0x12, 0x68, 0xC0], on: [0x90, 0x90, 0x68, 0xC0]}
2019-03-02 06:29:42 +01:00
]
}
2019-11-17 11:58:28 +01:00
]);
new Patcher("boot.dll", "", [
2019-03-02 06:29:42 +01:00
{
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]},
]
}
2019-11-17 11:58:28 +01:00
]);
new Patcher("libshare-pj.dll", "", [
2019-03-02 06:29:42 +01:00
{
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]}
]
}
2019-11-17 11:58:28 +01:00
]);
new Patcher("libsystem.dll", "", [
2019-03-02 06:29:42 +01:00
{
name: "White screen freeze fix",
patches: [{offset: 0x306C, off: [0x53, 0x53], on: [0x33, 0xC0]}]
}
2019-11-17 11:58:28 +01:00
]);
2019-03-02 06:29:42 +01:00
});
< / script >
< / head >
< body >
2019-05-28 05:18:32 +02:00
< h1 > GFDM V5 Rock to Infinity DLL Modder< / h1 >
2019-03-02 06:29:42 +01:00
< / body >
< / html >