Skip to main content

Commands

Most nexGui commands are exposed through the ng alias.

Standard commands

CommandDescription
ng loadStart nexGui and initialize tabs.
ng startUpSame as ng load.
ng layout <id>Apply a layout preset (kDesktop, mobile, desktop).
ng whois <name>Open the player detail dialog for a name.
ng call <alias>Call another nexGui alias.

Useful console helpers

// Open the infinite buffer modal
nexGui.virtual.openModal();

// Add a timer
nexGui.timers.add("shrug", "Shrug Cooldown", 30);

// Start a timer
nexGui.timers.start("shrug");