Jump to content

sexylady Waco

Resident
  • Posts

    13
  • Joined

  • Last visited

Reputation

0 Neutral

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. is it possible to create three level of menu in MPS example Sit and Talk Sit SitMale pose pose pose SitFemale pose pose pose
  2. so for who use MPS and Avsitter which one is better in carry much animiations? i tested Avsitter and the limit reached to around 400 animiations so any one have idea about MPS limit?
  3. 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?
  4. i got below error, i'm using avisitter. i made all my animation names in numbers started to 1 to decress the space but still got this issue any idea please [script:[AV]sitB] Script run-time error Stack-Heap Collision
  5. thank you all. the fix in avsitter update. this is the link in case if anyone face this. https://avsitter.com/qa/89/how-make-many-version-rez-same-prop-for-several-poses-script
  6. any idea when i try to use this script twice the props disappear.
  7. 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) /****************************************************************** * This example uses 90200 to rez a prop while any one of a number of poses are playing. * Props remain until a different pose is selected or another prop of same prop group is rezzed. * Useful if you want the same prop to remain rezzed for several poses. * May help save prop script memory in cases you are re-using the same prop over and over. * * To use: * 1. Set up a regular prop that rezzes with a pose as usual. * * 2. Change the PROP's <trigger_name> in the notecard to be a completely new name. * The new name should *NOT* match a pose name so the prop will rez *ONLY* by this script. * e.g. PROP PicnicProp... * * 3. Edit the "prop_trigger" string below to match this name. * e.g. string prop_trigger = "PicnicProp"; * * 4. Edit "poses" list below to include all the POSE or SYNC that you want to rez the prop for. * * 5. Edit "SITTER" below to match the sitter # the props are for (or use -1 to ignore sitter #). * * 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". ******************************************************************/ string prop_trigger = "PicnicProp"; list poses = ["Sit1","Sit2","cuddle","kiss"]; integer SITTER = 0; /****************************************************************** * DON'T EDIT BELOW THIS UNLESS YOU KNOW WHAT YOU'RE DOING! ******************************************************************/ integer rezzed; default{ link_message(integer sender, integer num, string msg, key id){ if(num==90045){ list data = llParseStringKeepNulls(msg,["|"],[]); string POSE_NAME = llList2String(data,1); integer SITTER_NUMBER = (integer)llList2String(data,0); if(SITTER_NUMBER==SITTER || SITTER==-1){ if(llListFindList(poses,[POSE_NAME])!=-1){ if(rezzed==FALSE){ llMessageLinked(LINK_THIS,90200,prop_trigger,""); rezzed=TRUE; } } else{ llMessageLinked(LINK_THIS,90200,"remprop_"+prop_trigger,""); // clear the prop rezzed=FALSE; } } } else if((num==90065 && (integer)msg==SITTER) || num==90030){ //sitter stands or swaps rezzed=FALSE; } } }
  8. i know how to do this i mean when attach one Prop for multi poses so i write that in script
  9. it is not related to note card i'm asking about scripts file
  10. 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?
  11. 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?
  12. thank you very much. can you please recommend me one that is easy to use. i need just scripts and note cards. money is not issue
  13. 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...