This site has been archived and made available for preservation purposes. No edits can be made.

IsNearPoint

(Difference between revisions)
Return to current revision
  1.  
    Returns [wiki="True"]vaultmp::True[/wiki] if the [wiki]Actor[/wiki] is in the given sphere.
    [h="2"] Declaration [/h]
    [highlight=cpp]
    VAULTSCRIPT vaultmp::State (*IsNearPoint)(vaultmp::ID, vaultmp::Value, vaultmp::Value, vaultmp::Value, vaultmp::Value);
    native Bool:IsNearPoint(ID, Float:X, Float:Y, Float:Z, Float:R);
    [/highlight]
    [h="2"] Parameters [/h]
    [b][wiki="ID"]vaultmp::ID[/wiki][/b] - the ID of the [wiki]Actor[/wiki]
    [b]vaultmp::Value[/b] - X coordinate of the center
    [b]vaultmp::Value[/b] - Y coordinate of the center
    [b]vaultmp::Value[/b] - Z coordinate of the center
    [b]vaultmp::Value[/b] - The radius of the sphere
    [h="2"] Return value [/h]
    Returns a [wiki="State"]vaultmp::State[/wiki] ([wiki]True[/wiki] - the [wiki]Actor[/wiki] is in the sphere, [wiki]False[/wiki] - the [wiki]Actor[/wiki] is not in the sphere).
  2. -
    [h="2"] Usage example (C++) [/h]
  3. +
    [h="2"] Usage example[/h]
  4.  
    [highlight=cpp]
    vaultmp::State state;
    state = IsNearPoint(actor,5.0,8.0,0.0,20.0);
    [/highlight]
    [highlight=c]
    new bool:state;
    state = IsNearPoint(actor,5.0,8.0,0.0,20.0);
    [/highlight]
    [category]VaultMP interface[/category]
    [category]Scripting functions[/category]
    [category]Actor functions[/category]