X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=huffware%2Fhuffotronic_tools_n_testers%2Fsimple_map_tp_v0.3.txt;fp=huffware%2Fhuffotronic_tools_n_testers%2Fsimple_map_tp_v0.3.txt;h=0000000000000000000000000000000000000000;hb=2ad923922ef5c1e212dd45aa5074f08d54ea9371;hp=5dd99652677d70f0c43835e15fcfe0e864cb36b4;hpb=1809c04b7499a188d1c2a7df3ec588bc8591a2e3;p=feisty_meow.git diff --git a/huffware/huffotronic_tools_n_testers/simple_map_tp_v0.3.txt b/huffware/huffotronic_tools_n_testers/simple_map_tp_v0.3.txt deleted file mode 100755 index 5dd99652..00000000 --- a/huffware/huffotronic_tools_n_testers/simple_map_tp_v0.3.txt +++ /dev/null @@ -1,26 +0,0 @@ - -// huffware script: simple map tp, by fred huffhines. -// -// an inglorious little script for jumping somewhere else. - -string region = "hippocampus"; - -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 count) - { - llWhisper(0, "Showing map of " + region + " for teleport..."); - llMapDestination(region, <130, 130, 24>, ZERO_VECTOR); - } -} -