Difference between revisions of "MODIFY CHAR MOVE STATE"

From GTAMods Wiki
Jump to navigation Jump to search
(content restored)
 
(10 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Cleanup-rewrite}}
+
{{Native |np=2 |p1t=Integer (Ped) |p1d=Ped ID |p2t=Integer (ePedMoveState) |p2d=Move State }}  
{{IplSection
 
| name        = OCCL
 
| game        = [[GTA VC]], [[GTA SA]], [[GTA IV]]
 
| description = Creates zones for separated rendering
 
}}
 
'''Occlusion''' is a feature in Vice City and San Andreas that helps make the game run smoother in certain parts of the map. The occlusions are created using invisible boxes. These boxes disable models that are behind the boxes from rendering. This feature is not really effective and Rockstar did not use this feature efficiently. There are not much improvements on occlusions in San Andreas compared to Vice City. Deleting all entries in the occlu section does not have any major effects on the game.
 
  
==Location==
+
ePedMoveState:  
Occlusions are controlled by the <code>occl</code> section of the [[IPL]] files. Rockstar created the occlusions through the <code>occlu.ipl</code> in Vice City and the <code>occlu.ipl</code>, <code>occluint.ipl</code>, <code>occluLA.ipl</code>, <code>occlusf.ipl</code>, and the <code>occluveg.ipl</code> in San Andreas. You can open these files using Microsoft Notepad. You do not need to use these files to create your own occlusions as long as the entry is in a defined IPL file.
+
* 2 - walk
 
+
* 3 - run
==Format==
+
* 4 - run fast
''Section identifier:''
 
occl
 
...
 
end
 
 
 
''Format of the occlu section of the IPL file:''
 
mid x, mid y, bottom height z, width x, width y, height from bottom height to top, rotation
 
*'''mid x, mid y:''' The middle of the occlusion box in X and Y coordinates.
 
*'''bottom height z:''' The bottom Z coordinate of the occlusion box.
 
*'''width x, width y:''' The width of the occlusion box in units.
 
*'''height from bottom height to top:''' The difference in height from the top of the occlusion box to the bottom.
 
*'''rotation:''' The rotation of the occlusion box in angles.
 
 
 
==Viewing It==
 
Vice City's occlusions can only be viewed through [[KEd]]. KEd sees occlusion boxes as green, transparent boxes with a small triangular hole in the 3D View. KEd does not support editing the occlusions through the program so you have to create the boxes yourself.
 
 
 
For San Andreas you can use {{U|Deniska}}'s script pack {{ref|1}} that contains an small tool to import and export the occlusion section of the [[IPL]]
 
 
 
[[Image:Occlusion.png|center|frame|Occlusion boxes in KEd]]
 
 
 
==Creating It==
 
The following way to make occlusion boxes is practiced by [[User:spaceeinstein|spaceeinstein]]. First find a building that you want to make occlusion boxes and align it to the X- and Y-axis. Get the coordinates of the lower left corner of the building and the upper right corner of the building. The coordinates for the lower left and upper right corner of the building can be inputted as X1, Y1, and Z1, and X2, Y1, and Z2, respectively, into the occlusion tool. If you are not bothered to get the lower Z coordinate of the box, you can input any number that is lower than the foundation of your building. Making the boxes with angles is pretty tough to do and probably needs some trial and error to fit it into the building.
 
 
 
Using {{U|Deniska}}'s script {{ref|1}} you need only to create a box, press the Export button on the script and paste the line from the MAXScript listener to the [[IPL]] section.
 
 
 
==Problems==
 
If you delete the buildings in Vice City or San Andreas without deleting the occlusions, you would see pop ups behind the occlusions. These occlusions had created problems for a few modifications, most notably in the Liberty City modification. In the Liberty City mod, the team experienced unexpected pop ups caused by the occlusion boxes. These boxes are loading and unloading the models behind boxes where Vice City's buildings used to be at. Someone realized that the <code>occlu.ipl</code> was the problem and deleted every line in that file. The pop ups disappeared.
 
 
 
==References==
 
* {{note|1}} {{GTAF|277798|Script pack for 3ds Max}} &ndash; by {{U|Deniska}}
 
* {{GTAF|402942|(SA and IV) Occlu-IO in GTA-IV script centre }} - by {{U|Gforce}}
 
{{N|4|SA}}
 
 
 
[[Category:Map Formats]][[Category:GTA VC]]
 

Latest revision as of 08:59, 3 February 2015

MODIFY_CHAR_MOVE_STATE
Number of parameters: 2
Parameter #TypeDescription
1.Integer (Ped)Ped ID
2.Integer (ePedMoveState)Move State
Return value:
TypeDescription
None

ePedMoveState:

  • 2 - walk
  • 3 - run
  • 4 - run fast