This repository contains sound files for the GUI application for Robocode Tank Royale.
The sounds/ directory must be placed next to the robocode-tankroyale-gui-x.y.z.jar file:
[your tank royale directory]
├── robocode-tankroyale-gui-x.y.z.jar
└── sounds/
├── bots_collision.wav
├── bullet_hit.wav
├── bullets_collision.wav
├── death.wav
├── gunshot.wav
└── wall_collision.wav
Run the PowerShell install script and enter your Tank Royale directory when prompted:
.\install.ps1Make the script executable, then run it and enter your Tank Royale directory when prompted:
chmod +x install.sh
./install.shCopy the contents of the sounds/ folder into <target>/sounds:
# macOS / Linux
mkdir -p /path/to/tank-royale/sounds
cp -r sounds/. /path/to/tank-royale/sounds/# Windows (PowerShell)
New-Item -ItemType Directory -Force C:\path\to\tank-royale\sounds
Copy-Item -Path sounds\* -Destination C:\path\to\tank-royale\sounds -Recurse -Force