Hello Timothy,
If you made the feed rate modification previously suggested and you are still getting feed rate numbers output to the cnc file, then make sure you select the folder where you saved the modified post when post processing.

I also noticed some small differences in the output that you say works for you and the output from the burny plasma post processor. If you would like to have the output match exactly, then you can make the following modifications to the post processor.
var gMotionModal = createModal({}, gFormat); // modal group 1
function onOpen() {
feedOutput.disable();
writeBlock("G92YX");
}
function onComment(message) {
writeComment(message);
}
writeBlock(
gAbsIncModal.format(90),
gMotionModal.format(0),
xOutput.format(initialPosition.x), yOutput.format(initialPosition.y)
);
writeBlock(gMotionModal.format(0), x, y); // fast linear move
writeBlock(gMotionModal.format(1), x, y, f); // linear without G-word
var start = getCurrentPosition();
gMotionModal.reset();
if (isFullCircle()) {
var homeOffset = 1; // 1-4
//writeBlock(mFormat.format(79), "T" + homeOffset); // go home
writeBlock(gFormat.format(40));
writeBlock(gMotionModal.format(0));
You should be able to easily find the places in the code that matches these changes. The changes are marked in bold. As far as entering the kerf and torch height in the control, these should still be available to you with the output from the post.

Bob Schultz
Sr. Post Processor Developer