destroy
The destroy command destroys the block. This does NOT call the DESTROYED if command.



"then(destroy)"


No arguments.



And example of the destroy command used in a script is as follows...




The following script destroys the block after a countdown.


if(always)
{
then(changetimer,cd,-,1)

if(compare,var,<,0)
{
then(destroy)
}

}