First post, by miller11568
How can I remove the Juiced error "Juiced requires virtual memory to be enabled" via hex editing the executable instead of using the compatibility mode or applying the official patch?
How can I remove the Juiced error "Juiced requires virtual memory to be enabled" via hex editing the executable instead of using the compatibility mode or applying the official patch?
Why do you want every solution through "hex-editing"?
previously known as Discrete_BOB_058
BEEN_Nath_58 wrote on 2024-05-19, 17:21:Why do you want every solution through "hex-editing"?
Because I'm a PC game hacker. I have HxD and I'm interested for hex editing executables to remove errors.
You're a game hacker when you are the one creating the hex edits from scratch.
Enjoy learning though
I built:
Convert old ASUS ASC boardviews to KICAD PCB!
Re: A comprehensive guide to install and play MechWarrior 2 on new versions on Windows.
Dos+Windows 3.11+tcp+vbe_svga auto-install iso template
Script to backup Win9x\ME drivers from a working install
Re: The thing no one asked for: KICAD 440bx reference schematic
myne wrote on 2024-05-20, 05:54:You're a game hacker when you are the one creating the hex edits from scratch.
Enjoy learning though
Which offset or address?
0xD00D
I built:
Convert old ASUS ASC boardviews to KICAD PCB!
Re: A comprehensive guide to install and play MechWarrior 2 on new versions on Windows.
Dos+Windows 3.11+tcp+vbe_svga auto-install iso template
Script to backup Win9x\ME drivers from a working install
Re: The thing no one asked for: KICAD 440bx reference schematic
myne wrote on 2024-05-20, 08:54:0xD00D
That's the wrong offset or address for removing "Juiced requires virtual memory to be enabled". Can you give me the proper offset?
The exe seems to be encrypted by Securom so hex editing it is not that feasible, there's an injection fix available though. https://github.com/GrimMaple/JuicedFixes/blob … xes/dllmain.cpp
When I try to do a test drive, Juiced crashes. Can someone help me fix this problem?
I built:
Convert old ASUS ASC boardviews to KICAD PCB!
Re: A comprehensive guide to install and play MechWarrior 2 on new versions on Windows.
Dos+Windows 3.11+tcp+vbe_svga auto-install iso template
Script to backup Win9x\ME drivers from a working install
Re: The thing no one asked for: KICAD 440bx reference schematic
myne wrote on 2024-05-24, 10:15:
It's not over yet. I said "Can you help me fix the crash when trying to do a test drive"?
No one has found a file offset to bypass the message "Juiced requires virtual memory to be enabled"?
miller11568 wrote on 2025-02-27, 17:20:No one has found a file offset to bypass the message "Juiced requires virtual memory to be enabled"?
The link I posted already contains the answer.
char memFix[] =
{
0xEB, 0x20
};
// Fix "Juiced requires virtual memory to be enabled"
injector::MakeNOP(0x0059BE39, 2, true);
injector::WriteMemoryRaw(0x0059BE40, memFix, sizeof(memFix), true);