.patch
.patch files are exclusively used in the PS3 and X360 versions of GTA V to update Metadata files during game load. The file name of the .patch file (without extension) will match the file name of the Metadata file (without extension) it patches. Patches are XML formatted text files and can be edited with any text editor.
This file format has been deprecated in all subsequent game platforms in favor of replacing entire Metadata files through the update package.
Contents
Item
The <Item > </Item> brackets define what is being patched and inside the brackets is the parameter that will be patched.
Verb
Verb is how the patch will place what it's changing
- Value:
- PUT = Overwrite existing parameter.
- POST = Create new parameter.
URI
The URI is used to define exactly what parameter in the .meta file is going to be patched. Example URI:
uri="weaponShopItems/1/weaponComponents/1/cost" (A) (B) (C) (D) (E)
(A) here refers the weaponShopItems sections of a .meta file
(B) is the number of (A) sections, starting at 0. So this is referring to the 2nd weaponShopItems section.
(C) refers to the weaponComponents sections within the 2nd weaponShopItems section.
(D) is the number of (C) sections. So this is referring to the 2nd weaponComponents inside the 2nd weaponShopItems section.
(E) is the parameter name.
Using .patches
Below is an example of changing a parameter of the Obey 9F.
Example from vehicles.meta:
<?xml version="1.0" encoding="UTF-8"?> <CVehicleModelInfo__InitDataList> <residentTxd>vehshare</residentTxd> <residentAnims /> <InitDatas> <Item> <modelName>ninef</modelName> <txdName>ninef</txdName> <handlingId>NINEF</handlingId> <gameName>NINEF</gameName> ...
Example of a patch for vehicles.meta:
<Item verb="PUT" uri="InitDatas/0/handlingId">Cheetah</Item>
This patch will change the very first InitDatas handlingID parameter (the hardtop 9F) so that it will use the Cheetah handling name in handling.meta.
Grand Theft Auto V | |
---|---|
File Formats | .awc • .dat • .gfx • .gxt2 • .ide • .meta/.ymt/.xml • .mrf • .patch • .rpf • .ybn/.ybd • .ycd • .ydd • .ydr • .yed • .yfd • .yft • .yld • .ymap • .ymf • .ynd • .ynv • .ypdb • .ysc • .ytd • .ytyp • .yvr |
Documentation | Bink Video • Native functions • Weather types |
Tools | OpenIV • GIMS Evo • CodeWalker |
Multiplayer | GTAForums: GTA Online |
Useful links | Community portal • Discussion forums • GTA V Modding Forum • GTA5-Mods • Native Functions Database (alloc8or) |