Jump to content

Gage Verity

Resident
  • Posts

    5
  • Joined

  • Last visited

Everything posted by Gage Verity

  1. I'm trying to make a pose stand for model bots that will cycle through animations on a timer. Its basically working, but at the moment when it gets to the last animation in the inventory it does not switch back to the first animation on the next cycle. Been working on it for 2 days looking through other examples and help threads and can't seem to get it. Here's what I have. The llsay's are just in there for debug purposes. integer ThisAnim = 0; integer NumAnims = 0; string CurrAnim; key av; float seconds=5.0; //Change to specify number of seconds between animations default { on_rez(integer start_param) { llResetScript(); llSetAlpha(1.0,ALL_SIDES); // start off visible } state_entry() { NumAnims = llGetInventoryNumber(INVENTORY_ANIMATION); CurrAnim=llGetInventoryName(INVENTORY_ANIMATION,0); if(llGetInventoryType(CurrAnim)!=INVENTORY_ANIMATION) { CurrAnim = "sit"; llOwnerSay("Please put an animation in me"); } llSitTarget(<0.0, 0.0, 1.0>, ZERO_ROTATION); } timer() { if(NumAnims != 0) { CurrAnim = llGetInventoryName(INVENTORY_ANIMATION, ThisAnim%NumAnims); llStartAnimation(CurrAnim); ++ThisAnim; ThisAnim = ThisAnim%NumAnims; } else { llSay(PUBLIC_CHANNEL, "WTF MATE No Animations"); } } changed(integer change) { llSay(PUBLIC_CHANNEL, "Changed Function"); if (change & CHANGED_LINK) { if (llAvatarOnSitTarget() != NULL_KEY) { av = llAvatarOnSitTarget(); llRequestPermissions(av, PERMISSION_TRIGGER_ANIMATION); } else { if(llGetPermissions()&PERMISSION_TRIGGER_ANIMATION){ llStopAnimation(CurrAnim); llSetAlpha(1.0,ALL_SIDES); llSetTimerEvent(0); } } else if (change & CHANGED_INVENTORY) { CurrAnim=llGetInventoryName(INVENTORY_ANIMATION,0); if(llGetInventoryType(CurrAnim)!=INVENTORY_ANIMATION) { CurrAnim = "sit"; llOwnerSay("Please put an animation in me"); } } } run_time_permissions(integer permissions) { llSay(PUBLIC_CHANNEL, "run time function"); if(permissions & PERMISSION_TRIGGER_ANIMATION) { llStopAnimation("sit"); llStartAnimation(CurrAnim); llSetTimerEvent(seconds); llSetAlpha(0.0,ALL_SIDES); } } }
  2. Been having this problem a bit in my home, but from the other persepctive lol. I guess a previous residents store has old SLURLs posted somewhere. No one has seen any of my naughty bits though, yet...
  3. XL Underground is looking for new (reliable and Diva-free) DJ's and Hosts who can be available for shifts during the 12 noon - 12 midnight SLT timeframe. DJs should have a decent sized friends list and a DJ group. Live mixing required, external hardware mixing preferred but not required. Mic usage encouraged. Genres: Trance, Electro/Tech/Progressive House, Dubstep, Brostep, Glitch-Hop, Drum & Bass, Trap, Dance, Hip-hop. Hosts with previous experience ideal but not required, will train. Come on down to the Underground and remember to keep it gangsta! More info and Applications can be found here: http://www.xlunderground.com/
  4. RE: price, I would have no problem forking over 2-3k for the kind of work you do based on the pic I just saw on the first page of this forum. For artistic things like this I think its hard to set a hard price. Most times I feel the amount of time spent should factor in. Maybe come up with a rough hourly rate and base prices (at least partially) on that. To me, the 500L range seem most reasonable for quick jobs with minimal editing, profile pics with in-world backgrounds with maybe some text, light effects, borders etc in photoshop. I know a guy that does great morphs, but only charges 200L per pic. He is super quick though so for the time spent it is probably worth it to him. I just recorded a DJ intro for someone and as it was my first one I had no idea what to charge. She told me a typical price was 2k, but after hearing the final product she asked if i would take 5k (to which i said yes lol). That was between 3-4 hrs of time spent for about a 90 second recording. What i might suggest is (for advertising purposes) decide on an absolute minimum price based on your most average work with low-ish time spent, and say "starting at XXX L$" and indicate that the final asking price will depend on complexity/time. People who want to bargin you down obviously don't have an appreciation for what you do and I wouldn't waste much time trying to work with them. If you are getting a lot of your business from newbies who can't or won't pay what your work is worth, perhaps it would be worthwhile for you to offer different styles of work, and come up with a more newbie friendly service that takes significantly less time for you to compelte a pic. In my experience, art, or music, or whatever else I create, tends to be regarded very highly by non-artists, musicians etc, where-as I'm here thinking "that is some of my worst work lol".
×
×
  • Create New...