Difference between revisions of "00D8"

From GTAMods Wiki
Jump to navigation Jump to search
(created page)
 
Line 8: Line 8:
  
 
==Vice City==
 
==Vice City==
* [[01EB]] set to 1.0 ; car density
+
{|{{Prettytable}} class="sortable"
* [[03DE]] set to 1.0 ; ped density
+
!Effect
* effect of [[04C1]] ; remove police roadblock
+
!Related opcode
* effect of [[015A]] ; restore camera
+
|-
* [[02A3]] set to 0 ; widescreen
+
|car density set to 1.0 || [[01EB]]
* [[0507]] set to 0 ; white scanline
+
|-
* [[04C7]] set to 0 ; green scanline
+
|ped density set to 1.0 || [[03DE]]
* effect of [[04FA]] ; reset sky colors
+
|-
* effect of [[01B7]] ; release weather
+
|remove police roadblock || [[04C1]]
* [[03E7]] set to -1 ; flash hud
+
|-
* effect of [[03E6]] ; remove text box
+
|restore camera || [[015A]]
* [[0396]] set to 0 ; pause timer
+
|-
* [[01B4]] set to 1 ; unfrozen state
+
|widescreen set to 0 || [[02A3]]
* [[052C]] set to 0 ; drunk visuals
+
|-
* [[03FD]] set to 0 ; handling responsiveness
+
|white scanline set to 0 || [[0507]]
* [[0501]] set to 1 ; drive by mode
+
|-
 
+
|green scanline set to 0 || [[04C7]]  
 +
|-
 +
|reset sky colors || [[04FA]]
 +
|-
 +
|release weather || [[01B7]]
 +
|-
 +
|flash hud set to -1 || [[03E7]]
 +
|-
 +
|remove text box || [[03E6]]
 +
|-
 +
|pause timer set to 0 || [[0396]]
 +
|-
 +
|unfrozen state set to 1 || [[01B4]]
 +
|-
 +
|drunk visuals set to 0 || [[052C]]
 +
|-
 +
|handling responsiveness set to 0 || [[03FD]]
 +
|-
 +
|drive by mode set to 1 || [[0501]]
 +
|}
 
==San Andreas==
 
==San Andreas==
* [[01EB]] set to 1.0 ; car density
+
{|{{Prettytable}} class="sortable"
* [[03DE]] set to 1.0 ; ped density
+
!Effect
* [[08EA]] set to 1 ; gang spawn
+
!Related opcode
* [[0983]] set to 1
+
|-
* [[099E]] set to 1 ; police patrols
+
|car density set to 1.0 || [[01EB]]
 +
|-
 +
|ped density set to 1.0 || [[03DE]]
 +
|-
 +
|gang spawn set to 1 || [[08EA]]
 +
|-
 +
|unknown_gang_war set to 1 ||[[0983]]
 +
|-
 +
|police patrols set to 1 || [[099E]]
 +
|}
  
 
==External links==
 
==External links==
 
* {{GTAF|post|107998|1059813730|Vice City's cleanup routine}}
 
* {{GTAF|post|107998|1059813730|Vice City's cleanup routine}}
 
* [http://gtag.gtagaming.com/forums/index.php?showtopic=311 San Andreas' cleanup routine]
 
* [http://gtag.gtagaming.com/forums/index.php?showtopic=311 San Andreas' cleanup routine]

Revision as of 18:25, 25 September 2010

{{{games}}}


Description
Mission cleanup
Syntax
{{{syntax1}}}
Parameter

This opcode resets ("cleans up") multiple settings that are usually set during missions and in some threads. This helps in getting the game back to "normal" without the need to keep track of multiple settings. This opcode will only be activated if it is within a thread created by 00D7 or within a mission. It will not work elsewhere.

Vice City

Effect Related opcode
car density set to 1.0 01EB
ped density set to 1.0 03DE
remove police roadblock 04C1
restore camera 015A
widescreen set to 0 02A3
white scanline set to 0 0507
green scanline set to 0 04C7
reset sky colors 04FA
release weather 01B7
flash hud set to -1 03E7
remove text box 03E6
pause timer set to 0 0396
unfrozen state set to 1 01B4
drunk visuals set to 0 052C
handling responsiveness set to 0 03FD
drive by mode set to 1 0501

San Andreas

Effect Related opcode
car density set to 1.0 01EB
ped density set to 1.0 03DE
gang spawn set to 1 08EA
unknown_gang_war set to 1 0983
police patrols set to 1 099E

External links