DayZ
Fast Travel
519 Comments
jf3000 30 May @ 8:29am 
Abandoned - Dont Touch
m1a1battletanker 22 May @ 9:37am 
guessing this doesnt work anymore or for chiemsee?
Lord Bjorn 27 Mar @ 5:29pm 
getting this error, do I need to create an override to fix it or it this a normal error?
Error: dc_fasttravelticketgolden max quantity/stack is zero! Faulty config.cpp
[UK1]Richard 12 Feb @ 8:45am 
followed the guide added code into init.c file but no config gets made in server profile folder at all for some reason.
Kilroy5150 29 Jan @ 10:46pm 
Could we get a complete documentation of this mod, please? I don't even know to what file the chenerusplus example does, what files the mod produces, the directories....anything like that. Or is there a Github source with complete instructions? Please provide if so.
Iugulator 17 Nov, 2024 @ 3:57pm 
@troopakoopa240 add this line to your serverDZ.cfg

steamProtocolMaxDataSize = 4000;
troopakoopa240 14 Nov, 2024 @ 9:05am 
Good Day,

I wanted to reach out to discuss the possibility of providing a donation for repack of your
MOD.

Since the release of DayZ 1.26, the Steam launcher has developed a bug that limits MODs to a maximum of 40. Servers that exceed this limit appear online but display as having no MODs, preventing players from joining unless they use DZSA.

This limitation has become quite an inconvenience for both players and server owners within the DayZ community. My community and I greatly appreciate your MOD, and we’d like to continue using. However, due to the current constraints with Bohemia’s launcher, I may need to temporarily adjust our MOD list if we can’t integrate a repack.

If it would be helpful, I am more than willing to contribute a donation to support the ongoing development of your MOD or any other future improvements you may have in mind. Should Bohemia resolve the issue with their launcher, I’ll gladly revert to the original MOD list setup.
WhoBeDat420 19 Sep, 2024 @ 4:18pm 
Would it be possible to add a menu to select where to teleport... for example like the spawn selection screen on expansion or other spawn selection mods (to be able to walk up to the map and just open a UI to all teleports available)
LG 18 Sep, 2024 @ 8:34pm 
Does anyone have the fast travel of Banov? I've been trying to do it for several days but I can't. The map of Banov doesn't appear in the fast travel.
AestheticDrug 28 Aug, 2024 @ 11:00am 
Deadcraft.Hi! Can I use the mod to study the code? exclusively for a personal server, no repacking is planned
ChadRat 20 Aug, 2024 @ 5:53am 
i am having such a hard time even configuring it to just teleport me somewhere
Lord Farqhuad 20 Jul, 2024 @ 9:07pm 
for some reason, my config file does not generate? Please help. Everything loaded as it should for the mod to pick-up
[OWCSY] Return(0); 12 Jul, 2024 @ 3:24pm 
could this be configured for multimap?
Isaac is a Nerd 27 Jun, 2024 @ 4:56pm 
am I missing something, its asking for a fast travel ticket?
How do I get one?
not seeing the types.xml for this
MALYAR 2 Jun, 2024 @ 8:24am 
@Deadcraft Regarding the group teleport, do you by any chance make private mods and how much it could cost? for some reason everyone refuses this job
FA-TAL-E 23 May, 2024 @ 11:56am 
I can't get this to work. I can spawn the board, but can't put pins on it or notification to fast travel when standing near it.
Deadcraft  [author] 8 May, 2024 @ 3:58am 
@MALYAR So when one player teleports everyone in the group gets teleported as well? Yeah, that should be doable. A simple version could loop over every member in the group that the teleporting player is in and teleport them one by one. It gets a bit more complex once you go into detail though. Does only one player pay the travel cost? What happens if there isn't enough room to teleport everyone in the group? Should there be some confirmation popup? What if some players are performing some action or are in some menu? Still doable, just gotta make sure you cover most cases.
MALYAR 8 May, 2024 @ 1:29am 
Hello, Deadcraft. Got one more question, how do you think, is it possible to add ability to hook up group members with teleporting player if im using some party mod like expansion groups? It would be great feature.
Deadcraft  [author] 5 Apr, 2024 @ 1:08am 
@WoaGamer I don't really do commissions and I'm rather busy at the moment with my work. Getting the values is mostly just testing different ones until they are good enough. Like I said, it is kind of a pain to figure them out unless you have information about the texture and board model itself. One way of getting them is spawning markers every kilometer and then adjusting the multipliers over and over until they roughly line up with the actual world positions.

