Jump to content

Super Jump


Guest
 Share

You are about to reply to a thread that has been inactive for 4778 days.

Please take a moment to consider if this thread is worth bumping.

Recommended Posts

Want to be able jump like a super hero? Are you in the mood to jump over a building? Why fly over it when you can jump! Here's a Super Jump tweck.. This simply just changes the default jump so you can be cooler then anyone else. Sure they could fly but can the jump as high as you?? Hur hur. Anyways

 

Script:

Simply make a Object throw this script inside and attach it as a HuD. Click on it and your ready to go!

 

/*
This script is bestly use inside of a hud attach to yourself.
Simply make a box or use a (already) use hud and add this. Simply click and jump!

*/

default
{
    touch_start(integer total_number)
    {
        state Super_Jump;
    }
}

state Super_Jump
{
    state_entry ()
    {
        llOwnerSay("Super Jump on.");// Lets the user know Super Jump enabled
        llSetForce(<0,0, llGetMass() * 6.2>, TRUE);
        // Sets it so you'r able to jump just alittle bit higher then default
    }
    touch_start(integer total_number)
    {
        state default;
    }
    state_exit ()
    {
        llOwnerSay("Super Jump off.");// Lets the user know Super Jump disabled
        llSetForce(ZERO_VECTOR, TRUE);
        //end the superjump tweck and set it to default
    }
} 

 

 

  • Like 1
Link to comment
Share on other sites

You are about to reply to a thread that has been inactive for 4778 days.

Please take a moment to consider if this thread is worth bumping.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share

×
×
  • Create New...