Files
gtav-src/tools_ng/script/util/get_timestamped_cnc_data.bat
2025-09-29 00:52:08 +02:00

13 lines
426 B
Batchfile
Executable File

@echo off
for /f "tokens=1-3 delims=/ " %%i in ("%date%") do (
set day=%%i
set month=%%j
set year=%%k
)
set datestr=%year%/%month%/%day%:07:30:00
echo.Syncing to date and time %datestr%
p4 sync //gta5_dlc/mpPacks/mpArc1/build/...@%datestr%
p4 sync //gta5_dlc/mpPacks/mpArc1/*.*@%datestr%
p4 sync //gta5_dlc/mpPacks/mpHeist3/build/...@%datestr%
p4 sync //gta5_dlc/mpPacks/mpHeist3/*.*@%datestr%
pause