Przejdź do głównej zawartości

GetPlayerVelocity

Description

Get the velocity (speed) of a player on the X, Y and Z axes.

NameDescription
playeridThe player to get the speed from.
&Float:xA float variable in which to store the velocity on the X axis, passed by reference.
&Float:yA float variable in which to store the velocity on the Y axis, passed by reference.
&Float:zA float variable in which to store the velocity on the Z axis, passed by reference.

Returns

The function itself doesn't return a specific value. The X, Y and Z velocities are stored in the specified variables.

Examples

public OnPlayerCommandText(playerid, cmdtext[])
{
if (!strcmp(cmdtext, "/velocity", true))
{
new
Float:x, Float:y, Float:z,
string[128];

GetPlayerVelocity(playerid, x, y, z);

format(string, sizeof(string), "You are going at a velocity of X: %f, Y: %f, Z: %f", x, y, z);
SendClientMessage(playerid, 0xFFFFFFFF, string);
return 1;
}
}