p Print Print out string to console This command prints out string to console. Example: p("Hello world"); help Help Print out all available functions to console This command prints out all available functions to console with short description. Example: help(); man Manual Print out information about function This command prints out all information about asked function. Example: man("p"); ptl PrintTextureList Print out list of all textures loaded This command prints out list of textures that is loaded at this time with their ref count. Example: ptl(); pal PrintAnimationList Print out list of all animations loaded This command prints out list of animations that is loaded at this time. Example: pal(); pwl PrintWidgetList Print out list of widgets registered in system This command prints out list of widgets that is available at this time. Example: pwl(); mw MoveWidget Move widget on screen This command immediately moves widgets on screen. First param is widget's name, last two params - distance for X and Y. Example: mw("StartButton", -5, 100.5);