Jump to content

K1CKZ

Resident
  • Posts

    6
  • Joined

  • Last visited

Reputation

0 Neutral

Recent Profile Visitors

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

  1. It is great that the features that I am looking for are being worked on. Its just that I am trying to do something now and cant wait another year or 2 for EEP to finally get released.
  2. Im assuming that EEP is a second life bot. nothing is coming up in google. Can you please post a link of any documentation?
  3. there is no 24 hour day cycle in windlight settings. only 4 hour day cycle. the only way to do it is with scripting. my question was: has anyone been successful at scripting a hud to create a 24 hour day cycle?
  4. Has anyone figured out how to run this in a hud yet?
  5. wow. thank you so much for helping me. i was not expecting a quality answer from a true pro. the code works great. thanks again
  6. I'm trying to create an object. attach it to my hud. insert 10 dance animations, insert script. click on it, then a question pops up. Sequential, random, or stop. if you select random your avatar will start dancing until the animation is done, then a new animation will start at random, and that will keep happening forever, until you click stop. This is some free code i am trying to work with. I cant figure out why it doesn't work. can you please help me? integer INTERVAL = 120; // how many seconds to play each dance, randomly // constants list dances; integer WHICH; // which dance integer TOTAL; // how many dances integer PERMS; // current permissions integer STATE; // off if flase, 1 = next dance, 2 = random integer listener; // the current listener, so we can remove it. integer counter; // counter for timer to auto stop listeners; // pop up a dialog box dialog() { llListenRemove(listener); integer channel = llCeil(llFrand(1000)+100 * -1); listener = llListen(channel,"","",""); llDialog(llGetOwner(),"Choose",["Next Dance","Stop Dance","Random"], channel); } default { state_entry() { // load up the current animation inventory into a list integer i; integer j = llGetInventoryNumber(INVENTORY_ANIMATION); for (i = 0; i < j; i++) { dances += llGetInventoryName(INVENTORY_ANIMATION,i); // add to a list TOTAL++; } STATE = 1; // dance sequentially llRequestPermissions(llGetOwner(), PERMISSION_TRIGGER_ANIMATION); dialog(); } // was rezzed or attached, start over on_rez(integer param) { llResetScript(); } // someone added or deleted an animation. Start over and make a new list changed(integer what) { if (what & CHANGED_INVENTORY) llResetScript(); } timer() { // since they may hit ignore on the dialog, we count two passes at the timer, then kidll off any listener. if (listener) counter++; if (counter) llListenRemove (listener); // remove the listener after two passes to help with lag // now lets see what to do PERMS = llGetPermissions(); if (PERMS & PERMISSION_TRIGGER_ANIMATION) { if (STATE == 1) // sequential play { llStopAnimation(llList2String(dances, WHICH)); // quit the current WHICH++; if (WHICH >= TOTAL) { WHICH = 0; } llStartAnimation(llList2String(dances, WHICH)); // start next one. llOwnerSay("Dance:" + llList2String(dances, WHICH)); } else if (STATE == 2) // random play { llStopAnimation(llList2String(dances, WHICH)); WHICH = llCeil(llFrand(TOTAL))-1; llStartAnimation(llList2String(dances, WHICH)); llOwnerSay("Dance:" + llList2String(dances, WHICH)); } llSetTimerEvent(INTERVAL); } else { // dang, no permissions, oh well, ask for them llRequestPermissions(llGetOwner(), PERMISSION_TRIGGER_ANIMATION); } } listen(integer channel, string name, key id, string message) { llListenRemove(listener); // save lag PERMS = llGetPermissions(); if (message == "Stop Dance") { STATE = FALSE; if (PERMS & PERMISSION_TRIGGER_ANIMATION) { llStopAnimation(llList2String(dances, WHICH)); } llSetTimerEvent(0); // ***** it all down } else if (message == "Next Dance") { if (!(PERMS & PERMISSION_TRIGGER_ANIMATION)) { llRequestPermissions(llGetOwner(), PERMISSION_TRIGGER_ANIMATION); } STATE = 1; // flag ithis as sequential } else if ( message == "Random") { if (!(PERMS & PERMISSION_TRIGGER_ANIMATION)) { llRequestPermissions(llGetOwner(), PERMISSION_TRIGGER_ANIMATION); } STATE = 2; // flag this as random } } touch_start(integer who) { if (llDetectedKey(0) == llGetOwner()) // only the owner can do this as we can control only one avatar at a time { dialog(); } } run_time_permissions(integer perm) { PERMS = perm; llSetTimerEvent(1.0); // trigger the logic in one second } } // END //
×
×
  • Create New...