|
Well for one thing there are only two HUDCREATE commands, not three. (Also you don't need to repeat the assignments that stay the same, although it shouldn't hurt anything to do so.)
I notice that you do the HUD_ELEMENT_Z, _X, _Y assignments several times for the same HUD, and of course only the last assignment will do anything.
For example in one place you have
AWINT HUD_ELEMENT_X=0; AWINT HUD_ELEMENT_y=-16; AWINT HUD_ELEMENT_z=0; AWINT HUD_ELEMENT_X=0; AWINT HUD_ELEMENT_Y=0; AWINT HUD_ELEMENT_Z=1;
The first assignment 0,-16,0 will be overridden by the second 0,0,1. I assume that the first set is the one you want, since the second set 0,0,1 is the same as you have for the first HUD.
Anyway, I played around with it a bit so it is working now, and you can adjust it further if you want.
|