2024-05-03, 06:45 PM
(This post was last modified: 2024-05-04, 12:28 PM by carl_anderson.)
open up documentation
https://www.open.mp/docs/scripting/funct...eFromPoint
you have
but it should be
also this code doesnt make sense, cause why you want to find player distance from 2.0, 2.0, 2.0 point?
https://www.open.mp/docs/scripting/funct...eFromPoint
you have
Code:
GetPlayerDistanceFromPoint(playerid, 2.0, 2.0, 2.0, fall_height);
Code:
new Float:fall_height = GetPlayerDistanceFromPoint(playerid, 2.0, 2.0, 2.0);
also this code doesnt make sense, cause why you want to find player distance from 2.0, 2.0, 2.0 point?