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.

dayzCommands

by Mad
for DayZ
Add DayZ player convenience commands for party visits and death-bag recovery through Takaro. This community module shows how DayZ server owners can expose game-specific workflows as chat commands.
Use this module to:
  • Let players use /visit to teleport to a party member.
  • Let players use /bag to return to a recent death location.
  • Demonstrate DayZ command automation with the community-supported integration path.
communityTakaro 0.7.2

Components Overview

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

New Module: dayzCommands

NEW
May 6, 2026
Updated to version latest. Added 4 commands: visit, bag, sethome, home.

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

No configuration properties defined. This module uses default settings.

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 (4)

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

visit

/visitTrigger Command

Description

Teleport to a player in your Expansion party. Usage: /visit

Arguments (1)

target
stringPosition 0
Help: Name (or partial name) of the player to visit. Must be in your Expansion party.
Default: None

Function Implementation

visit Function

JAVASCRIPT

Usage Example

Player types: /visit <target>

bag

/bagTrigger Command

Description

Teleport to your most recent death location to recover your loot.

Function Implementation

bag Function

JAVASCRIPT

Usage Example

Player types: /bag

sethome

/sethomeTrigger Command

Description

Save your current location as your home. Use /home to teleport back.

Function Implementation

sethome Function

JAVASCRIPT

Usage Example

Player types: /sethome

home

/homeTrigger Command

Description

Teleport to your saved home. Use /sethome to set a home first.

Function Implementation

home Function

JAVASCRIPT

Usage Example

Player types: /home

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.