The with command, when used, makes the next command run by the child instead of the parent..
"then(with, child)"
Argument |
Function |
child |
The child that will run the command.. |
And example of the with command used in a script is as follows...
The following script destroys all child blocks when interacted with.
if(interact)
{
then(with,slot1) then(destroy)
then(with,slot2) then(destroy)
then(with,slot3) then(destroy)
then(destroy)
}
|
|