Difference between revisions of "020C"
Jump to navigation
Jump to search
(explosion sfx) |
(range and more sfx) |
||
Line 16: | Line 16: | ||
:: Z-coordinate | :: Z-coordinate | ||
− | This opcode creates an explosion at a coordinates point. These are real explosions so they make sounds, cause damage, and shake the camera. Opcode [[0565]] creates the same visual explosion without sounds. | + | This opcode creates an explosion at a coordinates point. These are real explosions so they make sounds, cause damage, and shake the camera. Different explosion types produce different [[SFX|sound effects]] and have different ranges in which the sound of the explosion can be heard. Opcode [[0565]] creates the same visual explosion without sounds. |
== Explosion types == | == Explosion types == | ||
=== GTA III === | === GTA III === | ||
{| class="wikitable sortable" | {| class="wikitable sortable" | ||
− | ! Type || Enum{{ref| | + | ! Type || Enum || SFX{{ref|2}} || Range || style="width: 4em;" | Used in original SCM || class="unsortable" | Notes |
|- | |- | ||
− | | 0 || | + | | 0 || EXPLOSION_<wbr>GRENADE || 65 || 400.0 || {{a|c}} | ✓ || |
|- | |- | ||
− | | 1 || || | + | | 1 || EXPLOSION_<wbr>MOLOTOV || 66 || 200.0 || || |
|- | |- | ||
− | | 2 || || | + | | 2 || EXPLOSION_<wbr>ROCKET || 65 || 400.0 || || |
|- | |- | ||
− | | 3 || | + | | 3 || EXPLOSION_<wbr>CAR || 456 || 400.0 || {{a|c}} | ✓ || |
|- | |- | ||
− | | 4 || || Exactly the same as type 3 | + | | 4 || || 456 || 400.0 || || Exactly the same as type 3 |
|- | |- | ||
− | | 5 || | + | | 5 || EXPLOSION_<wbr>HELI || 456 || 400.0 || {{a|c}} | ✓ || |
|- | |- | ||
− | | 6 || || | + | | 6 || || 79 || 300.0 || || |
|- | |- | ||
− | | 7 || || | + | | 7 || || 65 || 400.0 || || |
|- | |- | ||
− | | 8 || || | + | | 8 || || 65 || 400.0 || || |
|- | |- | ||
− | | 9 || || | + | | 9 || || 79 || 300.0 || || |
|} | |} | ||
=== Vice City === | === Vice City === | ||
{| class="wikitable sortable" | {| class="wikitable sortable" | ||
− | ! Type || Enum{{ref|1}} || style="width: 4em;" | Used in original SCM | + | ! Type || Enum{{ref|1}} || SFX{{ref|3}} || Range || style="width: 4em;" | Used in original SCM || class="unsortable" | Notes |
|- | |- | ||
− | | 0 || | + | | 0 || EXPLOSION_<wbr>GRENADE || 48 || 200.0 || {{a|c}} | ✓ || Grenade |
|- | |- | ||
− | | 1 || | + | | 1 || EXPLOSION_<wbr>MOLOTOV || 49 || 150.0 || {{a|c}} | ✓ || Molotov Cocktail, can only explode on ground and cannot explode over water |
|- | |- | ||
− | | 2 || | + | | 2 || EXPLOSION_<wbr>ROCKET || 48 || 200.0 || {{a|c}} | ✓ || Rocket |
|- | |- | ||
− | | 3 || | + | | 3 || EXPLOSION_<wbr>CAR || 47 || 200.0 || || Car and motorcycle |
|- | |- | ||
− | | 4 || | + | | 4 || EXPLOSION_<wbr>CAR_<wbr>QUICK || 47 || 200.0 || || Exactly the same as type 3 |
|- | |- | ||
− | | 5 || | + | | 5 || EXPLOSION_<wbr>BOAT || 47 || 200.0 || || Exactly the same as type 3; boat |
|- | |- | ||
− | | 6 || | + | | 6 || EXPLOSION_<wbr>HELI || 47 || 200.0 || {{a|c}} | ✓ || Final destruction of the NPC police helicopter and the NPC Dodo |
|- | |- | ||
− | | 7 || | + | | 7 || EXPLOSION_<wbr>HELI2 || 47 || 200.0 || || Similar to type 6; midair explosion of the NPC police helicopter |
|- | |- | ||
− | | 8 || | + | | 8 || EXPLOSION_<wbr>MINE || 59 || 200.0 || || [[Pickup]] mine |
|- | |- | ||
− | | 9 || | + | | 9 || EXPLOSION_<wbr>BARREL || 48 || 200.0 || || Explosive barrel |
|- | |- | ||
− | | 10 || | + | | 10 || EXPLOSION_<wbr>TANK_<wbr>GRENADE || 48 || 200.0 || || Rhino cannon |
|- | |- | ||
− | | 11 || | + | | 11 || EXPLOSION_<wbr>HELI_<wbr>BOMB || 59 || 200.0 || {{a|c}} | ✓ || |
|} | |} | ||
# {{note|1}} Enums are from {{U|Wesser}}'s [https://www.dropbox.com/s/nhdia6yokgmi0bo/gta3vc_defines.rar GTA III/VC definitions]. | # {{note|1}} Enums are from {{U|Wesser}}'s [https://www.dropbox.com/s/nhdia6yokgmi0bo/gta3vc_defines.rar GTA III/VC definitions]. | ||
− | # {{note|2}} These values correspond to an | + | # {{note|2}} These values correspond to an SFX entry. The association between the explosion and SFX is [[hardcoded]]. The range is how far the player can be in meters before the sound diminishes. For III v1.0, the location of the array in memory starts at 0x609240. |
+ | # {{note|3}} For VC v1.0, the location of the array in memory starts at 0x6B2D4C. | ||
=== San Andreas === | === San Andreas === |
Revision as of 01:24, 17 March 2015
Description
- Creates an explosion at a point
Syntax
- 020C: create_explosion [int] at [flt1] [flt2] [flt3]
Parameter
- [int]
- Explosion type (see below)
- [flt1]
- X-coordinate
- [flt2]
- Y-coordinate
- [flt3]
- Z-coordinate
This opcode creates an explosion at a coordinates point. These are real explosions so they make sounds, cause damage, and shake the camera. Different explosion types produce different sound effects and have different ranges in which the sound of the explosion can be heard. Opcode 0565 creates the same visual explosion without sounds.
Explosion types
GTA III
Type | Enum | SFX[2] | Range | Used in original SCM | Notes |
---|---|---|---|---|---|
0 | EXPLOSION_ |
65 | 400.0 | ✓ | |
1 | EXPLOSION_ |
66 | 200.0 | ||
2 | EXPLOSION_ |
65 | 400.0 | ||
3 | EXPLOSION_ |
456 | 400.0 | ✓ | |
4 | 456 | 400.0 | Exactly the same as type 3 | ||
5 | EXPLOSION_ |
456 | 400.0 | ✓ | |
6 | 79 | 300.0 | |||
7 | 65 | 400.0 | |||
8 | 65 | 400.0 | |||
9 | 79 | 300.0 |
Vice City
Type | Enum[1] | SFX[3] | Range | Used in original SCM | Notes |
---|---|---|---|---|---|
0 | EXPLOSION_ |
48 | 200.0 | ✓ | Grenade |
1 | EXPLOSION_ |
49 | 150.0 | ✓ | Molotov Cocktail, can only explode on ground and cannot explode over water |
2 | EXPLOSION_ |
48 | 200.0 | ✓ | Rocket |
3 | EXPLOSION_ |
47 | 200.0 | Car and motorcycle | |
4 | EXPLOSION_ |
47 | 200.0 | Exactly the same as type 3 | |
5 | EXPLOSION_ |
47 | 200.0 | Exactly the same as type 3; boat | |
6 | EXPLOSION_ |
47 | 200.0 | ✓ | Final destruction of the NPC police helicopter and the NPC Dodo |
7 | EXPLOSION_ |
47 | 200.0 | Similar to type 6; midair explosion of the NPC police helicopter | |
8 | EXPLOSION_ |
59 | 200.0 | Pickup mine | |
9 | EXPLOSION_ |
48 | 200.0 | Explosive barrel | |
10 | EXPLOSION_ |
48 | 200.0 | Rhino cannon | |
11 | EXPLOSION_ |
59 | 200.0 | ✓ |
- ^ Enums are from Wesser's GTA III/VC definitions.
- ^ These values correspond to an SFX entry. The association between the explosion and SFX is hardcoded. The range is how far the player can be in meters before the sound diminishes. For III v1.0, the location of the array in memory starts at 0x609240.
- ^ For VC v1.0, the location of the array in memory starts at 0x6B2D4C.
San Andreas
Keywords
add, create, explosion