Jump to content

scamper2012

Resident
  • Posts

    3
  • Joined

  • Last visited

Reputation

0 Neutral

Recent Profile Visitors

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

  1. We have parcels avaliable on low lag sims. All our sims are business or residential. Parcels as small as 1024sqm to full sims. Full sims come with the option to have the name changed for free and Estate Rights. If you rent Half a sim or more you will also get Estate rights. Our prices are competetive and Low. Please IM Scamper2012 Resident or HotnSpicey Littlething in world for more info.
  2. Thankyou so much. That worked a treat. Now I have a pose stand that wont show the pose script I built unless you look at the seperate prims. Thankyou so much.
  3. I have been building an awsome pose stand script for my store and to give away in all our builds. the pose stand itself is about 7 prims in total and the texture can be changed just by dropping a texture into the pose stands contents. however, because the pose stand script is not in the root prim but in one of the child prims, im getting an error when trying to call the objects description of the root prim. can someone help me please. Script Below... key avposekey = NULL_KEY; integer avposeperms = FALSE; string text; default { state_entry() { vector pposetarget = <0.00, 0.00, 1.00>; rotation rX; rotation rY; rotation rZ; rotation r; rX = llAxisAngle2Rot( <1,0,0>, 0 * DEG_TO_RAD); rY = llAxisAngle2Rot( <0,1,0>, 0 * DEG_TO_RAD); rZ = llAxisAngle2Rot( <0,0,1>, 0 * DEG_TO_RAD); r = rX * rY * rZ; llSetSitText( "Pose" ); llSitTarget( pposetarget, r ); llSetText("", <1.0,1.0,1.0>, 1.0); } changed(integer change) { if (change & CHANGED_LINK) { key agent = llAvatarOnSitTarget(); if ( avposekey == NULL_KEY && agent != NULL_KEY ) { avposekey = agent; llRequestPermissions(avposekey,PERMISSION_TRIGGER_ANIMATION); } else if ( avposekey != NULL_KEY && agent == NULL_KEY) { if ( avposeperms ) { llStopAnimation("turn_180"); llSetColor(<0,0,0>, ALL_SIDES); } llResetScript(); } } } run_time_permissions(integer parm) { text = llGetPrimitiveParams(LINK_ROOT, llGetObjectDesc()); if(parm == PERMISSION_TRIGGER_ANIMATION) { llInstantMessage(avposekey,"Hello " + llKey2Name(avposekey) + " " + text); avposeperms = TRUE; llStopAnimation("sit"); llStartAnimation("turn_180"); llSetColor(<0.0, 0.0, 0.8>, ALL_SIDES); } } }
×
×
  • Create New...