This is a refiling of BUG-233105 A companion to PRIM_LINK_SUBSET which would allow the user to get or set prim parameters over a consecutive range of link targets at once. The range specified is inclusive. PIRM_LINK_RANGE, integer start, integer end Example: The following code would change the prim size of links 3, 4, 5, 6, 7, 8, 9, and 10 within the linkset. llSetPrimitiveParams( [ PRIM_LINK_RANGE, 3, 10, PRIM_SIZE, <1,1,1> ] ); If a nonexistent link number is specified, it is silently ignored (similar to how PRIM_LINK_TARGET ignores numbers outside the current linkset). If this is the case for the end parameter, perhaps the range would default to only targeting the link specified in the start parameter. If the start parameter specifies a nonexistent link, perhaps the entire range (and the following prim parameters it would have applied) is silently ignored as well. Speed and list efficiency is the main goal here. If we look at the example above, the current way to achieve this would be duplicating the parameters list and pairing it with a PRIM_LINK_TARGET for each additional target link. llSetLinkPrimitiveParamsFast( 3, [ PRIM_SIZE, <1,1,1>, PRIM_LINK_TARGET, 4, PRIM_SIZE, <1,1,1>, PRIM_LINK_TARGET, 5, PRIM_SIZE, <1,1,1>, PRIM_LINK_TARGET, 6, PRIM_SIZE, <1,1,1>, PRIM_LINK_TARGET, 7, PRIM_SIZE, <1,1,1>, PRIM_LINK_TARGET, 8, PRIM_SIZE, <1,1,1>, PRIM_LINK_TARGET, 9, PRIM_SIZE, <1,1,1>, PRIM_LINK_TARGET, 10, PRIM_SIZE, <1,1,1> ] ); This creates a larger list for what is essentially the same data - and the problem is worsened if the initial parameters list we wish to apply to each link is large by itself. Alternatively the user could run llSetLinkPrimitiveParamsFast in a loop, updating the target link each time. That keeps the parameter list small, but requires multiple invocations of the function. This suggestion aims streamline the process in this scenario, avoiding having to duplicate a potentially long parameters list for each target link and allowing only a single llSLPPF call to be needed. This suggestion complements PRIM_LINK_SUBSET which suggests an arbitrary CSV list of link targets, whereas this suggestion would target a consecutive range. I believe both would be valuable additions. Thank you for your consideration.