Scripting/Squirrel/Functions/Sphere.Remove: Difference between revisions
Jump to navigation
Jump to search
This wiki is using an old backup from 2020
Some information may be old/missing
Decent 946 (talk | contribs) No edit summary |
Decent 946 (talk | contribs) No edit summary |
||
Line 30: | Line 30: | ||
</source> | </source> | ||
=== Notes === | === Notes === | ||
call [[onPlayerCommand]] and function [[Scripting/Squirrel/Functions/FindSphere|''FindSphere'']] were used in this example.. | |||
== Related Functions == | |||
{{Scripting/Squirrel/Functions/Sphere_Functions}} |
Latest revision as of 16:56, 15 March 2016
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
call onPlayerCommand and function FindSphere were used in this example..