Advertisement
Guest User

Untitled

a guest
Apr 18th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. string parcel;
  2. vector pos;
  3. default
  4. {
  5.     state_entry()
  6.     {
  7.        list parc=llGetParcelDetails(llGetPos(), [PARCEL_DETAILS_NAME ] );
  8.        pos=llGetPos();
  9.        parcel=llList2String(parc,0);
  10.        llSetTimerEvent(1);
  11.     }
  12.  
  13.     touch_start(integer total_number)
  14.     {
  15.         llSay(0, (string)parcel);
  16.     }
  17.     timer()
  18.     {
  19.         list parc=llGetParcelDetails(llGetPos(), [PARCEL_DETAILS_NAME ] );
  20.          string parcel2=llList2String(parc,0);
  21.          
  22.         if (parcel2!=parcel)
  23.         {
  24.             llSetRegionPos (pos);
  25.              llSay(0, (string)parcel+"   "+(string)parcel2);
  26.         }
  27.     }
  28.            
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement