๐Ÿ–ฅ๏ธgui

Usage:

gui.{func_or_field}

Usage: gui.{func_or_field}

This table exposes the GUI system of the software.

circle-info

All types and enums described in the child sections must be prefixed with gui..

ctx๏ปฟ

Field

Type: Context

GUI context.


notify๏ปฟ

Field

Type: NotificationSystem

Notification system.


input๏ปฟ

Field

Type: ContextInput

Input context.


MakeControl

Function

Wraps a control into a layout consisting of a label and that specific control. You should add this new control to groupboxes if you want your control to be displayed nicely. Additionally, you can add any extra controls to the returned one - those will get stacked to the left side of your initial control.

Arguments

Name

Type

Description

text

string

Label value.

c

Control object.

Returns

Type

Description

Layout object.

Example


MakeControlEasy

Function

A quick wrapper for MakeControl , returns both the menu element and control.

circle-info

Available types are:

Arguments

Name

Type

Description

id

string

ID.

label

string

Label value.

type

string

The type of this control

...

any...

Extra constructor arguments

Returns

Type

Description

any

Menu element (checkbox, slider etc.)

Control

Example


MakeStackedGroups

Function

Creates a vertical stack with two or more group boxes.

Arguments

Name

Type

Description

id

ControlID|string

ID

size

Size

groups

table<Group>

List of group boxes

Returns

Type

Description

Group stack object.

Example


IsVisible

Function

Returns whether or not the menu is currently open.

Returns

Type

Description

boolean

If menu is visible or not

Example


GetActiveOverridePath

Function

Returns the current ragebot/legitbot weapon or category path.

circle-exclamation

Arguments

None.

Returns

Type
Description

string

The path currently being used by the ragebot or legitbot

Example


GetMainWindow

Function

Returns the menu's main window.

Arguments

None.

Returns

Type
Description

The window object.

Example


GetHotkeyList

Function

Returns list of all controls with hotkeys currently added.

Arguments

None.

Returns

Type
Description

table<Control>

All controls currently with keybinds set

Example


GetThemeColors

Function

Returns list of all colors being used the GUI theme.

circle-info

Available keys are

Arguments

None.

Returns

Type
Description

table<Color>

All menu colors

Example

Last updated