Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

Bouncing Avatar

Corporal Candour
Registered User
Join date: 3 Sep 2005
Posts: 38
09-18-2005 17:31
Hi, I need a simple script that when you walk over an object, you get propelled into the air...I've seen objects that make you fly into the air when you walk over them, but I haven't been able to view their scripts.

Thanks,
Joe
Cid Jacobs
Theoretical Meteorologist
Join date: 18 Jul 2004
Posts: 4,304
09-18-2005 17:44
This usually works pretty well :)
CODE
 collision_start(integer n)
{
llPushObject(llGetOwner(), llGetVel() * ( 9.8 * llGetObjectMass(llDetectedKey(0))), ZERO_VECTOR, FALSE);
}
_____________________