Scripting/Squirrel/Functions/DistanceFromPoint
Jump to navigation
Jump to search
This wiki is using an old backup from 2020
Some information may be old/missing
This function will get the distance from a point to another.
Syntax
DistanceFromPoint( x1, y1, x2, y2 )
Arguments
- float x1 - The X coordinate
- float y1 - The Y coordinate
- float x2 - The X coordinate
- float y2 - The Y coordinate
Return value
- float distance - The distance between the two points
Example
function onPlayerCommand( player, cmd, text )
{
if ( cmd == "distance" )
{
ClientMessage("[#ffffff]Your Distance to the point: " + DistanceFromPoint(player.Pos.x, player.Pos.y, -378.79, -537.962),player,255,255,255);
}
return 1;
}
Notes
Call onPlayerCommand were used in this example. More info about them in the corresponding pages.