moved to single script repository folder for the actual scripts. updated readme.
[feisty_meow.git] / huffware / huffotronic_scripts / touchy_feely_doro_v0.4.txt
diff --git a/huffware/huffotronic_scripts/touchy_feely_doro_v0.4.txt b/huffware/huffotronic_scripts/touchy_feely_doro_v0.4.txt
new file mode 100755 (executable)
index 0000000..7aeaed8
--- /dev/null
@@ -0,0 +1,19 @@
+
+// 
+// used to control the door into the inner chamber of the old garleon
+// land, where we had a basement with a crypt door.  this was in the rocks
+// near the door.  it actually will work with any tl linked door script set
+// to our 108 channel, but it currently shouts, which will fling all the nearby
+// doors open.
+
+default
+{
+    state_entry()
+    {
+    }
+
+    touch_start(integer total_number)
+    {
+        if (llSameGroup(llDetectedKey(0))) llShout(108, "toggle");
+    }
+}