This commit is contained in:
Fred Beckhusen
2015-08-07 15:34:30 -05:00
parent ce47ec2f3e
commit fde850293c
8080 changed files with 0 additions and 2443112 deletions

View File

@@ -1,6 +0,0 @@
<Project name="Collisons" guid="D6FD79F5-6C00-1014-B904-200204C60A89">
<Object name="Object" guid="D6FD7AD8-6C00-1014-B904-200204C60A89">
<Script name="Collisons_1.lsl" guid="D6FD918C-6C00-1014-B904-200204C60A89">
</Script>
</Object>
</Project>

View File

@@ -1,40 +0,0 @@
// :CATEGORY:Weapons
// :NAME:Collisons
// :AUTHOR:Anonymous
// :CREATED:2010-01-10 05:20:56.000
// :EDITED:2013-09-18 15:38:50
// :ID:188
// :NUM:261
// :REV:1.0
// :WORLD:Second Life
// :DESCRIPTION:
// Collisons.lsl
// :CODE:
default
{
on_rez(integer param)
{
}
collision_start(integer num)
{
vector vel = llGetVel() * 99999;
llPushObject(llDetectedKey(0), vel, ZERO_VECTOR, FALSE);
}
collision_end(integer num_detected)
{
vector vel = llGetVel() * 99999;
llPushObject(llDetectedKey(0), vel, ZERO_VECTOR, FALSE);
}
land_collision_start(vector pos)
{
vector vel = llGetVel() * 99999;
llPushObject(llDetectedKey(0), vel, ZERO_VECTOR, FALSE);
}
timer()
{
llDie();
}
}
// END //