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