Difference between revisions of "0400"
(updating page) |
|||
Line 1: | Line 1: | ||
− | {{Icon|3}} | + | {{Icon|3}} '''REGISTER_4X4_MAYHEM_TIME''' |
<hr /> | <hr /> | ||
'''Description''' | '''Description''' | ||
− | : Saves | + | : Saves the fastest time to the Multistorey Mayhem stat |
'''Syntax''' | '''Syntax''' | ||
: 0400: save_mayhem_time [''int''] | : 0400: save_mayhem_time [''int''] | ||
'''Parameter''' | '''Parameter''' | ||
: [''int''] | : [''int''] | ||
− | :: | + | :: Integer value |
− | This opcode saves the | + | This opcode saves the lowest value to the "Multistorey Mayhem in secs" [[List of statistics (III)|stat]] ([[GXT]] string <code>FEST_RM</code>). The stat can only be overwritten by a value smaller than the previously saved value. The value set with this opcode is saved in [[Saves (GTA 3)#Block 17: Stats|block 17 of the save file]]. |
− | {{Icon|VC}} {{Icon|SA}} | + | {{Icon|VC}} {{Icon|SA}} '''GET_OFFSET_FROM_OBJECT_IN_WORLD_COORDS''' |
<hr /> | <hr /> | ||
'''Description''' | '''Description''' | ||
: Stores a point offset from the object's position | : Stores a point offset from the object's position | ||
'''Syntax''' | '''Syntax''' | ||
− | : 0400: create_coordinate [''var1''] [''var2''] [''var3''] from_object [''object handle''] offset ['' | + | : 0400: create_coordinate [''var1''] [''var2''] [''var3''] from_object [''object handle''] offset [''flt1''] [''flt2''] [''flt3''] |
'''Parameter''' | '''Parameter''' | ||
: [''var1''] | : [''var1''] | ||
Line 25: | Line 25: | ||
: [''object handle''] | : [''object handle''] | ||
:: The handle of the object | :: The handle of the object | ||
− | : ['' | + | : [''flt1''] |
:: Distance to offset from the object's right side | :: Distance to offset from the object's right side | ||
− | : ['' | + | : [''flt1''] |
:: Distance to offset from the object's front side | :: Distance to offset from the object's front side | ||
− | : ['' | + | : [''flt1''] |
:: Distance to offset from the object's top side | :: Distance to offset from the object's top side | ||
'''Native analog''' | '''Native analog''' |
Revision as of 10:01, 28 June 2015
Description
- Saves the fastest time to the Multistorey Mayhem stat
Syntax
- 0400: save_mayhem_time [int]
Parameter
- [int]
- Integer value
This opcode saves the lowest value to the "Multistorey Mayhem in secs" stat (GXT string FEST_RM
). The stat can only be overwritten by a value smaller than the previously saved value. The value set with this opcode is saved in block 17 of the save file.
GET_OFFSET_FROM_OBJECT_IN_WORLD_COORDS
Description
- Stores a point offset from the object's position
Syntax
- 0400: create_coordinate [var1] [var2] [var3] from_object [object handle] offset [flt1] [flt2] [flt3]
Parameter
- [var1]
- Variable to store the offset x-coordinate
- [var2]
- Variable to store the offset y-coordinate
- [var3]
- Variable to store the offset z-coordinate
- [object handle]
- The handle of the object
- [flt1]
- Distance to offset from the object's right side
- [flt1]
- Distance to offset from the object's front side
- [flt1]
- Distance to offset from the object's top side
Native analog
This opcode stores a point offset from the object's position. The coordinates it store is dependent on the direction the object is facing. If you set the offsets to 0.0, it is better to use opcode 01BB instead since you are getting the object's own position.
Example
The following example, using Sanny Builder, will spawn a pistol object at the player character. Pressing the ACTION key will spawn an adrenaline pickup rotating around the pistol object.
// set constants
const
X_POS = 0@
Y_POS = 1@
Z_POS = 2@
ANGLE = 3@
SPAWNED_OBJECT = 4@
SPAWNED_PICKUP = 5@
end
// spawn object
00A0: store_actor $PLAYER_ACTOR position_to X_POS Y_POS Z_POS
0107: SPAWNED_OBJECT = create_object #COLT45 at X_POS Y_POS Z_POS
// spawn pickup and rotate object
while true
wait 10
if
00E1: key_pressed 0 4 // action key
then
0176: ANGLE = object SPAWNED_OBJECT z_angle
ANGLE += 5.0
if
ANGLE > 360.0
then
ANGLE = 0.0
end
0177: set_object SPAWNED_OBJECT z_angle_to ANGLE
0400: create_coordinate X_POS Y_POS Z_POS from_object SPAWNED_OBJECT offset 3.0 0.0 0.0
0215: destroy_pickup SPAWNED_PICKUP
0213: SPAWNED_PICKUP = create_pickup #ADRENALINE type 3 at X_POS Y_POS Z_POS
end
end
Keywords
get, store, object, position, coordinates, location, offset