I'm using the NFS wizards to create some parts and have about 9 different wizard gcodes output into the same file. This includes using three different tools. Currently, I have it setup to ignore tool changes (because I didn't know any better), however once I change this to "Stop spindle, wait for Cyclestart", I would like to also move the tool away from the work piece so I can physically change it. I don't mind manually placing the code into each file as needed. What all do I need to include?
M6 (tool change) - should stop the spindle?
G0 Z1.0 (Raise it up)
G0 X6 Y0 (move the tool to the right of the work piece)
(Perform the tool change here)
(Press cycle start at this point and it should start the spindle again and begin the next section of Gcode)

My X, Y, and Z values would be different for each piece I'm working on.