Hello,
I have an issue with a GuiShowImgCtrl cutting off. I'm attempting to script a GUI profile script for a server, but resizing the actor just adds the issue of it cutting off. I have tried GuiBitmapCtrl like another post suggested, but that doesn't support actors (I don't believe). Is there a way to achieve setting the height and width efficiently?
PHP Code:
new GuiShowImgCtrl("Profile_Char") {
x = 235;
y = 100;
playerlook = false;
actor.head = temp.char[0];
actor.attr[1] = temp.char[1];
actor.body = temp.char[2];
actor.shield = temp.char[3];
actor.colors[0] = temp.char[4];
actor.colors[1] = temp.char[5];
actor.colors[2] = temp.char[6];
actor.colors[3] = temp.char[7];
actor.colors[4] = temp.char[8];
ani = "idle";
stretchx = 1.5;
stretchy = 1.5;
width = 200;
height = 50;
}