I am trying to do a showimg/showtxt in relation to the screen's position, and not a grid of the level, something that would display basically like a GUI, like "in the center of the screen" as opposed to "the center of the level".
This is what I have, but it's still level based and not screen based.
NPC Code:
if (created) {
showtext 1,3,18,fixedsys,, blahblah;
showtext 2,3,20,fixedsys,, blahblah;
showtext 3,3,22,fixedsys,, blahblah;
showtext 4,3,24,fixedsys,, blahblah;
showtext 5,3,26,fixedsys,, blahblah;
changeimgcolors 1,211,1,21,255;
changeimgcolors 2,211,1,21,255;
changeimgcolors 3,211,1,21,255;
changeimgcolors 4,211,1,21,255;
changeimgcolors 5,211,1,21,255;
changeimgzoom 1,1.5;
changeimgzoom 2,1.5;
changeimgzoom 3,1.5;
changeimgzoom 4,1.5;
changeimgzoom 5,1.5;
}
Any suggestions?