ya sorry here it is "umm the gui editor is really not that messy well i guess if you didn't make it
PHP Code:
New GuiWindowCtrl("MyGUI_Window1") {
profile = GuiBlueWindowProfile;
clientrelative = true;
clientextent = "320,240";
profile.bitmap = "guiera_window.png";
visible=0;
canclose = false;
canmaximize = false;
canminimize = false;
canmove = true;
canresize = true;
closequery = false;
destroyonhide = false;
text = "Baddy Quest";
x = 580;
y = 208;
new GuiButtonCtrl("MyGUI_Button1") {
useownprofile = true;
text = "Accept";
width = 80;
x = 26;
y = 186;
profile.bitmap = "guiera_button.png";
}