destroyed
The
destroyed
command is activated when a breakable object is destroyed.
"if(destroyed)"
No arguments.
And example of the
destroyed
command used in a script is as follows...
The following script creates an item when the block is destroyed.
if(destroyed)
{
then(createitem,16,16)
}
IF Commands