View Single Post
Old 02-04-2015, 08:35 PM  
bigstar
FlashFXP Developer
 
bigstar's Avatar
 
Join Date: Oct 2001
Posts: 8,012
Default

With the new simplified execution order of the command engine I have successfully implemented nested command blocks

So now you can do something like this if you wanted to without needing to call an external script
Code:
/selectall -d
{
    /echo [BLOCK 1] %p%f
    /cd %p%f
    /selectall -d
    {
        /echo [BLOCK 2] %p%f
        /cd %p%f
        /selectall -d
        {
            /echo [BLOCK 3] %p%f
            /cd %p%f
        }
    }
}
/uncd
bigstar is offline