Difference between revisions of "02F0"
(Created page with "thumb|02F0 pickup {{Icon|3}} '''DROP_<wbr>MINE''' <hr /> '''Description''' : Creates a mine pickup '''Syntax''' : 02F0: create_explosive_barrel_at [''flt...") |
m |
||
Line 14: | Line 14: | ||
:: Z-coordinate (or ''-100.0'' for [[02CE|ground z]] + 0.5 units) | :: Z-coordinate (or ''-100.0'' for [[02CE|ground z]] + 0.5 units) | ||
− | This opcode creates a [[0213#Pickup types|type 8]] mine pickup. It uses the <code>barrel1</code> [[DFF]] model, which produces a unique type 7 [[024F|corona ring]] around the barrel. This opcode is almost equivalent to opcode [[0213]] but the model is preset and a pickup handle is not stored. The mine pickup in general behaves as follows. If the pickup is created while the player character is on foot, it creates an inactive mine. | + | This opcode creates a [[0213#Pickup types|type 8]] mine pickup. It uses the <code>barrel1</code> [[DFF]] model, which produces a unique type 7 [[024F|corona ring]] around the barrel. This opcode is almost equivalent to opcode [[0213]] but the model is preset and a pickup handle is not stored. The mine pickup type in general behaves as follows. The pickup cannot be interacted while on foot. If the pickup is created while the player character is on foot, it creates an inactive mine. Having vehicles drive over the inactive mine produces no effect. Once the player is in any vehicle, the mine arms itself and set to detonate in 10 seconds. Any vehicle driving over the armed mine also detonates the mine. The resulting explosion is a type 6 [[020C|mine explosion]]. This opcode was never called in the [[Main.scm|original script]] of GTA III. |
== For Vice City == | == For Vice City == |
Revision as of 23:41, 5 September 2015
Description
- Creates a mine pickup
Syntax
- 02F0: create_explosive_barrel_at [flt1] [flt2] [flt3]
Parameter
- [flt1]
- X-coordinate
- [flt2]
- Y-coordinate
- [flt3]
- Z-coordinate (or -100.0 for ground z + 0.5 units)
This opcode creates a type 8 mine pickup. It uses the barrel1
DFF model, which produces a unique type 7 corona ring around the barrel. This opcode is almost equivalent to opcode 0213 but the model is preset and a pickup handle is not stored. The mine pickup type in general behaves as follows. The pickup cannot be interacted while on foot. If the pickup is created while the player character is on foot, it creates an inactive mine. Having vehicles drive over the inactive mine produces no effect. Once the player is in any vehicle, the mine arms itself and set to detonate in 10 seconds. Any vehicle driving over the armed mine also detonates the mine. The resulting explosion is a type 6 mine explosion. This opcode was never called in the original script of GTA III.
For Vice City
This opcode does not exist in Vice City but the pickup can be recreated using opcode 0213.
0213: [var] = create_pickup #BARREL1 type 9 at [flt1] [flt2] [flt3]
The main difference is [var] is a variable to store the handle of the pickup. The behavior of the barrel and pickup remains the same as GTA III.
Keywords
drop, create, explosive, barrel, mine