X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=huffware%2Fhuffotronic_tools_n_testers_v6.1%2Ftouchy_feely_doro_v0.4.lsl;fp=huffware%2Fhuffotronic_tools_n_testers_v6.1%2Ftouchy_feely_doro_v0.4.lsl;h=7aeaed86990f6b94f69accbd1fb9a797d8453306;hb=f2be7577716da4384c07946069b3b353ca15403a;hp=0000000000000000000000000000000000000000;hpb=620a99face4f2cefadeed9ce69b4fd4f8d6e2b56;p=feisty_meow.git diff --git a/huffware/huffotronic_tools_n_testers_v6.1/touchy_feely_doro_v0.4.lsl b/huffware/huffotronic_tools_n_testers_v6.1/touchy_feely_doro_v0.4.lsl new file mode 100755 index 00000000..7aeaed86 --- /dev/null +++ b/huffware/huffotronic_tools_n_testers_v6.1/touchy_feely_doro_v0.4.lsl @@ -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"); + } +}