Teleport to Sim
string teleport_message = "Sie teleportieren nun zur Sim M34";
string destination_name = "Sim M34 von OpenSIM";
vector destination_landing_point = <170,156,23>;
vector landing_point_facing = <150,120,34>;
default
{
state_entry()
{
llSay(0, "Script running");
llSetText("Teleport zu\n" + destination_name, <1,1,1>, 1);
llSetTextureAnim(ANIM_ON | SMOOTH | ROTATE | LOOP, ALL_SIDES, 0, 0, 1.0, 1000, 0.07);
}
touch_start(integer number)
{ llRegionSay(-1, "occulus," + llDetectedKey(0) + "," + destination_name);
llMapDestination("DOMAIN:9090", destination_landing_point, landing_point_facing);
}
}