From bcd2662c3792e1061bac2fe200e68c3d63491e26 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rafa=C5=82=20Rzepecki?= Date: Fri, 27 Mar 2009 12:25:35 +0100 Subject: [PATCH] Basic remote control proof of concept. --- remote-button.lsl | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 remote-button.lsl diff --git a/remote-button.lsl b/remote-button.lsl new file mode 100644 index 0000000..e5bf8f4 --- /dev/null +++ b/remote-button.lsl @@ -0,0 +1,9 @@ +integer REMOTE_CHANNEL = -1651998600; + +default +{ + touch_start(integer number) + { + llRegionSay(REMOTE_CHANNEL, llGetObjectName()); + } +} -- 2.11.4.GIT