Scripting/Squirrel/Functions/FindSphere

From Vice City Multiplayer
Revision as of 12:43, 5 June 2015 by Ysc3839 (talk | contribs) (Created page with "Retrieve a sphere object from sphere's ID. == Syntax == <pre>FindSphere( id )</pre> == Arguments == * ''integer'' '''id''' - The sphere's ID. == Example == <source lang=s...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing

Retrieve a sphere object from sphere's ID.

Syntax

FindSphere( id )

Arguments

  • integer id - The sphere's ID.

Example

    if ( cmd == "sphere" )
    {
         local sphere = FindSphere( text );

         if ( !sphere ) MessagePlayer( "[#ffffff]Can't find sphere " + text + ".", player );
         else player.Pos = sphere.Pos;
         MessagePlayer( "[#ffffff] Teleport to sphere " + text + ".", player );
    }

Notes

Call onPlayerCommand were used in this example. More info about them in the corresponding pages.

Related Functions