From 9a9177ca07cce2721a6db88738c74a29c10362de Mon Sep 17 00:00:00 2001 From: onefang Date: Mon, 1 Jul 2019 11:59:23 +1000 Subject: Oops, wrong version of the leash holder script. --- onefang's leash holder and 1ring support.lsl | 94 ++++++++++++++++++++++++++++ onefang's leash holder.lsl | 44 ------------- 2 files changed, 94 insertions(+), 44 deletions(-) create mode 100644 onefang's leash holder and 1ring support.lsl delete mode 100644 onefang's leash holder.lsl diff --git a/onefang's leash holder and 1ring support.lsl b/onefang's leash holder and 1ring support.lsl new file mode 100644 index 0000000..e9a11e0 --- /dev/null +++ b/onefang's leash holder and 1ring support.lsl @@ -0,0 +1,94 @@ + +integer mychannel = -8888; +integer particle_chan = -270510; +string listenfor; +string response; +string detach; + +key masterid; +key handle; +key them = NULL_KEY; +string URL = ""; +key RequestID; + +default +{ + state_entry() + { + masterid = llGetOwner(); + handle = llGetKey(); + listenfor = (string)masterid + "handle"; + response = (string)masterid + "handle ok"; + detach = (string)masterid + "handle detached"; + llListen(mychannel, "", NULL_KEY, listenfor); + llSay(mychannel, response); + } + + attach(key id) + { + if (NULL_KEY == id) + llSay(mychannel, detach); + } + + listen(integer channel, string name, key id, string message) + { + llSay(mychannel, response); + llSay(particle_chan, handle + "#" + masterid); + if (NULL_KEY == them) + them = llGetOwnerKey(id); + } + + dataserver(key id, string data) + { + list input = llParseStringKeepNulls(data, ["|"], []); + string domain = llList2String(input, 0); + if ("URL" == domain) + URL = llList2String(input, 1); + } + + http_response(key id, integer status, list metaData, string body) + { + if (id == RequestID) + { + RequestID = NULL_KEY; + if (status != 200) + llOwnerSay("HTTP error code " + status + "\n" + body); + } + else if (id == NULL_KEY) + llOwnerSay("Too many HTTP requests too fast!"); + } + + on_rez(integer param) + { + llResetScript(); + } + + touch_start(integer total_number) + { + llSay(particle_chan, handle + "#" + masterid); + } + + changed(integer change) + { + if ("" != URL) + { + if (change & CHANGED_REGION) + { + RequestID = llHTTPRequest(URL, + [HTTP_METHOD, "POST", HTTP_VERBOSE_THROTTLE, FALSE, HTTP_BODY_MAXLENGTH, 16384], + llEscapeURL("REGION|" + llGetRegionName() + "|" + (string)llGetPos())); + llOwnerSay("Changed region to " + llGetRegionName() + " - " + (string)llGetPos() + + "\n Requesting that " + osKey2Name(them) + " join me."); + } + else if (change & CHANGED_TELEPORT) + { + llSleep(1.0); + RequestID = llHTTPRequest(URL, + [HTTP_METHOD, "POST", HTTP_VERBOSE_THROTTLE, FALSE, HTTP_BODY_MAXLENGTH, 16384], + llEscapeURL("TELEPORT|" + llGetRegionName() + "|" + (string)llGetPos())); + llOwnerSay("Teleported to " + llGetRegionName() + " - " + (string)llGetPos() + + "\n Requesting that " + osKey2Name(them) + " join me."); + } + } + } +} diff --git a/onefang's leash holder.lsl b/onefang's leash holder.lsl deleted file mode 100644 index 6d7b360..0000000 --- a/onefang's leash holder.lsl +++ /dev/null @@ -1,44 +0,0 @@ -integer mychannel = -8888; -integer particle_chan = -270510; -string listenfor; -string response; -string detach; - -key masterid; -key handle; - -default -{ - state_entry() - { - masterid = llGetOwner(); - handle = llGetKey(); - listenfor = (string)masterid + "handle"; - response = (string)masterid + "handle ok"; - detach = (string)masterid + "handle detached"; - llListen(mychannel, "", NULL_KEY, listenfor); - llSay(mychannel, response); - } - - attach(key id) - { - if (NULL_KEY == id) - llSay(mychannel, detach); - } - - listen(integer channel, string name, key id, string message) - { - llSay(mychannel, response); - llSay(particle_chan, handle + "#" + masterid); - } - - on_rez(integer param) - { - llResetScript(); - } - - touch_start(integer total_number) - { - llSay(particle_chan, handle + "#" + masterid); - } -} -- cgit v1.1