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?