Thread: Help with GUI
View Single Post
  #1  
Old 03-27-2006, 02:35 AM
protagonist protagonist is offline
Banned
protagonist's Avatar
Join Date: May 2003
Location: CAW
Posts: 5,586
protagonist is on a distinguished road
Send a message via AIM to protagonist Send a message via MSN to protagonist
Help with GUI

NPC Code:

//#CLIENTSIDE

function onWeaponFired(){
new GuiWindowCtrl(WindowTest){
extent = {140,62};
position = {50,50};

text = "Test Window";

new GuiButtonCtrl(Okay){
position = {6,24};
extent = {128,32};

text = "Okay!";
}
}
}
function WindowTest.onAction(){
WindowTest.destroy;
}




What's wrong with it?
Reply With Quote