Jump to content

Thaiika

Resident
  • Posts

    5
  • Joined

  • Last visited

Reputation

1 Neutral

Recent Profile Visitors

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

  1. Thats works without errors, thank you so much!!!! now i need to understand how to do it by myself. You are all so smart here, damn.
  2. Hello everyone. IM a very new... well I'm very stupid with all that scripting stuff, i even cant change part of code. So maybe someone can explain me what is wrong with this script, that i found on wiki. When I worn it first time, or if I gave object with this script to someone, first time when people wear it, they got a lot of errors " Script trying to stop animations but PERMISSION_TRIGGER_ANIMATION permission not set" if people took it off and add again, this error didn't appear again. What permission it wants? default { touch_start(integer detected) { llRequestPermissions(llGetOwner(), PERMISSION_TRIGGER_ANIMATION); } run_time_permissions(integer perm) { if (perm & PERMISSION_TRIGGER_ANIMATION) { llStartAnimation("its"); llPlaySound("How",1.0); llSetTimerEvent(9.7); } } timer() { llSetTimerEvent(0.2); llStopAnimation("its"); llStopSound(); } }
  3. Hello there, can some one tell me. If i create some stuff, give that stuff to my ex bf, but forget to turn off all rights on that stuff. After a while, i saw my product on marcetplace. That "ex" selling it with price lower than my. I asking him to remove it but, he dint do that. Is there any options to remove that stuff from MP?
  4. OH thank you. Yeah its seems easy if you good understand english and all that terminology of lsl. But not for me, i not good understand all of that on english. Anyway its works. Thank you so much !!
  5. Hello there, i have a question. If i need this script working little bit different way. I need a prim with that cript and when someone touch this prim on me, my avatar start dancing, sit or o any inamitions wich i chose. Without any permission questions. Just aweryone who click on that prim on me, make my avis turn on and off animation. How can i do that? my english not so good to understand that lsl stuff but i trying to do that. Or maybe i need some another script for this? default { touch_start(integer detected) { if(llGetPermissionsKey()) { llStopAnimation("sit"); llResetScript(); } else { llRequestPermissions(llDetectedKey(0), PERMISSION_TRIGGER_ANIMATION); } } run_time_permissions(integer perm) { if (perm & PERMISSION_TRIGGER_ANIMATION) { llStartAnimation("sit"); } } }
×
×
  • Create New...