Graal Pastebin

New Paste
Pasted on January 4, 2012.
View the raw file

new GuiControl("MW_Window") {
    useownprofile = true;
    height = 20;
    width = 150;
    x = 5;
    y = GraalControl.height - height - 5;
    profile.border = 1;
    profile.opaque = true;
    profile.fillcolor = {
      0, 0, 0, 150
    };
    visible = false;
    new GuiTextCtrl("MW_Player") {
      height = 3;
      width = MW_Window.width;
      x = 5;
      y = 1;
    }
  }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19