Difference between revisions of "0107"
(Created page with "thumb|300px|The left bus sign was created using 0107 while the right was created using 029B, both at ground z. {{Icon|trilogy}} '''CREATE_OBJECT''' <hr...") |
m |
||
(5 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
[[File:0107 029B.jpg|thumb|300px|The left bus sign was created using 0107 while the right was created using 029B, both at ground z.]] | [[File:0107 029B.jpg|thumb|300px|The left bus sign was created using 0107 while the right was created using 029B, both at ground z.]] | ||
− | {{Icon| | + | {{OpCode |
− | < | + | | games = {{Icon|t}} |
− | + | | command = CREATE_<wbr>OBJECT | |
− | + | | description = Creates an object at the coordinates point | |
− | + | | syntax1 = 0107: [''var''] = create_object [''int''] at [''flt1''] [''flt2''] [''flt3''] | |
− | + | | p1t = [''int''] | |
− | + | | p1d = Model index as defined in the [[IDE]] file; also acceptable is model's [[DFF]] name with a hash character | |
− | + | | p2t = [''flt1''] | |
− | + | | p2d = X-coordinate | |
− | + | | p3t = [''flt2''] | |
− | + | | p3d = Y-coordinate | |
− | + | | p4t = [''flt3''] | |
− | + | | p4d = Z-coordinate (or ≤''-100.0'' for [[02CE|ground z]]) | |
− | + | | p5t = [''var''] | |
− | + | | p5d = Variable to store the handle of the object | |
− | + | }} | |
− | |||
− | This opcode creates an object at | + | This opcode creates an object at the coordinates point. The z-coordinate uses the base rather than the center of the object's bounding box. Use opcode [[029B]] to create an object without this offset. It is not required to load the model (like through opcode [[0247]]) to create the object. The object must already have an entry in the <code>[[object.dat]]</code> file in order for them to be stable. Without an entry, the object can become unstable and when that happens the game will crash. |
+ | |||
+ | In GTA III and Vice City, there are two models that exhibit unique behaviors when created: <code>money.dff</code> and <code>[[Collectibles#GTA III|package1.dff]]</code>. They will appear just like a regular [[pickup]] (rotating, glowing coronas, and emitting light) but they can't be picked up and they have collision. | ||
+ | |||
+ | == Example == | ||
+ | :''See [[0392#Example]]'' | ||
== Keywords == | == Keywords == | ||
create, spawn, object, model | create, spawn, object, model | ||
− | [[ | + | == See also == |
+ | * {{Icon|t}} [[029B]], creates an object without offset |
Latest revision as of 05:43, 1 February 2017
- Description
- Creates an object at the coordinates point
- Syntax
- 0107: [var] = create_object [int] at [flt1] [flt2] [flt3]
- Parameter
This opcode creates an object at the coordinates point. The z-coordinate uses the base rather than the center of the object's bounding box. Use opcode 029B to create an object without this offset. It is not required to load the model (like through opcode 0247) to create the object. The object must already have an entry in the object.dat
file in order for them to be stable. Without an entry, the object can become unstable and when that happens the game will crash.
In GTA III and Vice City, there are two models that exhibit unique behaviors when created: money.dff
and package1.dff
. They will appear just like a regular pickup (rotating, glowing coronas, and emitting light) but they can't be picked up and they have collision.
Example
- See 0392#Example
Keywords
create, spawn, object, model
See also
- 029B, creates an object without offset