<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.secondlife.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=RAM+Maverick</id>
	<title>Second Life Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.secondlife.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=RAM+Maverick"/>
	<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/wiki/Special:Contributions/RAM_Maverick"/>
	<updated>2026-07-27T04:55:56Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.42.1</generator>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=LlGetTimeOfDay&amp;diff=262603</id>
		<title>LlGetTimeOfDay</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=LlGetTimeOfDay&amp;diff=262603"/>
		<updated>2009-03-03T01:40:38Z</updated>

		<summary type="html">&lt;p&gt;RAM Maverick: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{LSL_Function&lt;br /&gt;
|func=llGetTimeOfDay&lt;br /&gt;
|func_id=80&lt;br /&gt;
|func_sleep=0.0&lt;br /&gt;
|func_energy=10.0&lt;br /&gt;
|return_type=float&lt;br /&gt;
|func_footnote=Second Life days cycles are 4 hours long (3 hours of light, 1 hour of dark). The sunrise and sunset time varies slowly (following the seasons?).&lt;br /&gt;
|func_desc&lt;br /&gt;
|return_text=that is the time in seconds with subsecond precision since Second Life midnight or region up-time (time since when the region was brought online/rebooted); whichever is smaller. If the region is configured so the sun stays in a constant position, then the returned value is the region up-time.&lt;br /&gt;
|spec&lt;br /&gt;
|caveats&lt;br /&gt;
|constants&lt;br /&gt;
|examples=&amp;lt;lsl&amp;gt;//Time will be less than 4 hours unless the sun is locked.&lt;br /&gt;
default&lt;br /&gt;
{&lt;br /&gt;
    touch_start(integer total_number)&lt;br /&gt;
    {&lt;br /&gt;
        float tod = llGetTimeOfDay( );&lt;br /&gt;
        llOwnerSay(&amp;quot;Time since last region restart or SL midnight (based on SL 4 hour day):&amp;quot;);&lt;br /&gt;
        integer hours = ((integer)tod / 3600) ;&lt;br /&gt;
        integer minutes = ((integer)tod / 60) - (hours * 60);&lt;br /&gt;
        llOwnerSay((string) tod + &amp;quot; seconds which is &amp;quot;+(string) hours+&amp;quot;h &amp;quot;+(string) minutes+&amp;quot;m&amp;quot;); &lt;br /&gt;
    }&lt;br /&gt;
}&amp;lt;/lsl&amp;gt;&lt;br /&gt;
|helpers&lt;br /&gt;
|also_functions=&lt;br /&gt;
{{LSL DefineRow||[[llGetSunDirection]]|}}&lt;br /&gt;
|also_events&lt;br /&gt;
|also_tests&lt;br /&gt;
|also_articles&lt;br /&gt;
|notes&lt;br /&gt;
|cat1=Time&lt;br /&gt;
|cat2=Region&lt;br /&gt;
|cat3&lt;br /&gt;
|cat4&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>RAM Maverick</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Land_collision_start&amp;diff=262402</id>
		<title>Land collision start</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Land_collision_start&amp;diff=262402"/>
		<updated>2009-03-02T22:13:08Z</updated>

		<summary type="html">&lt;p&gt;RAM Maverick: Example added&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Issues/SVC-3304}}{{LSL_Event&lt;br /&gt;
|event_id=8&lt;br /&gt;
|event_delay&lt;br /&gt;
|event=land_collision_start&lt;br /&gt;
|p1_type=vector&lt;br /&gt;
|p1_name=pos&lt;br /&gt;
|p1_desc=position of collision with the ground&lt;br /&gt;
|event_desc=Triggered when task starts colliding with land&lt;br /&gt;
|constants&lt;br /&gt;
|spec&lt;br /&gt;
|caveats&lt;br /&gt;
|examples=&amp;lt;lsl&amp;gt;//Put script into physical object and drop to ground.  It will say position of initial impact.&lt;br /&gt;
default&lt;br /&gt;
{&lt;br /&gt;
     land_collision_start( vector pos )&lt;br /&gt;
    {&lt;br /&gt;
       llOwnerSay(&amp;quot;Land collision at: &amp;quot;+(string) pos.x + &amp;quot;,&amp;quot;+(string) pos.y+&amp;quot;,&amp;quot;+(string)pos.z);&lt;br /&gt;
    }&lt;br /&gt;
}&amp;lt;/lsl&amp;gt;&lt;br /&gt;
|helpers&lt;br /&gt;
|also_header=&lt;br /&gt;
*{{LSLGC|Collision|Collision events &amp;amp; functions}}&lt;br /&gt;
|also_events=&lt;br /&gt;
{{LSL DefineRow||[[land_collision]]|}}&lt;br /&gt;
{{LSL DefineRow||[[land_collision_end]]|}}&lt;br /&gt;
|also_functions=&lt;br /&gt;
{{LSL DefineRow||[[llGround]]|Gets the ground height}}&lt;br /&gt;
|also_articles&lt;br /&gt;
|also_footer&lt;br /&gt;
|notes&lt;br /&gt;
|mode&lt;br /&gt;
|deprecated&lt;br /&gt;
|issues&lt;br /&gt;
|cat1=Collision&lt;br /&gt;
|cat2=Ground&lt;br /&gt;
|cat3=Land Collision&lt;br /&gt;
|cat4&lt;br /&gt;
|cat5&lt;br /&gt;
|cat6&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>RAM Maverick</name></author>
	</entry>
</feed>