User:Trinity Coulter/LlGetMoneyLimits

From Second Life Wiki

Second Life Wiki > User:Trinity Coulter > User: Trinity Coulter/LlGetMoneyLimits
Jump to: navigation, search

Template:Needs Translation/LSL/de Template:Needs Translation/LSL/es Template:Needs Translation/LSL/el Template:Needs Translation/LSL/fr Template:Needs Translation/LSL/he Template:Needs Translation/LSL/it Template:Needs Translation/LSL/ja Template:Needs Translation/LSL/ko Template:Needs Translation/LSL/nl Template:Needs Translation/LSL/hu Template:Needs Translation/LSL/no Template:Needs Translation/LSL/da Template:Needs Translation/LSL/sv Template:Needs Translation/LSL/tr Template:Needs Translation/LSL/pl Template:Needs Translation/LSL/pt Template:Needs Translation/LSL/ru Template:Needs Translation/LSL/uk Template:Needs Translation/LSL/zh-Hans Template:Needs Translation/LSL/zh-Hant

Image:Emblem-important-yellow.png LSL Feature Request
The described function does not exist. This article is a feature request.

Contents

Summary

Function: list llGetMoneyLimits( list limits );
REQUEST Function ID
0.2 Delay
10.0 Energy

Gets the specific object or prim money transaction limitations found in the list limits. Empty list to return all active limitations.
Returns a list

• list limits
Template:LSL Constants/MoneyLimits

Caveats

  • This function causes the script to sleep for 0.2 seconds.

Search JIRA for related Bugs

Examples

 
// Gets the overall money limit allowed to be paid out of the prim/object,
// -1 = limited to amount paid in, 0 = unlimited, other non-negative numbers
// would be a hard limit
list moneylimits = llGetMoneyLimits([MONEY_LIMIT_CREDIT_OVERALL]);
 
MONEY_LIMIT_GROUP_PERIOD
MONEY_LIMIT_OWNER_PERIOD
MONEY_LIMIT_CREDIT_OVERALL
MONEY_LIMIT_DEBIT_OVERALL
 
 
 
// To render on side 3 
// the picture with the UUID... 
 
Trinity Coulter 12:22, 13 September 2008 (PDT)

Notes

The old PRIM_TYPE interface (labeled PRIM_TYPE_LEGACY) while technical retired can still be used.

See Also

Functions

•  llGetPrimitiveParams Get many primitive parameters
•  llSetLinkPrimitiveParams Set parameters on other prims in linkset
•  llSetAlpha Simpler way to set alpha (transparency)
•  llSetTexture Simpler way to set texture
•  llSetColor Simpler way to set color

Deep Notes

In other languages