normalized perms on all files, to avoid relying on any stored executable bits in...
[feisty_meow.git] / huffware / huffotronic_scripts / simple_map_tp_v0.3.txt
1 
2 // huffware script: simple map tp, by fred huffhines.
3 //
4 // an inglorious little script for jumping somewhere else.
5
6 string region = "hippocampus";
7
8 default {
9     state_entry() { if (llSubStringIndex(llGetObjectName(), "huffotronic") < 0) state real_default; }
10     on_rez(integer parm) { state rerun; }
11 }
12 state rerun { state_entry() { state default; } }
13
14 state real_default
15 {
16     state_entry()
17     {
18     }
19     
20     touch_start(integer count)
21     {
22         llWhisper(0, "Showing map of " + region + " for teleport...");
23         llMapDestination(region, <130, 130, 24>, ZERO_VECTOR);
24     }
25 }
26