NPC:GetDistanceFromMeToPoint
From SA-MP Wiki
Description:
Get the distance between the NPC and a point.
(Float:x, Float:y, Float:z, &Float:Distance)
Float:x | The X coordinate of the point. |
Float:y | The Y coordinate of the point. |
Float:z | The Z coordinate of the point. |
&Float:Distance | A float to save the distance in, passed by reference. |
Return Values:
This function does not return any specific values.
Example Usage:
new Float:distance; GetDistanceFromMeToPoint(2.0, 3.0, 2.0, distance); printf("The distance between the npc and the point (2.0, 3.0, 2.0) is %f", distance);
Related Functions
The following functions may be useful, as they are related to this function in one way or another.
- NPC:GetMyPos: Get the NPC's position.
- NPC:SetMyPos: Set the NPC's position.