Files
LSL-Scripts/Springboard/Springboard/Object/Springboard_1.lsl
Fred Beckhusen ce47ec2f3e Push All Scripts
2015-08-07 10:38:47 -05:00

24 lines
429 B
Plaintext

// :CATEGORY:Trampoline
// :NAME:Springboard
// :AUTHOR:Anonymous
// :CREATED:2010-01-10 05:20:56.000
// :EDITED:2013-09-18 15:39:05
// :ID:828
// :NUM:1156
// :REV:1.0
// :WORLD:Second Life
// :DESCRIPTION:
// Springboard.lsl
// :CODE:
1// remove this number for the script to work.
default
{
collision_start(integer total_number)
{
llPushObject(llDetectedKey(0), <0,100,0>, <0,0,0>, FALSE);
}
}
// END //