Only took a year.
PHP Code:
function showCrap() {
new GuiWindowCtrl("MyWindow") {
useownprofile = true;
style = $pref::video::defaultguistyle;
isExternal = true;
showOnTaskBar = true;
text = "My Window";
}
// Had to change in other function, didn't work in this one
stuff();
}
function stuff() {
temp.ctrl = MyWindow.externalwindow; // basically just change this
ctrl.width = 300;
ctrl.height = 200;
ctrl.x = (ctrl.screenWidth - ctrl.width) / 2;
ctrl.y = (ctrl.screenHeight - ctrl.height) / 2;
}