Takaro module library

Takaro Modules

Takaro is a game server management platform for running, automating, and moderating multiplayer communities. These modules install into Takaro to add server automation, Discord workflows, economy systems, and moderation tools.

lobbyandback

by Limon
Add lobby and one-time back teleport commands for game server players. lobbyandback lets admins define a lobby location while giving players a controlled way to return to where they came from.
Use this module to:
  • Let players run /lobby to move to a configured lobby point.
  • Save the previous location before lobby teleporting.
  • Let players use /back once after teleporting to the lobby.
  • Manage lobby and back access with Takaro permissions.
Good fit for hubs, event servers, community spawn areas, and servers that want simple player teleport commands without broad admin access.
communityTakaro 0.4.17

Components Overview

1
config
2
commands
0
hooks
0
Cron Jobs
0
functions
2
permissions

Command Update: lobby

April 4, 2026
New configuration options: lobbyX, lobbyY, lobbyZ. Updated 1 command implementation.

New Module: lobbyandback

NEW
January 23, 2026
Updated to version latest. Added 2 commands: lobby, back. New permissions: BACK_TELEPORT_USE, LOBBY_TELEPORT_USE.

Configuration

Configure this module using the schemas below. The JSON schema defines the data structure, while the UI schema customizes how the configuration form is displayed.

Configuration Schema

Configuration Properties (3)

lobbyX*number
Lobby X

X coordinate for the lobby teleport location.

Default: 810
lobbyY*number
Lobby Y

Y coordinate for the lobby teleport location.

Default: 28
lobbyZ*number
Lobby Z

Z coordinate for the lobby teleport location.

Default: 626

UI Schema

No UI schema defined. Configuration form will use default rendering.

About Configuration Schemas

The Configuration Schema defines the structure and validation rules for module settings. The UI Schema customizes how the configuration form is displayed in the Takaro interface, including field ordering, labels, and input types.

Commands (2)

These commands can be executed by players in-game. Each command has a trigger word, optional arguments, and executes JavaScript code on the server.

back

/backTrigger Command

Description

Teleports you back once to your last saved spot. After use, the saved spot is deleted.

Function Implementation

back Function

JAVASCRIPT

Usage Example

Player types: /back

lobby

/lobbyTrigger Command

Description

Teleports you to user config location and saves your current spot for a single-use /back.

Function Implementation

lobby Function

JAVASCRIPT

Usage Example

Player types: /lobby

About Module Commands

Commands allow players to interact with your module through chat. Each command has a trigger word that players type (prefixed with /), optional arguments for parameters, and a JavaScript function that executes when the command is used. Arguments are automatically validated and passed to the function.

Permissions (2)

These permissions control who can access different features of this module. Administrators can assign these permissions to roles, allowing fine-grained access control.

General Permissions

2 permissions

BACK_TELEPORT_USE

BACK_TELEPORT_USEPermission Key
Description

BACK_TELEPORT_USE

Permission Details
Full Key:BACK_TELEPORT_USE
Can Have Count:No
Category:General

LOBBY_TELEPORT_USE

LOBBY_TELEPORT_USEPermission Key
Description

LOBBY_TELEPORT_USE

Permission Details
Full Key:LOBBY_TELEPORT_USE
Can Have Count:No
Category:General

About Module Permissions

Permissions control access to module features and functionality. Each permission has a unique key for identification, a friendly name for display, and a description explaining what it allows. Some permissions are countable, meaning they can have numeric values or limits assigned. Administrators assign these permissions to user roles to control who can use different module features.