Thread: Custom Gui
View Single Post
  #7  
Old 02-24-2007, 12:53 AM
Chompy Chompy is offline
¯\(º_o)/¯
Chompy's Avatar
Join Date: Sep 2006
Location: Norway
Posts: 2,815
Chompy is just really niceChompy is just really niceChompy is just really nice
Send a message via MSN to Chompy
PHP Code:
//#CLIENTSIDE
function onCreated()
{
  new 
GuiControlProfile"gui_window")
    
bitmap "guiwood_niromia.png";

  
showGui();
}
function 
showGui()
{
  new 
GuiWindowCtrl"Main_GUI")
  {
    
profile "gui_window";
    ...
  }

Something like that?

or
PHP Code:
//#CLIENTSIDE
function onCreated()
{
  new 
GuiWindowCtrl"Main_GUI")
  {
    ...
    
useownprofile true;
    
profile.bitmap "guiwood_niromia.png";
    ...
  }

Or maybe something like that, not sure :P
__________________
Reply With Quote