Difference between revisions of "User:Talia Tokugawa/scripts/MapUrlExample"

From Second Life Wiki
Jump to navigation Jump to search
(New page: Just a quick example for a Map Url Teleport system. Will take the first landmark it finds in inventory and display the location on the map for that landmark. I added in a few things to res...)
 
Line 47: Line 47:
     }
     }
}
}
</lsl>
</lsl>

Revision as of 14:30, 23 August 2023

Just a quick example for a Map Url Teleport system. Will take the first landmark it finds in inventory and display the location on the map for that landmark. I added in a few things to reset the script if things get changed. <lsl> key request; string name; string sim_name; vector pos; integer current=0; default {

   state_entry()
   {
       if(llGetInventoryNumber(INVENTORY_LANDMARK))
       {
           current = 0;
           request = llRequestInventoryData(name = llGetInventoryName(INVENTORY_LANDMARK,0));
       }
   }
   dataserver(key id, string data)
   {
       if(id == request)
       {
           pos = (vector)data;
           sim_name = llGetRegionName();
       }
   }
   
   touch_start(integer a)
   {
           if(name != "") llMapDestination(sim_name, pos, pos);
   }
   
   changed(integer a)
   {
       if(a & (CHANGED_INVENTORY | CHANGED_ALLOWED_DROP))
       {
           if(llGetInventoryNumber(INVENTORY_LANDMARK))
           {
               current = 0;
               request = llRequestInventoryData(name = llGetInventoryName(INVENTORY_LANDMARK,0));
           }
       }
   }
   
   on_rez(integer p)
   {
       llResetScript();
   }

}

</lsl>