changed names, some may not be right.
[feisty_meow.git] / huffware / huffotronic_updater_freebie_v5.3 / take_touches_v0.2.lsl
diff --git a/huffware/huffotronic_updater_freebie_v5.3/take_touches_v0.2.lsl b/huffware/huffotronic_updater_freebie_v5.3/take_touches_v0.2.lsl
new file mode 100755 (executable)
index 0000000..62af88d
--- /dev/null
@@ -0,0 +1,19 @@
+
+// huffware script: take touches, by fred huffhines.
+//
+// eats any touches from an avatar so that other prims do not know they happened.
+//
+// this script is licensed by the GPL v3 which is documented at: http://www.gnu.org/licenses/gpl.html
+// do not use it in objects without fully realizing you are implicitly accepting that license.
+//
+
+default
+{
+    state_entry() { }
+
+    touch_start(integer total_number)
+    {
+        // do nothing.
+    }
+}
+