
02-24-2007, 08:24 PM
|
|
the fake one
|
 |
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
|
|
Quote:
Originally Posted by Angel_Light
godofwarares sent me this, it didn't work at first, but when I closed graal and logged back on it worked.
PHP Code:
//#CLIENTSIDE
function onCreated()
{
new GuiWindowCtrl("Window")
{
useOwnProfile = true;
profile.bitmap = "whatever.png";
position = { 100, 100 };
extent = { 200, 300 };
title = destroyOnHide = true;
canMaximize = canResize = false;
text = format("Hello, %s!", player.nick);
}
}
just one question aswell, I've seen this
PHP Code:
position = { 100, 100 };
and this
PHP Code:
position = "100 100";
which way is correct, they both do the same thing?
|
Either is fine ... I just use
x = BLAH;
y = BLAH; |
|
|
|