@JetClay one option may be to use G30 S-1
to do manual probing without setting the Z height to zero. Then run this:
G10 L2 Z{sensors.probes[0].lastStopHeight}
This will set the Z offset of the workplace to that height. Or you could use:
G10 L2 Z{move.axes[2].userPosition}
since the current Z position will be the same. Or even:
G10 L20 Z0
You can include
G10 L2 Z0
in your homedelta.g file to reset the offset to zero when you home the printer again.