The board would work even without that though, so you could just adjust the pin positions to roughly match their locations and not bother with the multipliers.
WoaGamer 3 Apr, 2024 @ 2:22pm 
Thanks for the quick response, but unfortunately I still don't understand how to get these coordinates lol, Is there any way you can do this on commission?
Deadcraft  [author] 2 Apr, 2024 @ 10:02pm 
Figuring out the values for all three variables is kind of a pain. "m_LocalMapSWCorner" are the coordinates in the space of the board model where "0 0 0" would be on the map, in most cases the southwest corner. "m_LocalMapXMultiplier" and "m_LocalMapYMultiplier" are multipliers in board model space for 1km along the x and y axis respectively.

Replacing the map texture should be more or less straightforward. I haven't ever done it myself, but there is the Valning tourist map mod for example, which should help you figure it out.
Deadcraft  [author] 2 Apr, 2024 @ 10:02pm 
@Slasher @WoaGamer You would need to add a new board or override an existing one. If you only run servers on a single map, the easiest for that would be the default Chernarus one. So first create a new mod with a dependency on the Fast Travel mod, then override the FastTravelBoard class and adjust the three variables that WoaGamer posted in the constructor, and finally replace the texture for the hiking board model with one of the map you are running

The code for overriding the existing board is essentially just:

modded class DC_FastTravelBoard : BuildingSuper
{
void DC_FastTravelBoard()
{
m_LocalMapSWCorner = "-0.037 -0.72751 0.94527";
m_LocalMapXMultiplier = -0.10209375;
m_LocalMapYMultiplier = 0.10073642857;
}
}
WoaGamer 2 Apr, 2024 @ 9:24pm 
How I get this information to Banov?

m_LocalMapSWCorner = "-0.037 -0.720 0.945";
m_LocalMapXMultiplier = -0.12790;
m_LocalMapYMultiplier = 0.11900;
Slasher 1 Apr, 2024 @ 4:43pm 
how would one change the map on the board to a map that is not already supported?
Deadcraft  [author] 29 Mar, 2024 @ 1:22am 
@pcbandit Yes, there is. Just spawn the board like you would normally with the Chernarus one, but add 1 as a parameter at the end, e.g. "DC_FastTravel.SpawnBoard(1, "0 0 0", "0 0 0", 1 );"
pcbandit 28 Mar, 2024 @ 8:31pm 
Hi there, do you have a fast travel mod for Livonia?
Deadcraft  [author] 26 Mar, 2024 @ 2:38pm 
@MALYAR Yeah, that is possible, although not without extending the mod. The teleporting is just an action attached to the pins, so you could create an object with the board model and attach that action to it
MALYAR 24 Mar, 2024 @ 9:01pm 
Hello. Is it possible to set teleport button for whole board, not just green marker? Its often confusing new people as they cant figure out what they should press at
Deadcraft  [author] 17 Mar, 2024 @ 12:51pm 
@ShenSanSui You have to spawn the boards separately. Check out the "Spawning the Fast Travel Boards" section on the github page for more information on it
ShenSanSui 17 Mar, 2024 @ 11:24am 
Hello, author, I encountered a problem. I set the coordinates in the configuration file, but the fast travel sign was not generated.
αℓρ 27 Feb, 2024 @ 7:30am 
He is a great person, we really need people like this as a society. Thank you again for your help.
aschmim 2 Feb, 2024 @ 2:46pm 
For anyone else having an issue with the config file not being created, I fixed mine by deleting my LAN server and rebuilding it from scratch - not a perfect solution but it worked for me.
!Gypsy! 21 Jan, 2024 @ 11:35am 
Any types files so we can have the tickets sold in shops ?
Eggs 8 Jan, 2024 @ 4:31pm 
did yall find config file mine was in sc file after 64 logs? can we have more then two TP locations? maybe four...
ІиҜιsιδσя 30 Dec, 2023 @ 6:57pm 
Hey, would it be possible to use it in multimap environment? Meaning, with the deerisle addon and a certain addon to takistan, would it be possible to create a DC_FastTravelX variable to be able to call different boards with the same mod??? Thanks!! would be awesome because I really love this mod.
Demonware32 17 Dec, 2023 @ 1:03pm 
I am having the same issue where it is not creating the config file. Has someone figured this out yet?
Bubz 7 Dec, 2023 @ 6:09pm 
@Deadcraft

