From d20ec19afa8560eacb91d9fecf88d3ba0ff0fb8b Mon Sep 17 00:00:00 2001 From: Anna Puddles <113144806+annapuddles@users.noreply.github.com> Date: Tue, 17 Jan 2023 08:47:21 -0500 Subject: [PATCH] Add prim-dns:shutting-down --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index ccdc123..816e972 100644 --- a/README.md +++ b/README.md @@ -196,3 +196,19 @@ link_message(integer sender, integer num, string str, key id) } } ``` + +## prim-dns:shutting-down () + +Sent when the prim-dns server is shutting down. + +### Example + +```lsl +link_message(integer sender, integer num, string str, key id) +{ + if (llJsonGetValue(str, ["method"]) == "prim-dns:shutting-down") + { + llOwnerSay("The prim-dns server is shutting down."); + } +} +```