rathena/tools/ci/npc.sh
SapitoSucio 55d3c1578c
Itemlink command and integration (#7291)
Co-authored-by: Akkarinage <mike.langford@industrial-illusions.net>
Co-authored-by: Aleos <aleos89@users.noreply.github.com>
Co-authored-by: Atemo <Atemo@users.noreply.github.com>
Co-authored-by: cydh<cydh@users.noreply.github.com>
Co-authored-by: Lemongrass3110 <lemongrass@kstp.at>
Co-authored-by: secretdataz<secretdataz@users.noreply.github.com>
2022-11-11 18:04:41 +01:00

13 lines
291 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" \) | sort | xargs -I % echo "npc: %" >> $out
echo "// Test Scripts" >> $out
find npc/test \( -name "*.txt" \) | sort | xargs -I % echo "npc: %" >> $out