Advertisement
Guest User

Untitled

a guest
Apr 20th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. list names;
  2. list uuid;
  3. list count;
  4. integer length;
  5. key     gDataserverID;
  6. integer gListLength;
  7. integer x;
  8. list TempList;
  9. string named;
  10. string slurl="http://maps.secondlife.com/secondlife/Winterfell%20Valley/82/201/500";
  11. key uuider;
  12. default
  13. {
  14.     state_entry()
  15.     {
  16.      TempList = llGetParcelPrimOwners( llGetPos() );
  17.         length= llGetListLength(TempList);    
  18.        
  19.         for ( ; x < length; x += 2)
  20.         {
  21.             count += llList2Integer(TempList, x+1);
  22.             uuid += llList2String(TempList, x);
  23.              if ( llList2Key(TempList, x) !="0ded70aa-516d-4274-bfef-ee1360594854"&&  llList2Key(TempList, x) !="f72eccfc-20eb-446a-a1b2-eb1b21f72f8b")
  24.         {
  25.             if (llList2Integer(TempList,x+1)>25)
  26.             {
  27.                // string name=llKey2Name(llList2Key(TempList,x));
  28.                
  29.               //  llSay(0,(string)llList2String(TempList,x));
  30.                 uuider=llList2Key(TempList,x);
  31.                
  32.                gDataserverID=llRequestAgentData(uuider,DATA_NAME);
  33.              
  34.               // llSay(0,(string)named);
  35.              }
  36.             }
  37.         }
  38.     }
  39.      dataserver(key queryid, string data)
  40.     {
  41.         uuider=llList2Key(TempList,x);
  42.         llSay(0,(string)uuider);
  43.        
  44.             named=data;
  45.             llSay(0, "Atention! " +(string) named +". Your Current Prim Allotment of 25 has been Exceeded.  Please come to "+(string)slurl+" and Reduce your prim count as soon as possible.  Thank You.");
  46.  
  47.     }
  48.  
  49.  
  50.     touch_start(integer total_number)
  51.     {
  52.         llSay(0, "Touched.");
  53.     }
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement