COMO jogar DAYZ offline COM MODS? - GUIA RÁPIDO 2024
Kamp
0:00 / 0:00
COMO jogar DAYZ offline COM MODS? - GUIA RÁPIDO 2024
5 308 просмотров · 2 года назад
Kamp
2,15 тыс. подписчиков
5 308 просмотров · 2 года назад
Aprenda neste guia rápido como jogar DayZ no modo single player usando mods em 2024! Vamos te mostrar o passo a passo para configurar seu jogo, instalar os melhores mods e aproveitar DayZ como nunca. Quer jogar sozinho, com zumbis mais desafiadores, armas personalizadas ou com aquele toque de realismo? Tudo isso e muito mais será coberto neste tutorial. Prepare-se para uma experiência incrível no mundo pós-apocalíptico de DayZ! Não se esqueça de deixar seu like, se inscrever no canal e ativar o sininho para mais conteúdos de DayZ. #DayZ #Mods #SinglePlayer #GuiaDayZ
⚠️COLOQUE EM OPÇÕES DE INICIALIZAÇÃO, NA STEAM:↙️↙️
(Ensinei nesse vídeo: • COMO jogar DAYZ OFFLINE em 2026 - MUITO FÁ... )
-config=serverDZ.cfg
⚠️Crie um arquivo .bat e cole esses comandos: ↙️↙️
@echo off
:start
::Server name (This is just for the bat file)
set serverName= Kamp
::Server files location
set serverLocation="COLOQUE O CAMINHO AQUI,ENTRE ESSAS ASPAS"
::Server Port
set serverPort=2302
::Server config
set serverConfig=serverDZ.cfg
::Logical CPU cores to use
set serverCPU=2
::Sets title for terminal
title %serverName% batch
::DayZServer location
cd "%serverLocation%"
echo (%time%) %serverName% started.
::Launch parameters (edit end: -config=|-port=|-profiles=|-doLogs|-adminLog|-netLog|-freezeCheck|-filePatching|-BEpath=|-cpuCount=)
start "DayZ Server" /min "DayZServer_x64.exe" -config=%serverConfig% -port=%serverPort% "-profiles=config" "-mod=%Mods_go_here%@CF;@VPPAdminTools" -cpuCount=%serverCPU% -dologs -adminlog -netlog -freezecheck
::Time in seconds before kill server process (14400 = 4 hours)
timeout 14390
taskkill /im DayZServer_x64.exe /F
::Time in seconds to wait before..
timeout 10
::Go back to the top and repeat the whole cycle again
goto start