this is my code

" {
"m_LocationID": 1,
"m_RequiredTokenClassName": "DC_FastTravelTicket",
"m_RequiredTokenQuantity": 1
},
{
"m_LocationID": 3,
"m_RequiredTokenClassName": "DC_FastTravelTicket",
"m_RequiredTokenQuantity": 1
},
{
"m_LocationID": 1,
"m_RequiredTokenClassName": "DC_FastTravelTicketGolden",
"m_RequiredTokenQuantity": 0
},
{
"m_LocationID": 3,
"m_RequiredTokenClassName": "DC_FastTravelTicketGolden",
"m_RequiredTokenQuantity": 0
}
"
does not seem to work tho?
Deadcraft  [author] 6 Dec, 2023 @ 1:42am 
@Bubz You have to set the class name of whatever ticket/item you want to use in the visitable locations sections in the config
Bubz 5 Dec, 2023 @ 4:30pm 
How do you have both golden ticket and normal tickets work with fast travel
Deadcraft  [author] 16 Nov, 2023 @ 12:54am 
@Promiiss My best guess would be that either the mod is not actually getting loaded or something prevents the config from getting generated in that folder. Can you actually spawn the boards in game?
Promiiss 16 Nov, 2023 @ 12:26am 
hello, my server does not make a config file, how to fix this. its on the server mod list
_-SerB-_ 13 Nov, 2023 @ 2:57am 
Доброго времени суток ! Создаю свой сервер, могу ли я использовать твой мод ?
Deadcraft  [author] 7 Nov, 2023 @ 8:40am 
@Types.xml No, there is currently no discord
Types.xml 7 Nov, 2023 @ 8:22am 
Hi, Is there a Discord and make a ticket where you can contact someone who takes care of the mod?
Deadcraft  [author] 23 Oct, 2023 @ 11:55pm 
@Patrick The pins just have an action attached to them, so you should be able to reuse that action on any object as long as you pass in the correct travel data

@PabloEscoBar Deer Isle isn't included by default but there is a mod that adds it: https://steamhost.cn/steamcommunity_com/sharedfiles/filedetails/?id=2922347814
Just load it on top of this one and it should replace the chernaus board
PabloEscoBar 23 Oct, 2023 @ 12:02pm 
what ID do we need to use for deerisle map ?
Syarho 22 Oct, 2023 @ 6:06am 
It's way to make just pin noddle without board?
DZR|Mikhail 5 Oct, 2023 @ 9:57pm 
Hi, Deadcraft! Thank you for the great mod. I've added whitelist to your mod: DZR_Fast_Travel_Whitelist (not a repack, just modded over your config and teleport function)
Vlady 1 Oct, 2023 @ 1:49pm 
Yup
Deadcraft  [author] 1 Oct, 2023 @ 11:45am 
@Vlady Sure, as long as you follow Bohemia's guidelines