Jump to content

How to allow using a command in range?


theralio

Recommended Posts

/**
 * @author Paccoderpster
 * @param {mp.Vector3} pos1 
 * @param {mp.Vector3} pos2 
 * @param {number} range 
 * @return true if the player is range; false if not
 */
global.isInRange = function isInRange(pos1, pos2, range) {
    return (
        Math.sqrt(
            Math.pow(pos1.x - pos2.x, 2) +
            Math.pow(pos1.y - pos2.y, 2) +
            Math.pow(pos1.z - pos2.z, 2)
        ) <= range
    );
}

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...