04C4
Description
- Stores a point offset from the character's position
Syntax
- 04C4: create_coordinate [var1] [var2] [var3] from_actor [char handle] offset [float1] [float2] [float3]
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
- [char handle]
- The handle of the character
- [float1]
- Distance to offset from the character's right side
- [float1]
- Distance to offset from the character's front side
- [float1]
- Distance to offset from the character's top side
Native analog
This opcode stores a point offset from the character's position. The coordinates it store is dependent on the direction the character is facing.
Example
The following exmaple, using Sanny Builder, will spawn an Adrenaline pickup in front of the player character and a Bribe pickup to the right of the player character after pressing the ACTION key.
// set constants
const
X_POS = 0@
Y_POS = 1@
Z_POS = 2@
PICKUP_1 = 3@
PICKUP_2 = 4@
end
// spawn pickups
while true
wait 50
if
00E1: key_pressed 0 4 // action key
then
// spawn adrenaline
04C4: create_coordinate X_POS Y_POS Z_POS from_actor $PLAYER_ACTOR offset 0.0 3.0 0.0 // 3 units to the front of the player
0215: destroy_pickup PICKUP_1
0213: PICKUP_1 = create_pickup #ADRENALINE type 3 at X_POS Y_POS Z_POS
// spawn bribe
04C4: create_coordinate X_POS Y_POS Z_POS from_actor $PLAYER_ACTOR offset 3.0 0.0 0.0 // 3 units to the right of the player
0215: destroy_pickup PICKUP_2
0213: PICKUP_2 = create_pickup #BRIBE type 3 at X_POS Y_POS Z_POS
end
end
For GTA III
This opcode does not exist in GTA III. The following code, in which GTA III can use, will work similarly to this:
04C4: create_coordinate X_POS Y_POS Z_POS from_actor $PLAYER_ACTOR offset 0.0 3.0 0.0
const
X_POS = 0@
Y_POS = 1@
Z_POS = 2@
ANGLE = 3@
SINE_ANGLE = 4@
COSINE_ANGLE = 5@
end
var
X_POS : float
Y_POS : float
SINE_ANGLE : float
COSINE_ANGLE : float
end
00A0: store_actor $PLAYER_ACTOR position_to X_POS Y_POS Z_POS
0172: ANGLE = actor $PLAYER_ACTOR z_angle
02F6: SINE_ANGLE = sine ANGLE
02F7: COSINE_ANGLE = cosine ANGLE
SINE_ANGLE *= -3.0
COSINE_ANGLE *= 3.0
X_POS += SINE_ANGLE
Y_POS += COSINE_ANGLE
Keywords
store, coordinates, get, point, actor, character, offset