Client
Client exports
IsInsideIPL
This export returns whether the player is inside any (shell creator) IPL
-- Example
exports.kq_shellbuilder:IsInsideIPL()
-- Returns:
-- (boolean)
OpenShellEditor
Allows you to open a shell editor directly, skipping the Shell list page
When using this export you must make sure that the player has sufficient permissions on the server side. Otherwise they may not be able to save the shell.
-- Creating a new shell
exports.kq_shellbuilder:OpenShellEditor()
-- Editing an existing shell based on its ID
exports.kq_shellbuilder:OpenShellEditor(20)
-- Arguments:
-- int: Shell ID - Optional, when nil/undefined the export will trigger creation of a new shell
-- Returns:
-- (void)
Last updated