Fallot Virtual Patcher (FVP)

jargo

Where'd That 6th Toe Come From?
This is a simple multi-patcher that i wrote for Platon.
It read patch data from FVP.ini and all changes are made in memory so Fallout2.exe is not changed.


Put FVP.ex and FVP.INI in main Fallout 2 folder and run FVP.ex.... that's all

How to add new patch?

Edit FVP.in file.
This is normal ini file witch 3 standard sections:

[US] - Pathes for US version 1.02d
[UK] - Patches for UK version 1.02ae
[GR] - Patches for GR/FR version

FVP will check size of Fallout.exe file and red patching data from corresponding section.
You can add new section for another version. New section name should be Fallou2.ex file size in bytes (Dec) like this: [1119213]

Patching data syntax:

name=address:length:data

name - just a name for you patch

address - vitriol address (Hex)

length - Length of data in bytes(Dec)

data - patch data(Hex)

Like this:

pipboy= 4971ca1:1: ebb


I hope someone will use this :)

ah and you can get it from here
 
Thanks jargo!! It seems to work just fine. Great work :ok:

One thing: is there a way to comment a line (so that it´ll be ignored)? Something like putting '#' in the beginnig of the line.

Thanks again, i´ll surely use this prog :)

-platon
 
FVP is now updated.
Added line commenting feature and small memory bug fix.
# is now line comment sign

use it like this:

Code:
[UK] #section for uk patches

pipboy=432c1:1:0EB #player have pipboy at start
 
Back
Top