A simple teleport mod for DayZ that can reliably connect locations such as bunkers placed outside the map — or any other custom area. Originally created for use on a private server, the mod includes optional item-based activation and the ability to consume the item upon use (e.g. keycards).
- Better Fade-in/fade-out transitions
- Sound/Alarm effects during teleportation
- Interactive teleport points attachable to any object
- Item requirements (e.g. crowbar, shovel, keycards)
- Item damage or consumption system
- Temporary teleport activation (time-limited use)
- Sound effects (work in progress – not fully implemented)
{
"TeleportEntries": [
{
"EnableTeleport": 1,
"TeleportName": "Teleport 1",
"ObjectType": "Land_Door_germa_1",
"ObjectCoordinates": [
7758.64013671875,
16.184600830078126,
14116.900390625
],
"ObjectOrientation": [
0.0,
0.0,
0.0
],
"TeleportPosition": [
10.2998046875,
10.765998840332032,
10.27001953125
],
"CheckRadius": 1.0,
"RequiredItem": "Crowbar",
"RequiredItemDamagePercent": 50.0,
"ConsumeRequiredItem": 0,
"TeleportActiveTimeSeconds": 30,
"MissingItemMessage": "You need a Crowbar to open the barn!",
"TeleportCooldownTimeSeconds": 60,
"CooldownMessage": "The barn door is locked tight. You'll need to wait before forcing it open again.",
"PreLoadRadius": 20.0,
"TeleportDelaySeconds": 4,
"IsUndergroundDestination": 1,
"SafeGroundOffset": 1.5,
"EnableBlackScreenEffect": 1,
"BlackScreenDurationSeconds": 18,
"BlackScreenMessage": "Accessing underground facility... Please wait.",
"BlackScreenSoundFile": "",
"EnableTeleportSound": 1,
"TeleportSoundFile": "TeleportMod\\Data\\teleport_sound.ogg",
"TeleportSoundRadius": 50.0,
"TeleportSoundVolume": 1.0
}
]
}| Parameter | Description |
|---|---|
EnableTeleport |
Enables or disables the teleport (1 = true, 0 = false) |
TeleportName |
Name of the teleport for better organization |
ObjectType |
Object type that triggers the teleport |
ObjectCoordinates |
Coordinates of the teleport trigger |
ObjectOrientation |
Orientation (yaw, pitch, roll) of the trigger object |
TeleportPosition |
Destination coordinates of the teleport |
CheckRadius |
Radius within which the teleport can be activated |
RequiredItem |
Item class name needed for activation |
RequiredItemDamagePercent |
Damage applied to the item on use (0.0–100.0) |
ConsumeRequiredItem |
Whether the item is destroyed on use (1 = true, 0 = false) |
TeleportActiveTimeSeconds |
Duration (in seconds) the teleport remains active |
MissingItemMessage |
Message displayed when required item is missing |
TeleportCooldownTimeSeconds |
Time (in seconds) before the teleport can be used again |
CooldownMessage |
Message displayed when teleport is on cooldown |
PreLoadRadius |
Radius in which the destination area is preloaded |
TeleportDelaySeconds |
Delay (in seconds) before teleportation starts after activation |
IsUndergroundDestination |
Marks destination as underground to ensure safe placement |
SafeGroundOffset |
Vertical offset to avoid spawning inside terrain or objects |
EnableBlackScreenEffect |
Enables black screen transition during teleport (1 = true, 0 = false) |
BlackScreenDurationSeconds |
Duration (in seconds) of the black screen effect |
BlackScreenMessage |
Message shown during black screen |
BlackScreenSoundFile |
Path to sound played during black screen effect (empty for none) |
EnableTeleportSound |
Enable teleport sound effects (1 = true, 0 = false) |
TeleportSoundFile |
Path to the sound file |
TeleportSoundRadius |
Range of the teleport sound |
TeleportSoundVolume |
Volume of the teleport sound |
- Place objects in your map that will serve as teleport triggers
- Configure their coordinates and settings in the
config.json - Players can interact with these objects to teleport (if they have the required item)
- Items can be damaged or consumed based on your configuration
Based on the ActionTeleport mod by FreddyCruger and kenik.
This version includes an improved configuration format and extended features.
This mod is 100% free – just like the original ActionTeleport mod:
- ✅ Free to use on any server
- ✅ Free to modify and repack
- ✅ Free to redistribute
- Leaving a like or comment if you find the mod useful
- Supporting the original ActionTeleport mod
- Giving proper credit if you modify or repack the mod
- Added immersive black screen transitions during teleportation
- Added configurable cooldown periods after teleport usage
- Pre-loading mechanism for destination areas
- 15+ new configuration parameters per teleport entry
- Modular file structure with separated client/server logic
- All messages now display in red/orange instead of blue for better visibility
- Fixed memory leaks with proper timer cleanup
- Fixed players spawning underground at surface destinations
- Fixed teleports not working after server restart
- Fixed item consumption happening multiple times
- Fixed cooldown timer not resetting properly
- Fixed messages not displaying on client
- Fixed black screen getting stuck in rare cases