Difference between revisions of "LlDetermineType"

From Second Life Wiki
Jump to navigation Jump to search
Line 20: Line 20:
|p3_type=integer
|p3_type=integer
|p3_name=end
|p3_name=end
|p1_desc=
|p1_desc= The string that you are determining the type of a part of.
|p2_desc= The start point in the string of what you are determining.
|p3_desc= The end point in the string of what you are determining.
|func_footnote=
|func_footnote=
|func_desc
|func_desc

Revision as of 21:02, 4 May 2009

integer llDetermineType(string source, integer start, integer end);
if(llDetermineType(msg,0,-1)==1)
{
    integer new_number = msg;
    //llDetermineType determines the type of a part of a string and returns the result. In this istance, returning 1 will indicate that it is an integer instead of a key or rotation.
}
Emblem-important-yellow.png LSL Feature Request
The described function does not exist. This article is a feature request.

Summary

Function: integer llDetermineType( string source, integer start, integer end );
REQUEST Function ID
0.0 Forced Delay
10.0 Energy

Returns an integer of child prim keys.

• string source The string that you are determining the type of a part of.
• integer start The start point in the string of what you are determining.
• integer end The end point in the string of what you are determining.

number does not support negative indexes.

Caveats

  • If number is out of bounds the script continues to execute without an error message.
All Issues ~ Search JIRA for related Bugs

Examples

Notes

Should make it easier for scripters to get all child prim keys. Can be done using llGetLinkKey example is already provided.

Deep Notes

Search JIRA for related Issues

Signature

//function integer llDetermineType( string source, integer start, integer end );