Blueprint ThumbStick Conditions?

Goal: I am making a 1st person swordplay level, and will essentially have a “frontal-cone-range of motion” for the stabbing directions.

Idea: To possibly have 9 stabbing animations and blend between them depending on the Gamepad RightThumbstick’s tilt “intensity”[aka it’s (x,y) location when pressed]. The stab location would be on an (x,y) grid ranging anywhere from (-x to +x, -y to +y) [ie. think of the Gamepad RightThumbstick as the (x,y) grid]

Issue1: I’m trying to figure out how to have 2 conditions met to do an action in blueprint:

  1. while Gamepad RightThumbstick axes held NorthEast + Gamepad RightThumbstick pressed, do StabNorth
  2. while Gamepad RightThumbstick axes held NorthEast + Gamepad RightThumbstick pressed, do StabNorthEast
  3. while Gamepad RightThumbstick axes held NorthEast + Gamepad RightThumbstick pressed, do StabEast
  4. while Gamepad RightThumbstick axes held NorthEast + Gamepad RightThumbstick pressed, do StabSouthEast
  5. while Gamepad RightThumbstick axes held NorthEast + Gamepad RightThumbstick pressed, do StabSouth
  6. while Gamepad RightThumbstick axes held NorthEast + Gamepad RightThumbstick pressed, do StabSouthWest
  7. while Gamepad RightThumbstick axes held NorthEast + Gamepad RightThumbstick pressed, do StabWest
  8. while Gamepad RightThumbstick axes held NorthEast + Gamepad RightThumbstick pressed, do StabNorthWest
  9. while Gamepad RightThumbstick axes held at “default position” (0,0?) + Gamepad RightThumbstick pressed, do StabCenter

Question:
Does anyone know to go about creating a blueprint for this? Are there alternative ways/better ways to achieve this goal? Thank you.

Reference Image: (minus the North, South, East, and West position references)