Scripting/Squirrel/Functions/Sphere.Remove

From Vice City Multiplayer
Revision as of 14:36, 14 March 2016 by Decent 946 (talk | contribs)
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing

allows you to Remove a Sphere.

Syntax

Sphere.Remove()


Example

function onPlayerCommand( player, cmd, text )
{
 if ( cmd == "removesphere" )
	{	
               if ( !text ) MessagePlayer( "SYNTAX: /"+cmd+" [Sphere ID]", player );
               else
               {
			local Sphere = FindSphere( text.tointeger() );
		
			if ( !IsNum ) MessagePlayer( "Sphere ID must be in numbers", player );
			else if ( !Sphere ) MessagePlayer( "Sphere "+text+" is not created yet.", player );
			else
			{
				Sphere.Remove();
				MessagePlayer( "you removed the sphere ID: "+ Sphere.ID, player );
	       		}
	        }
     }
}

Notes

[onPlayerCommand], [FindSphere] was used in this example..