Jump to content

Arkyt

Resident
  • Posts

    8
  • Joined

  • Last visited

Reputation

0 Neutral

Recent Profile Visitors

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

  1. Haunted Halloween place waiting on you to be explored.Unique Halloween treasure hunt for you that will challenge you inworld and outside SL.Get your ticket at the ticket booth and enjoy clues, riddles, codes and a prize at the end. Stop by if your dare! http://maps.secondlife.com/secondlife/Nautilus%20-%20Melqart/193/32/4000
  2. Hello, I was trying to figure out why I am unable to move an article of clothing once attached to make it fit better. It is mesh, not rigged mesh, and it came with full perms. It is using a convex hull type. Am very new to creating some clothing, and was a full perm kit that I starting off with. I tried creating my own prim and linking them both, then moving the new prim, which worked, but only for the new prim the linked outfit still didn't move at all with it. Any help in this in understanding how the system works better, and how I can be able to shift prims once have full rights to them once worn would be appreciated. Thanks in advance.
  3. Perfect, very right you were Call my blind for missing that *grins* Really appreciate helping me clear that up!
  4. i know the code is in no way optimized as I was just playing aruond with how I even want to structure it or what i want it to do at this point. That said could just as easily say (integer)llFrand(5) I am not understanding how it's caught in an infinite loop however. It would keep returning a random number between 0-5 until that number is different then the first one generated. So at most would stay stuck for less than a second, then continue. Unless I am missing something... *edit* also just to clarify it's a problem with touch_end , or touch_start as it completes the state and displays everything for the current touch, then doesn't even start again once it gets stuck. Completes everything from the previous one, but doesn't even pull up the coords from where it it was touched on the next iteration. This would lead me to believe it's a problem with the touch states, or the llDetectedTouch functions.
  5. I am making a hud, and using touch_start. It works perfect for a while, but then it just randomely stops after a while. Sometimes this can be as short os 3-5 clicks, or upwards to 20. Haven't been able to find the pattern to it yet on why it's breaking. There is no state changes at all, so that's not the problem. Here is a shortned version of the code if it's a logic problem. Any help would be appreciated. default { state_entry() { llSay(0, "Arkyt's DJ Hud Ver: 1.0\nStage: Alpha"); } touch_end(integer num_detected) { integer touchface = llDetectedTouchFace(0); vector touchPos = llDetectedTouchST(0); if(touchface == -1) llWhisper(PUBLIC_CHANNEL, "Sorry, your viewer doesn't support touched faces which this HUD uses."); else if (touchPos == TOUCH_INVALID_TEXCOORD) llWhisper(PUBLIC_CHANNEL, "Sorry, the touch position on the HUD could not be determined."); else { llOwnerSay("\ntouchPos.x: " + (string)touchPos.x + "\ntouchPos.y: " + (string)touchPos.y); // DJ Random Emote to help fire up the crowd // first find out type of emote to do integer emoteType = randomInt(0,1); if(emoteType == 1){ integer randomNumA = (integer)(llFrand(5-0 + 1)); // creates a random int between 0 and 5 integer randomNumB = (integer)(llFrand(5-0 + 1)); // creates a random int between 0 and 5 while (randomNumB == randomNumA){ // makes sure the second random number is different then the first integer randomNumB = (integer)(llFrand(5-0 + 1)); } llSay(0,djEmoteSelf(randomNumA) + " and " + djEmoteSelf(randomNumB) + "!"); } else { // doing a crowd emote // find out if adding a personal emote as well integer crowdEmoteType = randomInt(0,1); if (crowdEmoteType == 1){ // adding personal emote to the end llSay(0,djEmoteCrowd(randomInt(0,3)) + " cause I am " + djEmoteSelf(randomInt(0,5)) + "!"); } else { llSay(0,djEmoteCrowd(randomInt(0,3)) + "!"); } } } } }
  6. My name is Michael Hughes, going by the handle Arkyt in game, and have started djing six months ago. I mostly do trap/electro and deep house sets here in sl for fun and improving my skills. I have entered the Burn Residency 2014 competition where the first phase is based upon popularity and promoting yourself. I have no fan base to really speak of and trying to think of ways to really promote myself as I would need some big help to make it to phase two where I need to be in the top 20% by March 22nd.. Burn Residency link to my profile and the mix where people can vote: https://apps.facebook.com/burnresidency/dj-profile/6125/share If you could take a listen and vote if you like it, as well as share it with your frriends, and groups that you feel have a similar intrest. Thanks for taking the time in reading this, and in any consideration of my mix. Sincerely, Michael Hughes (Arkyt)
  7. Curious about this as well, looking for places to play my guitar online.
  8. If still need help, feel free to hit me up.
×
×
  • Create New...