Difference between revisions of "Paths"

From GTAMods Wiki
Jump to navigation Jump to search
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
'''Paths''' are special structures of waypoints which define random AI spawns (such as peds, cars and boats) and the possible route an AI agent can take.
 
'''Paths''' are special structures of waypoints which define random AI spawns (such as peds, cars and boats) and the possible route an AI agent can take.
  
All 3D GTA games use different paths systems. [[GTA III]] uses an [[IDE]]-related paths system, which binds paths to certain objects. [[GTA Vice City]] uses groups of mapped paths defined in [[IPL]]s. [[GTA San Andreas]] and [[GTA IV]] use a collection of binary files which are linked to each other.
+
All 3D GTA games use different paths systems. GTA III uses an [[IDE]]-related paths system, which binds paths to certain objects. Vice City uses groups of mapped paths defined in [[IPL]]s. San Andreas and GTA IV use a collection of binary files which are linked to each other.
  
 
+
The following articles give more details about the game specific path versions:
'''INTRODUCTION: '''
 
 
 
Paths in Vice City are grouped into nodes, each with at most 12 sub-nodes. The Group nodes define the type of vehicle going to be used by the sub nodes. Sub nodes contain path coordinates which are linked to each other both internally(Inside the group) and externally(Outside the group with other group nodes).
 
 
 
 
 
 
 
'''HOW VICE CITY STORES A LINE(LINEAR PATH):'''
 
 
 
First of all, consider a small segment of the line in a group node. The group node has to be defined and then there are the 12 sub-nodes inside it. The number of coordinates vary from 2 to 12. If the number of coordinates does not reach 12, then they are filled with null nodes which does not do anything just to make the group node hold always 12 nodes. The internal and external sub nodes are defined each with a special attribute in it. The internal sub nodes are the middle parts of a segment of the line, while the external sub nodes are the end points of the segment of the line. They are used to connect to other external sub-node or end point of another segment(Another group) of the line. To connect the external sub-nodes or end points, they must and always must have the same coordinates. All the other group nodes link up together using this concept, thus you get a path which a vehicle or a ped follows from the beginning and to the end of the line.
 
Spawns are made in the external nodes (Always remember that fact) and then they follow the route of the line.
 
 
 
One can add a maximum of 24 group nodes in Vice City though this limit can be increased by Maxorator's Path hacks.
 
 
 
== See also ==
 
 
* {{Icon|3}} [[PATH_(IDE_Section)|GTA III's Paths System]]
 
* {{Icon|3}} [[PATH_(IDE_Section)|GTA III's Paths System]]
* {{Icon|VC}} [[PATH|GTA VC's Paths System]]
+
* {{Icon|VC}} [[Paths (Vice City)|GTA VC's Paths System]]
 
* {{Icon|SA}} [[Paths (GTA SA)|GTA SA's Paths System]]
 
* {{Icon|SA}} [[Paths (GTA SA)|GTA SA's Paths System]]
 
* {{Icon|4}} [[Paths (GTA4)|GTA IV's Paths System]]
 
* {{Icon|4}} [[Paths (GTA4)|GTA IV's Paths System]]
  
== External Links ==
+
== External links ==
 
 
 
* {{GTAF|93990|Paths Documentation for SA, VC and GTA3}} - Topic by {{U|REspawn}} detailing Vice City's paths
 
* {{GTAF|93990|Paths Documentation for SA, VC and GTA3}} - Topic by {{U|REspawn}} detailing Vice City's paths
 
* [http://projectcerbera.com/gta/vc/tutorials/paths Explanation of the path-section in a VC IPL] - by {{U|Cerbera}}
 
* [http://projectcerbera.com/gta/vc/tutorials/paths Explanation of the path-section in a VC IPL] - by {{U|Cerbera}}
  
{{N|4|SA}}
+
{{N|4|SA|VC|3}}
[[Category:Map Formats]][[Category:GTA 3]][[Category:GTA VC]]
+
[[Category:Map Formats]]

Latest revision as of 20:54, 26 August 2015

Paths are special structures of waypoints which define random AI spawns (such as peds, cars and boats) and the possible route an AI agent can take.

All 3D GTA games use different paths systems. GTA III uses an IDE-related paths system, which binds paths to certain objects. Vice City uses groups of mapped paths defined in IPLs. San Andreas and GTA IV use a collection of binary files which are linked to each other.

The following articles give more details about the game specific path versions:

External links