Just so you all know, I found a solution and even fixed up another sprite I have been drawing to be a bit better aligned, I use a formula in the form of:

(For ABOVE or BELOW):

X_1 := X_2 + ((W_2 - W_1) / 4);

In some cases I use / 2.

But basically for my purpose it's working, whether it's absolute for any situation or not lol.

(For LEFT or RIGHT):

Y_1 := Y_2 + ((H_2 - H_1) / 4);

KEY:
X = TOP
Y = LEFT
W = Width
H = Height
/ = Divide By
1 = The sprite to be positioned.
2 = The sprite that is to have the other positions around it.

And it seems to be working quite well ^_^.

Took a little bit of brainstorming and messing around in paint in different situations to make sure it would work well enough for this particular case but I got it.