Difference between revisions of "User:Trinity Coulter/LlGetMoneyLimits"

From Second Life Wiki
Jump to navigation Jump to search
m (still working on it)
m
 
Line 1: Line 1:
{{LSL Function
{{LSL Function
|mode=request
|func_id=259|func_sleep=0.2|func_energy=10.0|func=llGetMoneyLimits|sort=GetMoneyLimits
|func_id=259|func_sleep=0.2|func_energy=10.0|func=llGetMoneyLimits|sort=GetMoneyLimits
|return_type=list|p1_type=list|p1_name=limits
|return_type=list|p1_type=list|p1_name=limits
Line 34: Line 35:
|also_articles
|also_articles
|notes=The old PRIM_TYPE interface (labeled PRIM_TYPE_LEGACY) while technical retired can still be used.
|notes=The old PRIM_TYPE interface (labeled PRIM_TYPE_LEGACY) while technical retired can still be used.
|cat1=Prim
|cat1=
|cat2=Movement
|cat2=
|cat3=Status
|cat3=
|cat4=Texture
|cat4=
|cat5=Object
|cat5=
|cat6=
|cat6=
}}
}}

Latest revision as of 23:58, 25 September 2008

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

Summary

Function: list llGetMoneyLimits( list limits );
REQUEST Function ID
0.2 Forced 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.
All Issues ~ Search JIRA for related Bugs

Examples

<lsl> // 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... </lsl>

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

Search JIRA for related Issues

Signature

//function list llGetMoneyLimits( list limits );