From 07c9e29b8d753896d2714216a6be97433b6d4156 Mon Sep 17 00:00:00 2001 From: zontreck Date: Wed, 14 Aug 2024 00:13:51 -0700 Subject: [PATCH] Fix up server script --- LSL/includes/variables.lsl | 4 +++- LSL/raw/Server.lsl | 12 ++---------- LSL/src/Server [AC].lsl | 4 ++++ 3 files changed, 9 insertions(+), 11 deletions(-) create mode 100644 LSL/src/Server [AC].lsl diff --git a/LSL/includes/variables.lsl b/LSL/includes/variables.lsl index 3ecf49d..58e05fc 100644 --- a/LSL/includes/variables.lsl +++ b/LSL/includes/variables.lsl @@ -95,4 +95,6 @@ integer MASK_CUSTOM_TEXT_COLOR = 2; integer MASK_WHITEFRAME = 4; integer STATE_REBOOT_PENDING =1; -integer STATE_REBOOT_FAST = 2; \ No newline at end of file +integer STATE_REBOOT_FAST = 2; + +string g_sTextureSet; \ No newline at end of file diff --git a/LSL/raw/Server.lsl b/LSL/raw/Server.lsl index f76c3c3..a3b69cb 100755 --- a/LSL/raw/Server.lsl +++ b/LSL/raw/Server.lsl @@ -1,14 +1,6 @@ -#include "Common.lsl" -#include "ZNICommon.lsl" +#include "variables.lsl" +#include "functions.lsl" -integer SERVER_CHANNEL = 0x9F1C; - -list g_lAdminTag; -list g_lManagerTag; - -string g_sTextureSet; -integer g_iFlags; -integer g_iPricePerDay; default { diff --git a/LSL/src/Server [AC].lsl b/LSL/src/Server [AC].lsl new file mode 100644 index 0000000..576ba9d --- /dev/null +++ b/LSL/src/Server [AC].lsl @@ -0,0 +1,4 @@ +#include "../external/CommonLSL/variables.lsl" +#include "../external/CommonLSL/functions.lsl" + +#include "../raw/Server.lsl" \ No newline at end of file