Difference between revisions of "02C7"
m |
m |
||
(One intermediate revision by one other user not shown) | |||
Line 5: | Line 5: | ||
| description = Creates a collection of [[Pickup#Pac-Man pickups|platinum pickups]] | | description = Creates a collection of [[Pickup#Pac-Man pickups|platinum pickups]] | ||
| syntax1 = 02C7: scatter_platinum [''int''] at [''flt1''] [''flt2''] [''flt3''] [''flt4''] | | syntax1 = 02C7: scatter_platinum [''int''] at [''flt1''] [''flt2''] [''flt3''] [''flt4''] | ||
− | | p1t = ['' | + | | p1t = [''flt1''] |
− | | p1d | + | | p1d = X-coordinate |
− | + | | p2t = [''flt2''] | |
− | + | | p2d = Y-coordinate | |
− | | | + | | p3t = [''flt3''] |
− | | | + | | p3d = Z-coordinate (or ≤''-100.0'' for [[02CE|ground z]]) |
− | | | + | | p4t = [''flt4''] |
− | | | + | | p4d = Maximum distance |
− | | | + | | p5t = [''int''] |
− | | | + | | p5d = Number of pickups |
}} | }} | ||
− | This opcode creates a collection of platinum pickups. Each pickup is pseudorandomly placed on a point within a rectangular area, up to the x-coordinate plus or minus the maximum distance and y-coordinate minus the maximum distance. The point also must be above collision that is considered a "road" | + | This opcode creates a collection of platinum pickups. Each pickup is pseudorandomly placed on a point within a rectangular area, up to the x-coordinate plus or minus the maximum distance and y-coordinate minus the maximum distance. The point also must be above collision that is considered a "road," which is an object that has a [[PATH (IDE Section)|PATH]] attached to it. If no such point is found, the game will lock up without producing a crash. The pickups are created using a model that [[MatchModelString#GTA III|matches the name <code>bullion</code>]] and can only be picked up while the player is in a vehicle. Every pickup collected increases your [[Wanted level|chaos level]] by 10, increases the vehicle's resistance to acceleration and turn, and increases the vehicle's mass. The original script called this opcode during "Bullion Run". |
== Keywords == | == Keywords == |
Latest revision as of 00:36, 4 December 2016
- Description
- Creates a collection of platinum pickups
- Syntax
- 02C7: scatter_platinum [int] at [flt1] [flt2] [flt3] [flt4]
- Parameter
- [flt1]
- X-coordinate
- [flt2]
- Y-coordinate
- [flt3]
- Z-coordinate (or ≤-100.0 for ground z)
- [flt4]
- Maximum distance
- [int]
- Number of pickups
This opcode creates a collection of platinum pickups. Each pickup is pseudorandomly placed on a point within a rectangular area, up to the x-coordinate plus or minus the maximum distance and y-coordinate minus the maximum distance. The point also must be above collision that is considered a "road," which is an object that has a PATH attached to it. If no such point is found, the game will lock up without producing a crash. The pickups are created using a model that matches the name bullion
and can only be picked up while the player is in a vehicle. Every pickup collected increases your chaos level by 10, increases the vehicle's resistance to acceleration and turn, and increases the vehicle's mass. The original script called this opcode during "Bullion Run".
Keywords
start, create, scatter, bullion, platinum, pickup, pacman, scramble
See also
- 02C3, creates a collection of donkey magazine pickups