X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=huffware%2Fhuffotronic_tools_n_testers_v6.5%2Fuuid_shower_mat_v0.3.txt;fp=huffware%2Fhuffotronic_tools_n_testers_v6.5%2Fuuid_shower_mat_v0.3.txt;h=0000000000000000000000000000000000000000;hb=0d8edb6dc63fa915c775b005830084935f75174c;hp=d9479ad9e8e947a9a4d22791383bc5c139e877fe;hpb=29190d88923f6281801872a80811faf6c2d7943e;p=feisty_meow.git diff --git a/huffware/huffotronic_tools_n_testers_v6.5/uuid_shower_mat_v0.3.txt b/huffware/huffotronic_tools_n_testers_v6.5/uuid_shower_mat_v0.3.txt deleted file mode 100755 index d9479ad9..00000000 --- a/huffware/huffotronic_tools_n_testers_v6.5/uuid_shower_mat_v0.3.txt +++ /dev/null @@ -1,24 +0,0 @@ - -// huffware script: uuid shower, by fred huffhines -// -// a simple script that shows an avatar their universally unique ID. -// -// 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() { if (llSubStringIndex(llGetObjectName(), "huffotronic") < 0) state real_default; } - on_rez(integer parm) { state rerun; } -} -state rerun { state_entry() { state default; } } - -state real_default -{ - state_entry() {} - - touch_start(integer total_number) - { - llSay(0, "Hello " + llDetectedName(0) + ", your UUID is " + (string)llDetectedKey(0)); - } -}