A zip recipient can dork around offline -- no -net argument means the game self-launches a solo mission (all maps ship in content/). Solo gets its own exit message (btl4.log pointer, no server language). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
12 lines
373 B
Batchfile
12 lines
373 B
Batchfile
@echo off
|
|
rem BT411 -- single-player practice mission (no network,
|
|
rem no operator needed). Edit the -egg name below to try
|
|
rem other maps (ARENA1/ARENA2/DBASE/FOGDAY/...).
|
|
set BT_START_INSIDE=1
|
|
cd /d %~dp0content
|
|
..\build\Release\btl4.exe -egg ARENA1.EGG
|
|
echo.
|
|
echo The game has exited. If it closed unexpectedly,
|
|
echo send the operator the file content\btl4.log.
|
|
pause
|