Jump to content
You are about to reply to a thread that has been inactive for 4227 days.

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

Recommended Posts

Posted

Does anyone know where I can find a couples poseball script? One person sit on a poseball, the other person sit on another, then animation syncs and starts? It's used like everywhere in SL, but I can't find a script for this anywhere that actually works.

Posted

Thanks, I already have that. I meant just a simple sync script for a single pair of poseballs, not a poseball system. Basically what all the couples animation creators uses.

Posted

I may have a couple of better suggestions for you. Check out PerfectSitter and AVSitter. These scripts allow you to put animations in any object, singles, couples or groups. They can be used for the very simple sync such as you described or for more complex scenarios, as well.

Posted


Isabelle Mavendorf wrote:

I may have a couple of better suggestions for you. Check out PerfectSitter and AVSitter. These scripts allow you to put animations in any object, singles, couples or groups. They can be used for the very simple sync such as you described or for more complex scenarios, as well.

 

Suki Hirano wrote:

Thanks, I already have that.
I meant just a simple sync script for a single pair of poseballs, not a poseball system
. Basically what all the couples animation creators uses.

Um, no I'm not paying 2500 for one pair of poseballs. >.>

I'm asking what those animation stores use (abranimations, sylva, etc), the ones that sell SINGLE couple poses, NOT a complex poseball system... I'm pretty sure a simple poseball script like that is free somewhere.

Posted


Suki Hirano wrote:

Um, no I'm not paying 2500 for one pair of poseballs. >.>

I'm asking what those animation stores use (abranimations, sylva, etc), the ones that sell SINGLE couple poses, NOT a complex poseball system... I'm pretty sure a simple poseball script like that is free somewhere.

I don't know what others are using, probably custom made scripts that are not available anywhere

I see a challenge here and I also took pity on you so I made one

Here it is

// Pose Balls sync script by Dora Gustafson, Studio Dora 2013

// Free for anybody to read, copy, modify, compile, use, rip apart, trample on and flush

// Build using Basic pose ball script v1.4

// Will synchronize animations in two or more pose balls

// All animations start when all are seated

// Put the script and some animation in each pose ball

// All pose balls must be linked

 

string animation;

key subject;

 

default

{

    state_entry()

    {

        llSitTarget( <0.0, 0.0, 0.01>, ZERO_ROTATION );

        llSetClickAction(CLICK_ACTION_SIT);

        animation = llGetInventoryName( INVENTORY_ANIMATION, 0);

        if ( animation == "" ) animation = "sit_generic";

    }

    changed(integer change)

    {

        if (change & CHANGED_LINK)

        {

            key sitter = llAvatarOnSitTarget() ;

            if ( sitter )

            {

                llSetAlpha(0.0, ALL_SIDES); // hide prim

                subject = sitter;

            }

            else

            {

                if ( llGetPermissions() & PERMISSION_TRIGGER_ANIMATION && llGetAgentSize(subject)!=ZERO_VECTOR) llStopAnimation(animation);

                llSetAlpha(1.0, ALL_SIDES); // show prim

            }

            if ((llGetNumberOfPrims() / llGetObjectPrimCount(llGetKey())) == 2) llRequestPermissions(sitter , PERMISSION_TRIGGER_ANIMATION);

            else if ( llGetPermissions() & PERMISSION_TRIGGER_ANIMATION && llGetAgentSize(subject)!=ZERO_VECTOR)

            {

                llStartAnimation("express_disdain");

                llStopAnimation(animation);

            }

        }

        if (change & CHANGED_INVENTORY) llResetScript();

    }

    run_time_permissions(integer perm)

    {

        if ( perm & PERMISSION_TRIGGER_ANIMATION )

        {

            llStartAnimation(animation);

            llStopAnimation("sit");

        }

    }

    on_rez(integer param) { llResetScript(); }

}

 

 

As the comments state:

  1. The script can synchronize animations in two or more linked pose balls
  2. Put this script and some animation in each pose ball
  3. All animations start in sync when all balls are sat on

    When one or more sitters leave all animations stop

:smileysurprised::):smileyvery-happy:

  • 4 months later...
  • 11 months later...
Posted


Methodios wrote:

I followed the steps with the scripts given but it doesnt work. Can anyone tell me what i'm doing wrong?

but it doesn't work???

Given the question I can say: you did something wrong

I can't be more specific

:smileysurprised::):smileyvery-happy:

  • 1 year later...
Posted

Hi,   It been a while since ‎05-09-2013 08:40 PM when you asked about

"where I can find a couples poseball script? One person sit on a poseball, the other person sit on another, then animation syncs and starts? It's used like everywhere in SL, but I can't find a script for this anywhere that actually works."

 

But the answer is !                                              https://marketplace.secondlife.com/p/Couples-Dance-Dot/6621164

 

this will do everything you want.  Have fun. 

 

 

You are about to reply to a thread that has been inactive for 4227 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
×
×
  • Create New...