From e64d33d2179292be0a5805c7a0c2f569986429cd Mon Sep 17 00:00:00 2001 From: rhetorica Date: Fri, 30 Jan 2026 18:48:05 -0800 Subject: [PATCH] new template for help messages --- ARES/application/template.lsl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ARES/application/template.lsl b/ARES/application/template.lsl index 2796ba3..7450531 100644 --- a/ARES/application/template.lsl +++ b/ARES/application/template.lsl @@ -44,7 +44,11 @@ main(integer src, integer n, string m, key outs, key ins, key user) { string msg = ""; string action = gets(argv, 1); if(argc == 1 || action == "help") { - msg = "Syntax: " + PROGRAM_NAME + " "; + msg = PROGRAM_NAME + " version " + CLIENT_VERSION + " (" + CLIENT_VERSION_TAGS + ")" + + "\nUsage: " + PROGRAM_NAME + " []" + + "\nSupported actions:" + + "\n help: this message" + ; } if(msg != "")