Where's the Wolf

Where's the Wolf
Where's the Wolf is an arcade style hack 'n slash where you (a Werewolf) must go around slaughtering villagers. You are able to stealthily walk around as a human, but if you are seen transformed the police will chase you to no end.
The AI paths between way-points and has collision avoidance. This was my first real attempt at a game made by myself and I think it came out pretty well.
Movement snippet

Lines 188 & 193 & 209: Check if running and if returning to pathing state.
Lines 190-191: If already pathing continue.
Lines 195-206: Return to pathing route.
Line 207: Collision detection ray to avoid obstacles on the way back.
Line 210: If the AI is running that means player is a WW - do reaction to that (will be different if they are aggressive or passive).
​
The runningScript has been left out as it is a mess of if statements as I was coding this particular part without prior knowledge of state machines.
​