Join us in Phaze Demesnes

LSL Script Library Home   Add a script Show All
Category: Contributor: Description
Animation Anonymous Super Jump.lsl
Super Jump.lsl
Super Jump.lsl

Download this script - Please use this link to get this script. If you see all the code on one long line, please use Wordpad or another editor, such as LSLEdit.exe. The .LSL file you will download is an ordinary text file.

1 // CATEGORY:Anumation
2 // DESCRIPTION:Super Jump.lsl
3 // ARCHIVED BY:Ferd Frederix
4
5 default
6 {
7 attach(key avatar)
8 {
9 vector force = <0,0, llGetMass() * 6.2>;
10 llSetForce(force, TRUE);
11 if(avatar==NULL_KEY)
12 {
13 llSetForce(<0,0,0>,TRUE);
14 }
15 }
16 }
17 // END //