Denizen Script Language Explanations


Language Explanations explain components of Denizen in a more direct and technical way than The Beginner's Guide.


Showing 1 out of 56 language explanations...
NameGUI Script Containers
DescriptionGUI script containers represent a UI element (such as a button, scroll panel, etc.).
They contain a Language:GUI Element, and can be opened using Command:Gui.


# An example of a basic GUI script container, with a plain panel as its element.
my_gui:
    type: gui
    ui_type: plain_panel
    width: 200
    height: 200
    content: <GUI Element>
GroupScript Container System
Sourcehttps://github.com/DenizenScript/Clientizen/blob/master/src/main/java/com/denizenscript/clientizen/scripts/containers/gui/GuiScriptContainer.java#L39