Having a problem while creating my own, here's what I have so far:
The inventory:
HTML Code:
getProfiles();
if (inventoryOpen)
{
core.updateItems();
new GuiControl("inventory_Main")
{
profile = "guiMenu";
position = {temp.inventoryPosition[0], temp.inventoryPosition[1]};
extent = {temp.inventorySize[0], temp.inventorySize[1]};
}
}
He's the class that finds the profile "guiMenu", however it isn't using that as a profile.
HTML Code:
//#CLIENTSIDE
function getProfiles()
{
echo("DRAWING");
new GuiControlProfile("guiMenu")
{
fillColor = {255, 0, 0};
fontColor = {255, 255, 255};
bitmap = "block.png";
opaque = false;
transparency = 0.5;
}
}
I am receiving the "DRAWING" in my Console Log, however, It's not using it!