Jump to content

sexylady Waco

Resident
  • Posts

    13
  • Joined

  • Last visited

Posts posted by sexylady Waco

  1. Hi All

    I’m using avisitter now but i guess it will not work with me regarding to number of poses and animations limit.

    i need to get new pose system that support huge number of animations and poses (around 1K of animations)

    any recommending please).

    i thought to get MPS but i don’t know if there is  anything can be better?

  2. To be clear i mean the below script can i put 2 scripts for example one for sitter 0 and another for sitter 1 in the same script file.

    and should i put the script file in the Prim or in the Prop (i put it in Prim but just to confirm that this is the right place)

     

    1. /******************************************************************
    2. * This example uses 90200 to rez a prop while any one of a number of poses are playing.
    3. * Props remain until a different pose is selected or another prop of same prop group is rezzed.
    4. * Useful if you want the same prop to remain rezzed for several poses.
    5. * May help save prop script memory in cases you are re-using the same prop over and over.
    6. *
    7. * To use:
    8. * 1. Set up a regular prop that rezzes with a pose as usual.
    9. *
    10. * 2. Change the PROP's <trigger_name> in the notecard to be a completely new name.
    11. * The new name should *NOT* match a pose name so the prop will rez *ONLY* by this script.
    12. * e.g. PROP PicnicProp...
    13. *
    14. * 3. Edit the "prop_trigger" string below to match this name.
    15. * e.g. string prop_trigger = "PicnicProp";
    16. *
    17. * 4. Edit "poses" list below to include all the POSE or SYNC that you want to rez the prop for.
    18. *
    19. * 5. Edit "SITTER" below to match the sitter # the props are for (or use -1 to ignore sitter #).
    20. *
    21. * If multiple copies of this script are used to rez multiple props at the same time, then each PROP should be set to a different "GROUP".
    22. ******************************************************************/
    23.  
    24. string prop_trigger = "PicnicProp";
    25. list poses = ["Sit1","Sit2","cuddle","kiss"];
    26. integer SITTER = 0;
    27.  
    28. /******************************************************************
    29. * DON'T EDIT BELOW THIS UNLESS YOU KNOW WHAT YOU'RE DOING!
    30. ******************************************************************/
    31.  
    32. integer rezzed;
    33.  
    34. link_message(integer sender, integer num, string msg, key id){
    35. if(num==90045){
    36. list data = llParseStringKeepNulls(msg,["|"],[]);
    37. string POSE_NAME = llList2String(data,1);
    38. integer SITTER_NUMBER = (integer)llList2String(data,0);
    39. if(SITTER_NUMBER==SITTER || SITTER==-1){
    40. if(llListFindList(poses,[POSE_NAME])!=-1){
    41. if(rezzed==FALSE){
    42. llMessageLinked(LINK_THIS,90200,prop_trigger,"");
    43. rezzed=TRUE;
    44. }
    45. }
    46. else{
    47. llMessageLinked(LINK_THIS,90200,"remprop_"+prop_trigger,""); // clear the prop
    48. rezzed=FALSE;
    49. }
    50. }
    51. }
    52. else if((num==90065 && (integer)msg==SITTER) || num==90030){ //sitter stands or swaps
    53. rezzed=FALSE;
    54. }
    55. }
    56. }
  3. Hi,

    noop question, can I put multiple scripts in one script file.

    for example I use avistter multi pos in one prim script and i have one script for sitter 0 and one for sitter 1 so can I put these scripts in one script file and how?

  4. i need to test some couple poses in SL and adjust.

    i need another test avatar to test.

    it should not be real SL avatar but just test one.

    i think everyone creates couple poses faced this problem so how you solved this.

    i tried with my BF but it was hard as i cannot tell him to be online everytime i need test and also i must send him the pose every time i need test, it is so hard.

    also i created another account and tried to work in two instances but it was so hard and also the load of two instances is very hard in one machine it makes it very slow.

    any idea?

  5. Hi All

    i have created chair with poses and animiation with pose ball.

    but i need to menue to appear when i click on the chair (now the ball should appear first then use it to apply the menu)

    so is there is any way to make script running directly in chair without using or showing a ball.

     

×
×
  • Create New...