You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
373 B
12 lines
373 B
1 month ago
|
echo "copy room to server begin ..."
|
||
|
set share_path=%~dp0
|
||
|
IF EXIST ..\arpg_svr_proj\cfg\sog\map (
|
||
|
cd ../arpg_svr_proj/cfg/sog/map
|
||
|
del /q *.*
|
||
|
cd %share_path%
|
||
|
copy "..\pandora_cli_proj\pandora\Assets\RawResources\HexMapConfig\*.map" "..\arpg_svr_proj\cfg\sog\map\*.room"
|
||
|
cd ..\arpg_svr_proj\cfg\sog\map
|
||
|
rename *.map *.room)
|
||
|
echo "copy room to server end ! BYE"
|
||
|
pause
|