#define LEVEL_CORNERS_INSET -33 // (mm) An inset for corner leveling
#define MIN_PROBE_EDGE -10 was 10
#if PROBE_SELECTED && !IS_KINEMATIC
//#define MIN_PROBE_EDGE_LEFT MIN_PROBE_EDGE
//#define MIN_PROBE_EDGE_RIGHT MIN_PROBE_EDGE
//#define MIN_PROBE_EDGE_FRONT MIN_PROBE_EDGE
//#define MIN_PROBE_EDGE_BACK MIN_PROBE_EDGE
Formula used after manually inputting
#define MIN_PROBE_EDGE_LEFT (-40 <= MIN_PROBE_EDGE ? X_MIN_POS + MIN_PROBE_EDGE : X_MIN_POS + -40)
#define MIN_PROBE_EDGE_RIGHT (-40 >= -MIN_PROBE_EDGE ? X_MAX_POS - MIN_PROBE_EDGE : X_MAX_POS + -40)
#define MIN_PROBE_EDGE_FRONT (5 <= MIN_PROBE_EDGE ? Y_MIN_POS + MIN_PROBE_EDGE : Y_MIN_POS + 5)
#define MIN_PROBE_EDGE_BACK (5 >= -MIN_PROBE_EDGE ? Y_MAX_POS - MIN_PROBE_EDGE : Y_MAX_POS + 5)
#define Z_MIN_ENDSTOP_INVERTING FALSE // Set to true to invert the logic of the endstop. (was true)
#define MIN_PROBE_EDGE 15 (was 12)
#define RESTORE_LEVELING_AFTER_G28
#define ENABLE_LEVELING_FADE_HEIGHT 3 (3 was blank)
Any and all help would be appreciated because i can't figure out how it works, even after watching videos and reading tons of forum posts that are above my knowledge.