X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=huffware%2Fhuffotronic_eepaw_knowledge_v60.9%2Ftake_touches_v0.2.lsl;fp=huffware%2Fhuffotronic_eepaw_knowledge_v60.9%2Ftake_touches_v0.2.lsl;h=62af88d2a89f35456c74aff3e4798543f296b992;hb=dc3a7c140ef0a059f3b405bac0cf22791cac0607;hp=0000000000000000000000000000000000000000;hpb=f2be7577716da4384c07946069b3b353ca15403a;p=feisty_meow.git diff --git a/huffware/huffotronic_eepaw_knowledge_v60.9/take_touches_v0.2.lsl b/huffware/huffotronic_eepaw_knowledge_v60.9/take_touches_v0.2.lsl new file mode 100755 index 00000000..62af88d2 --- /dev/null +++ b/huffware/huffotronic_eepaw_knowledge_v60.9/take_touches_v0.2.lsl @@ -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. + } +} +