Difference between revisions of "User talk:EnCore Mayne"

From Second Life Wiki
Jump to navigation Jump to search
m
m
Line 1: Line 1:
<hr/>
Edit for llAbs()
<table border=1 width=80% bgcolor=lime>
<tr>
<td>
<!-- collapsible table (not useful) -->
{{LSL Function
|func=llAbs
|func_id=6|func_sleep=0.0|func_energy=10.0
|func_footnote
|p1_type=integer
|p1_name=val
|p1_desc=Any integer value
|return_type=integer
|return_text=that is the positive version of {{LSLP|val}}.
|other_languages={{LSL OL|C++|[http://www.cplusplus.com/reference/clibrary/cstdlib/abs/ abs]}} 
|spec
|caveats=*The llAbs of -2147483648 is -2147483648. This is because the positive integer 2147483648 is outside the range of allowed LSL [https://wiki.secondlife.com/w/index.php?title=Category:LSL_Integer integer values].
|examples=
<lsl>
default
{
    state_entry()
    {
        llSay(0, "The absolute value of -4 is: "+(string)llAbs(-4) );
    }  //Returns "The absolute value of -4 is: 4"
}
</lsl>
<lsl>
// Here's a more elaborate example.
ShowAbsolute(integer X)
{
    string Message = "llAbs("
        + (string)X
        + ") --> "
        + (string)llAbs(X);
    llSay(PUBLIC_CHANNEL, Message);
}
default
{
    state_entry()
    {
        ShowAbsolute(-3);
        ShowAbsolute(5);
        ShowAbsolute(-20);
        ShowAbsolute(0);
    }
}
</lsl>
<pre>
// Here's the output produced by the more elaborate example:
Test Object: llAbs(-3) --> 3
Test Object: llAbs(5) --> 5
Test Object: llAbs(-20) --> 20
Test Object: llAbs(0) --> 0
</pre>
|helpers
|also_header
|also_tests
|also_articles
|also_footer
|also_functions={{LSL DefineRow||[[llFabs]]|[[float]] version of llAbs}}
|also_events
|also_articles={{LSL DefineRow||{{Wikipedia|Absolute value}}|}}
|notes
|cat1=Math
|cat2=Integer
|cat3
|cat4
}}
</td></tr></table>
<hr />
<hr />
edit for Where Am I?
edit for Where Am I?
Line 104: Line 27:
<hr height=2>
<hr height=2>


--EnCore Mayne 22:17, 8 September 2012 (PDT)<br>
[https://wiki.secondlife.com/wiki/Help:Contents| Second Life Wiki Code Basic Help]
<br>
{| {{KBtable}}
|- {{KBtablehead
!
! Column A
! Column B
! Column C


|-
<!-- table of edits -->
| '''Row 1'''
<table cellpadding=5 cellspacing=0 border=1>
| text
<tr bgcolor=yellow>
| for
<th colspan=2>Edits</th></tr>
| columns
<tr bgcolor=lime>
 
<td "style:font-color:yellow">Edit: llAbs()</td>
|-
<td> --EnCore Mayne 04:11, 10 September 2012 (PDT)
| '''Row 2'''
</td></tr></table>
| last
| row
| of table
 
|}
<table background=yellow border=1 cellpadding=0 cellspacing=0 width=100%>
<tr align=center>
<th>aha</th><th>aha</th><th>aha</th><th>aha</th></tr>
<tr><td colspan=4>harumph</td></tr>
<tr><td bgcolor=red colspan=4 style="font-size:100%;font:Georgia; color: yellow">harumph</td></tr>
</table>

Revision as of 04:11, 10 September 2012


edit for Where Am I?


The Mini-Map is a window showing a small number of details of your immediate environment. You are the white/yellow dot in the center; green dots are other people. The Mini-Map rotates to face the same direction you are.

To see more, bring up the World Map by left-clicking the Map button (or the Mini-Map).

  • You are the white dot with the yellow circle around it. What you can see is within the gray triangle.
  • Drag the Zoom slider in the lower right corner to zoom in or out.
  • The World Map doesn't rotate: North is always up.

The World Map can tell you lots more:

  • Looking for other people? They're green dots, just like on the Mini-Map.
  • Looking for things to do? Pink stars show special event locations. Double-click on them for more information.
  • Looking for stuff or land to buy? Click the "Background" drop-down menu in the upper right corner, and choose "Objects For Sale" or "Land For Sale".

Notes:

  • The dots on the Mini-Map mean the same as they do on the regular map.
  • You can show or hide the Mini-Map with Ctrl-Shift-M.
  • If you see a green V pointing up or down, that means a person is up higher than you or lower than you.


Edits
Edit: llAbs() --EnCore Mayne 04:11, 10 September 2012 (PDT)