
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>
13 lines
291 B
Bash
Executable File
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
|