Add prim-dns:shutting-down

This commit is contained in:
Anna Puddles
2023-01-17 08:47:21 -05:00
committed by GitHub
parent afa28149d0
commit d20ec19afa

View File

@@ -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.");
}
}
```