GTA Wiki

Help required: categories

Hi everyone, please help us by filling out this form!


We are determining how players best define and/or differentiate the terms "game modes", "missions" and "activities". This will be used to help us develop a clear and logical category tree to house articles related to this type of content.


Thank you in advance for help!

READ MORE

GTA Wiki
GTA Wiki
19,871
pages
m (→‎External links: clean up,)
m (→‎San Andreas: clean up, typos fixed: existant → existent)
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
The <code>'''carrec'''.img</code> file stores a set of R3 files (files with an extension <code>.rrr</code>). These files contain path information used by the mission script for [[San Andreas]] and [[GTA 4]]. The paths are predefined and look unnatural during gameplay because the movement of the vehicle is very rigid. The paths ignore many stuff in the game including gravity and obstacles.
+
The <code>'''carrec'''.img</code> file stores a set of R3 files (files with an extension <code>.rrr</code>). These files contain path information used by the mission script for [[Grand Theft Auto: San Andreas]] and [[Grand Theft Auto IV]]. The paths are predefined and look unnatural during gameplay because the movement of the vehicle is very rigid. The paths ignore many stuff in the game including gravity and obstacles.
   
 
Original San Andreas installation has '''426''' R3 paths. Maximum number of these paths is '''475'''. GTA IV increases this limit. By default there are '''1813''' R3 paths. The limit appears to be located somewhere beyond 3000.
 
Original San Andreas installation has '''426''' R3 paths. Maximum number of these paths is '''475'''. GTA IV increases this limit. By default there are '''1813''' R3 paths. The limit appears to be located somewhere beyond 3000.
Line 54: Line 54:
 
==Mission Script==
 
==Mission Script==
 
===San Andreas===
 
===San Andreas===
You can use the following opcodes to do stuff to your paths.<br>
+
You can use the following opcodes to do stuff to your paths.<br />
[[07C0]] - Loads the path<br>
+
[[07C0]] - Loads the path<br />
[[07C1]] - Checks if the path has been loaded<br>
+
[[07C1]] - Checks if the path has been loaded<br />
[[0873]] - Releases the path from memory<br>
+
[[0873]] - Releases the path from memory<br />
[[05EB]] - Assigns a vehicle to the path<br>
+
[[05EB]] - Assigns a vehicle to the path<br />
[[0705]] - Assigns a vehicle to the path<br>
+
[[0705]] - Assigns a vehicle to the path<br />
[[085E]] - Assigns a vehicle to a looped path<br>
+
[[085E]] - Assigns a vehicle to a looped path<br />
[[05EC]] - Releases the vehicle from a path<br>
+
[[05EC]] - Releases the vehicle from a path<br />
[[05ED]] - Freezes the vehicle along the path<br>
+
[[05ED]] - Freezes the vehicle along the path<br />
[[05EE]] - Unfreezes the vehicle along the path<br>
+
[[05EE]] - Unfreezes the vehicle along the path<br />
[[06FD]] - Sets the speed multiplier of the vehicle along the path<br>
+
[[06FD]] - Sets the speed multiplier of the vehicle along the path<br />
[[0706]] - Advances the vehicle along the path<br>
+
[[0706]] - Advances the vehicle along the path<br />
[[060E]] - Checks if a path is assigned to the vehicle<br>
+
[[060E]] - Checks if a path is assigned to the vehicle<br />
If you load a non-existant path to a vehicle, path 1 will be loaded instead.
+
If you load a non-existent path to a vehicle, path 1 will be loaded instead.
   
 
===GTA 4===
 
===GTA 4===
Use the following [[native function]]s:<br>
+
Use the following [[native function]]s:<br />
[[REQUEST CAR RECORDING]]<br>
+
[[REQUEST CAR RECORDING]]<br />
[[HAS CAR RECORDING BEEN LOADED]]<br>
+
[[HAS CAR RECORDING BEEN LOADED]]<br />
[[REMOVE CAR RECORDING]]<br>
+
[[REMOVE CAR RECORDING]]<br />
[[FIND POSITION IN RECORDING]]<br>
+
[[FIND POSITION IN RECORDING]]<br />
[[FIND TIME POSITION IN RECORDING]]<br>
+
[[FIND TIME POSITION IN RECORDING]]<br />
[[GET POSITION OF CAR RECORDING AT TIME]]<br>
+
[[GET POSITION OF CAR RECORDING AT TIME]]<br />
[[GET TOTAL DURATION OF CAR RECORDING]]<br>
+
[[GET TOTAL DURATION OF CAR RECORDING]]<br />
[[SET RECORDING TO POINT NEAREST TO COORS]]<br>
+
[[SET RECORDING TO POINT NEAREST TO COORS]]<br />
[[SYNCH RECORDING WITH WATER]]<br>
+
[[SYNCH RECORDING WITH WATER]]<br />
   
 
== List of paths in San Andreas==
 
== List of paths in San Andreas==
  +
{{incomplete}}
 
  +
   
 
The following is a list of paths defined in the <code>carrec.img</code> file.
 
The following is a list of paths defined in the <code>carrec.img</code> file.
Line 293: Line 294:
   
   
  +
{{fdl}}
[[Category:Map Formats]][[Category:File Formats]]{{fdl}}
 
[[Category:Modifications]]
 
   
 
{{modding}}
 
{{modding}}
  +
[[Category:Map Formats]]
 
[[Category:File Formats]]
 
[[Category:Modifications]]

Revision as of 16:03, 9 October 2013

The carrec.img file stores a set of R3 files (files with an extension .rrr). These files contain path information used by the mission script for Grand Theft Auto: San Andreas and Grand Theft Auto IV. The paths are predefined and look unnatural during gameplay because the movement of the vehicle is very rigid. The paths ignore many stuff in the game including gravity and obstacles.

Original San Andreas installation has 426 R3 paths. Maximum number of these paths is 475. GTA IV increases this limit. By default there are 1813 R3 paths. The limit appears to be located somewhere beyond 3000.

GTA IV does not use an image to store the carrec paths. They are located in the directory ...\common\data\paths\.

The RRR file structure

Each RRR file contains no header, only a binary data, being a set of structures of 32 bytes in length each, described separate path points. The data in a path point structure goes as the following:

Offset Size (in bytes) Type Description Notes
00 04 INT32 time Timekey in milliseconds
04 02 INT16 velocity in direction X Divide by 16383.5 to get floating point values
06 02 INT16 velocity in direction Y Divide by 16383.5 to get floating point values
08 02 INT16 velocity in direction Z Divide by 16383.5 to get floating point values
10 01 INT8 XYZ.right.x Divide by 127.0 to get floating point values
11 01 INT8 XYZ.right.y Divide by 127.0 to get floating point values
12 01 INT8 XYZ.right.z Divide by 127.0 to get floating point values
13 01 INT8 XYZ.top.x Divide by 127.0 to get floating point values
14 01 INT8 XYZ.top.y Divide by 127.0 to get floating point values
15 01 INT8 XYZ.top.z Divide by 127.0 to get floating point values
16 01 INT8 Steering Angle Divide by 20.0 to get floating point values
17 01 INT8 Gas Pedal Power Divide by 100.0 to get floating point values
18 01 INT8 Brake Pedal Power Divide by 100.0 to get floating point values
19 01 INT8 Handbrake used flag Bool: 1 = true, 0 = false
20 04 FLOAT XYZ.pos.x Standard float
24 04 FLOAT XYZ.pos.y Standard float
28 04 FLOAT XYZ.pos.z Standard float

When the vehicle is moving along the path, its XYZ structure is filled with the information from the proper fields of checkpoint data.

Mission Script

San Andreas

You can use the following opcodes to do stuff to your paths.
07C0 - Loads the path
07C1 - Checks if the path has been loaded
0873 - Releases the path from memory
05EB - Assigns a vehicle to the path
0705 - Assigns a vehicle to the path
085E - Assigns a vehicle to a looped path
05EC - Releases the vehicle from a path
05ED - Freezes the vehicle along the path
05EE - Unfreezes the vehicle along the path
06FD - Sets the speed multiplier of the vehicle along the path
0706 - Advances the vehicle along the path
060E - Checks if a path is assigned to the vehicle
If you load a non-existent path to a vehicle, path 1 will be loaded instead.

GTA 4

Use the following native functions:
REQUEST CAR RECORDING
HAS CAR RECORDING BEEN LOADED
REMOVE CAR RECORDING
FIND POSITION IN RECORDING
FIND TIME POSITION IN RECORDING
GET POSITION OF CAR RECORDING AT TIME
GET TOTAL DURATION OF CAR RECORDING
SET RECORDING TO POINT NEAREST TO COORS
SYNCH RECORDING WITH WATER

List of paths in San Andreas

The following is a list of paths defined in the carrec.img file.

ID Description
1 Driving School The 360
2 Driving School The 180
3 Unused Driving School unknown test
4 Driving School Whip and Terminate
5 Driving School Pop and Control
7 Driving School Burn and Lap
9 Driving School Cone Coil
10 Driving School The '90'
11 Driving School Wheelie Weave
13 Driving School Spin and Go
14 Driving School P. I. T. Maneuver
15 Driving School Alley Oop
16 Driving School City Slicking
21 Unused Test Drive Cesar's Savanna, most likely used in beta version of game
22 House Party Sweet's Greenwod
23 House Party GSF's Voodoo
24 Unused path, could have been used in Big Smoke, most likely used in beta version of game
25 The Da Nang Thang Triad's Maverick
27 Pier 69 enemy's Pony
28 Pier 69 Toreno's helicopter
30 OG Loc Freddy's PCJ 600 path 1 (beginning)
31 OG Loc Freddy's PCJ 600 path 2
32 OG Loc Freddy's PCJ 600 path 3
33 OG Loc Freddy's PCJ 600 path 4
34 OG Loc Freddy's PCJ 600 path 5
35 OG Loc Freddy's PCJ 600 path 6
36 OG Loc Freddy's PCJ 600 path 7
37 OG Loc Freddy's PCJ 600 path 8
38 OG Loc Freddy's PCJ 600 path 9
39 OG Loc Freddy's PCJ 600 path 10
40 OG Loc Freddy's PCJ 600 path 11 (end)
41 unused Los Santos to San Fierro AT 400, most likely used in beta version of game
42 Los Santos to San Fierro AT 400
43 Las Venturas to San Fierro AT 400
44 San Fierro to Las Venturas AT 400
46 Los Santos to Las Venturas AT 400
48 Las Venturas to Los Santos AT 400
49 San Fierro to Los Santos AT 400
50 OG Loc highway NPC 1
51 OG Loc highway NPC 2
52 OG Loc highway NPC 3
53 OG Loc highway NPC 4
54 OG Loc highway NPC 5
55 OG Loc highway NPC 6
56 OG Loc highway NPC 7
57 OG Loc highway NPC 8
58 OG Loc highway NPC 9
59 OG Loc highway NPC 10
60 OG Loc highway NPC 11
65 Test Drive Cesar's Elegy path enter alley
66 Test Drive cop 1 path enter alley
67 Test Drive cop 2 path enter alley
70 Test Drive Tram path 1
71 Test Drive outside Otto's Autos NPC 1
72 Test Drive outside Otto's Autos NPC 2
73 Test Drive outside Otto's Autos NPC 3
74 Test Drive outside Otto's Autos NPC 4
75 Test Drive outside Otto's Autos NPC 5
76 Test Drive outside Otto's Autos NPC 6
77 Test Drive Tram path 2
78 Test Drive Tram path 3
79 Test Drive Cesar's Elegy path 1
80 Test Drive Tram path 3
81 Test Drive Cesar's Elegy path 2
82 Unused Test Drive path

More to come soon. The last ID is 834.

External links


Copyrighted

This page is licensed under the GNU Free Documentation Licence. This page has a separate license to the CC-BY-SA that applies to most of GTA Wiki.

The full text of the GNU FDL v1.2 is here. Click the "History" button to see the full list of authors. See GTA Wiki:Copyright for more detail on our copyright policy.

Template:Modding