7aeaed86990f6b94f69accbd1fb9a797d8453306
[feisty_meow.git] / huffware / huffotronic_scripts / touchy_feely_doro_v0.4.txt
1 
2 // 
3 // used to control the door into the inner chamber of the old garleon
4 // land, where we had a basement with a crypt door.  this was in the rocks
5 // near the door.  it actually will work with any tl linked door script set
6 // to our 108 channel, but it currently shouts, which will fling all the nearby
7 // doors open.
8
9 default
10 {
11     state_entry()
12     {
13     }
14
15     touch_start(integer total_number)
16     {
17         if (llSameGroup(llDetectedKey(0))) llShout(108, "toggle");
18     }
19 }