
* 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!
13 lines
277 B
Bash
Executable File
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
|