Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //This script is a quick way to erase all information in the description field.
- //There may not be a lot of times when you need a script like this to wipe out all
- //descriptions for the prims in a linkset, but here's a way to do it when you need
- //it.
- //You may want to run the "Prim number in linkset description" script after using
- //this one.
- default
- {
- state_entry()
- {
- integer prims = llGetObjectPrimCount(llGetKey());
- while (prims > 0)
- {
- llSetLinkPrimitiveParamsFast (prims, [28,""]);
- prims--;
- }
- llSay (0, "All done");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement