Distance - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Distance (
/showthread.php?tid=579635)
Distance -
sscarface - 28.06.2015
I have created /info [playerid] cmd to check second player distance.
I have done it but i need distance in meter/MILES
PHP код:
stock Float:GetDistanceBetweenPlayers(p1,p2)
{
new Float:x1,Float:y1,Float:z1,Float:x3,Float:y3,Float:z3;
if (!IsPlayerConnected(p1) || !IsPlayerConnected(p2))
{
return -1.00;
}
GetPlayerPos(p1,x1,y1,z1);
GetPlayerPos(p2,x3,y3,z3);
return floatsqroot(floatpower(floatabs(floatsub(x3,x1)),2)+floatpower(floatabs(floatsub(y3,y1)),2)+floatpower(floatabs(floatsub(z3,z1)),2));
}
in my cmd
PHP код:
Float:Distance = GetDistanceBetweenPlayers(playerid,ID);
Im using this ^^
Re: Distance -
shadowdog - 28.06.2015
The distance in San Andreas is measured in Meters, therefore your current function is in meters.
To get it to miles, do:
PHP код:
Float:Distance = GetDistanceBetweenPlayers(playerid,ID) * 0.000621371192;
Re: Distance -
sscarface - 28.06.2015
And what about this?
PHP код:
Distance - ~w~%0.2f