rathena/tools/ci/npc.sh
Aleos 2931c00bd4
Implemented the Battleground Queue System (#3995)
* Fixes #1310.
* Added a battle config which allows toggling of the Battleground Queue client feature and also toggles between the modes of scripts.
* Added script commands bg_reserve, bg_unbook, and bg_desert.
* Removed old custom Battleground scripts.
Thanks to @Lemongrass3110, @Locien, @secretdataz, @InusualZ, @Normynator, @Atemo, @iubantot, @admkakaroto, and @noobzter003!
2020-02-12 08:26:59 -05:00

13 lines
277 B
Bash
Executable File

#!/usr/bin/env bash
out=npc/scripts_custom.conf
printf "\n" >> $out
echo "// Custom Scripts" >> $out
find npc/custom \( -name "*.txt" \) | xargs -I % echo "npc: %" >> $out
echo "// Test Scripts" >> $out
find npc/test \( -name "*.txt" \) | xargs -I % echo "npc: %" >> $out