Difference between revisions of "LlAbs"

From Second Life Wiki
Jump to navigation Jump to search
Line 7: Line 7:
|p1_type=integer
|p1_type=integer
|p1_name=val
|p1_name=val
|p1_desc
|p1_desc=Any integer value
|p2_type|p2_name|p2_desc
|p2_type|p2_name|p2_desc
|p3_type|p3_name|p3_desc
|p3_type|p3_name|p3_desc

Revision as of 20:07, 25 January 2007

   Outdated templated used

Please change the template from 'LSLFunctionAll' to 'LSL_Function' (just replace 'LSLFunctionAll' with 'LSL_Function', do this after fixing any other erorr messages.

   'also' Tag Removed

(Please use 'also_header','also_events','also_functions','also_articles', or 'also_footer')

Summary

Function: integer llAbs( integer val );

Returns an integer that is the positive version of val.

• integer val Any integer value

Examples

<lsl> default {

   state_entry()
   {
       llSay(0,"The absolute value of -4 is: "+(string)llAbs(-4) );
   }

}

</lsl>

Deep Notes

Search JIRA for related Issues

Signature

function integer llAbs( integer val );