Advertisement
Madi_Perth

Untitled

Nov 29th, 2024
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Linden Scripting 0.85 KB | Source Code | 0 0
  1. integer iceCount;
  2.  
  3. list  iceUUID = ["4d260810-87e5-834d-519a-08a5f4be603a",
  4.                     "a2dabf12-8e0d-d407-a51e-538ec02cee41",
  5.                     "d8541969-2330-3a80-c175-a379d1322775",
  6.                     "ebce45bc-744d-30ff-2b6f-2c3fcb22dd90",
  7.                     "b39d828c-3462-2848-7300-19ffc9212b0b"];
  8.  
  9. default
  10. {
  11.     state_entry()
  12.     {
  13.        llOwnerSay( (string) llGetListLength(iceUUID));
  14.        llSay(0, (string)llGetRegionDayOffset());
  15.     }
  16.  
  17.     touch_start(integer total_number)
  18.     {
  19.         if(++iceCount > lllGetListLength(iceUUID))
  20.         {
  21.             iceCount = 0;
  22.         };
  23.         // llOwnerSay((string) iceCount + " " +
  24.             // llGetInventoryName(INVENTORY_MATERIAL, iceCount));
  25.         // llSetRenderMaterial(llGetInventoryName(INVENTORY_MATERIAL, iceCount),
  26.             // ALL_SIDES);
  27.     }
  28. }
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement