JUMP

From GTAMods Wiki
Revision as of 09:00, 19 April 2009 by Aschratt (talk | contribs)
Jump to navigation Jump to search
descripes the usage of unique stunt jumps in plain text IPLs. For information about the jump operation in a script see 0002.
JUMP (IPL section)
Short description:Creates a unique stunt jump
Supported games:GTA SA, GTA IV
IPL Sections:
2DFX AUZO BLOK CARS CULL ENEX GRGE
INST JUMP LINK LODM MLO+ MULT OCCL
PATH PICK RTFX SLOW TCYC VNOD ZONE

Unique stunt jumps are stunts the player can optinaly search and perform to finish the game completely. Usually they are created using SCM or SCO, but just like the CARS section they can also be stored in plain text ipls since this is more easily to handle. Since unique stunt jumps are related into savegames a new game must be started before changed or added entries are applied. In it is possible to add new stunt jumps without starting a new game using CLEO.

Format

Basicly a unique stunt jump is defined by 3 parameters: A plane which the player needs to pass (in a car and with a specific speed), a plane a player needs to reach and the position of the camera. If the player passes the start plane then the game enables a slow motion and sets the camera to the camera position. The camera follows the player during his flight. If the player reaches the ground without passing the target plane the stunt failed. If he has crossed it and reaches the ground (even if he falls of a bike or dies due a vehicle explosion or something else) the stunt jump has been successfully passed. If the player has triggered a stunt jump (no matter if it fails or not) it is marked as found for the game and the savegame. If the player has successfully passed the target plane the stunt jump gets marked as done. To finish the game completely all stunt jumps need to be done, but for the statistics[1][2] found stunt jumps are also important.

GTA San Andreas

The planes for target and start (as descriped above) are defined by 6 floating point values, where 3 of them allways represent a point in real world coordinates.

StartLowerX, StartLowerY, StartLowerZ, StartUpperX, StartUpperY, StartUpperZ, TargetLowerX, TargetLowerY, TargetLowerZ,
TargetUpperX, TargetUpperY, TargetUpperZ, CameraX, CameraY, CameraZ, Reward

The information above is divided into two lines since it does not fit into one. If you create a stunt jump then the data needs to be written into 1 line (1 for each entry), just like the IPL specification sais.

Identifier Description
StartLowerX, StartLowerY, StartLowerZ
Those 3 values define a point in the world as floating point values. The point represents one of the lower edge points of the plane representing the start of the unique stunt jump.
StartUpperX, StartUpperY, StartUpperZ
Those values are used in the same way as the first ones. They represent a point on the upper edge of the plane (diagonal opposite).
TargetLowerX, TargetLowerY, TargetLowerZ
A point on the lower edge of the target plane.
TargetUpperX, TargetUpperY, TargetUpperZ
A point on the upper edge of the target plane (diagonal opposite).
CameraX, CameraY, CameraZ
The position of the camera (see above).
Reward
The amount of cash the player earns after he has finished this stunt successfully.

GTA IV

Script representation

See also

External Link