Upgraded coding for pause.g and resume.g. RRF Jason had programmed the config to move to X0Y0 upon pausing the print. This shoved the print bed backwards away from you. I have changed this to move the bed forward to access the parts easier when paused. You will need to add the following code to your pause.g and resume.g macros.
; pause.g
M83 ; relative extruder moves
G1 E-10 F3600 ; retract 10mm
G91 ; relative moves
G1 Z5 F360 ; raise nozzle 5mm
G90 ; absolute moves
G1 X0 Y220 F6000 ; move head out of the way of the print
; resume.g
G1 R1 Z5 F6000 ; move to 2mm above resume point
G1 R1 ; lower nozzle to resume point
M83 ; relative extruder moves
G1 E10 F3600 ; undo the retraction