Scripting/Squirrel/Functions/FindSphere
		
		
		
		Jump to navigation
		Jump to search
		

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
- int id - The sphere's ID.
Example
function onPlayerCommand( player, cmd, text )
{
    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.