Search the Community
Showing results for tags 'sit'.
-
I'm trying to get a boolean value for whether or not I am seated on an object not counting the ground.
-
I'm looking to unseat everyone who sits on a particular object except for the first person to sit on it.
-
Hello! I need to make an object that starts to vibrate when an avatar sits on it and it plays animation. I found such a script of vibration and animation, but how should they be combined together? vibration integer k; integer flip = 1; list params; vector pos; integer link = 0; default { state_entry() { params = llGetLinkPrimitiveParams(link, [PRIM_POSITION]); pos = llList2Vector(params, 0); } touch_start(integer total_number) { if (k = !k) llSetTimerEvent(0.02+llFrand(0.1)); else llSetTimerEvent(0.0); } timer() { ll
-
This seems to be a settings issue. Several months ago, something happened with my account to corrupt settings of some sort and I've been suffering with this problem since. When I'm standing, my hover height is adjusted so that I just touch the floor. No problem. BUT - when I sit on anything, furniture, any type of stationary or animation poseball - just sitting on anything.....my avatar winds up lower than it should be. Way lower - down inside of the furniture. We normally have to tweak our sits, but this is way beyond tweaking. I have to use my hover slider to get myself up to the correct pos
-
i hope when AVsitter is released i can just play with that, untill then - rez 2 boxes, link em and put this script in the child. if i sit on the child and click that box, it moves my avatar, ... and is supposed to renew the sitTarget, but when i stand and sit back down, the sit target is way off? tried everything i can think of thanx for any advice, X vector sitPos; vector sitRot; integer avLink; string anim ; list local; vector mypos; rotation myrot; rotation R_avRot; rotation V2Rrot; updateSitTrg(integer link,vector avPos, vector avRot) { key u
-
Hello! I want to create a script that allows you to play different sounds with each animation (e.g. running, walking, swimming...) based on the simple walker script. How it should look like? Is it possible to assign a separate sound for each animation with such script? Perhaps you will advise to be based on another script? Thank you. Here is the script on which I'm based: string walk_sound = "34eae688-8b2d-d86c-5c1e-4e3eb865ca0d"; string stop_sound = "81603357-2b3c-bc7a-5d15-eb20fcca22a1"; string run_sound = "b1c0f5e2-45e5-e0b2-926a-fd60520ed4ee"; float volume = 1.0; integer i = TRU