(Test these scripts before deploy. Other open sims have reported a possible glitch that may cause the receiving Avatar's client to be closed. I have not seen that in OL.)
A LM giver is handy to move Avatars around your region or distant locations.
I find in many instances it can replace a teleporter.
Just place this script and the associated Landmark in a prim.
is a touch and go style.
//-------------------------------------------------------------------
//LM giver
default
{
touch_start(integer total_number)
{
// change within " " for LM detail
llGiveInventory(llDetectedKey(0), "Orlay, Si parcel, Orlay (54, 88, 22)");
}
}
//-------------------------------------------------------------------END
or
//--------------------------------------------------------------------
default
{
touch_start(integer total_number) {
// This will pick out the first LM and give it.
llGiveInventory(llDetectedKey(0),llGetInventoryName(INVENTORY_LANDMARK,0));
}
}
//-------------------------------------------------------------------END