Jump to content

Kiran Steamweaver

Resident
  • Posts

    21
  • Joined

  • Last visited

Everything posted by Kiran Steamweaver

  1. Position still available for a ambitious marketing whiz!
  2. Breaking new ground in SL Radio! RUFFNEK Second Life Radio, a young Rock, Remix and Electronica station in SecondLife, is seeking to expand to a new base of carriers. RNR is a Second Life specific 24/7 broadcast station mixing smash hits and new offerings in our selected genres with genuine, funny station identifiers as well as Second Life-specific ads that are focused on supporting our customers and other SL based businesses, as well as live talk-shows powered by our small but professional vocal talent group. RUFFNEK seeks to change the expectations of SL Radio in that instead of pressing a random button on your music player and getting the same, boring, auto-mixed music that nobody really "tunes in" to (white noise, we like to call it.) Instead a user tunes in to RUFFNEK Radio and gets an experience as if their own home-grown local rock station just pulled into the sim. So what's this mean for you, SL job seeker? Do you like music? A lot? Are you a socialite? Love to chat up new people? Have a knack for selling an idea to someone? We might have a place for you on our team! RNR is on the lookout for a marketing assistant to assist us in expanding our carrier base. Responsibilities of this job will include lead generation & follow-up, customer service, and technical support in helping new carriers with any issues. This is not a micro-managed position and successful applicants will enjoy a bit of autonomy in how they conduct their business. "What's in it for me?" This position will start without compensation. Every member of the RUFFNEK Radio team is here for the love of music and radio, we're all enjoying this project without compensation. HOWEVER; RNRs operating expenses are very low. If as part of our carrier expansion we begin to draw in Ad revenue & donations and those low operating expenses are covered, the management will immediately distribute all profits back to the small staff pool as compensation for their efforts on a monthly basis. Bottom Line, Up Front: We need someone who will take an interest in seeing this brand expand, has the knowledge and skill to make that happen, who enjoys the prospect of taking a radio station from a simple hobby station to a profitable venture. If you're interested in what we're doing and would like to further discuss it, IM me inworld (kiran.streamweaver) or e-mail me at kiran.steamweaver@gmail.com, thanks for your time!
  3. The PikkuBot typically rejects any commands not issued by it's master, but I'll blank 'em all the same. Thanks!
  4. I figured it out! Partly... My script was already defining llDetectedKey as "detected" else if (message == "Request CS") llInstantMessage( (key)"00000000-0000-0000-0000-000000000000", "@00000000-0000-0000-0000-000000000000 ATTENTION RUFFNEK Staff! I have received a request for Customer Support! Please contact this user immediately:" + (string)detected); Returns: ATTENTION RUFFNEK Staff! I have received a request for Customer Support! Please contact this user immediately:00000000-0000-0000-0000-000000000000 It returns only the UUID and doesn't transl- wait... ... GOT IT! else if (message == "Request CS") llInstantMessage( (key)"00000000-0000-0000-0000-000000000000", "@00000000-0000-0000-0000-000000000000 ATTENTION RUFFNEK Staff! I have received a request for Customer Support! Please contact this user immediately: secondlife:///app/agent/" + (string)detected + "/about") Returns a clickable profile link within the viewer! WIN!
  5. The problem must be that my script isn't capturing the UUID in the touch event, maybe?
  6. Thank you so much for your help up to this point. else if (message == "Request CS") llInstantMessage( (key)" ", "@ ATTENTION RUFFNEK Staff! I have received a request for Customer Support! Please contact this user immediately:" + (string)llDetectedKey(0) ); Returns the same result. ATTENTION RUFFNEK Staff! I have received a request for Customer Support! Please contact this user immediately:00000000-0000-0000-0000-000000000000
  7. else if (message == "Request CS") llInstantMessage( (key)"00000000-0000-0000-0000-000000000000", "@00000000-0000-0000-0000-000000000000 ATTENTION RUFFNEK Staff! I have received a request for Customer Support! Please contact this user immediately:" + llDetectedKey(0)); In the script editor I get (20, 249) : ERROR : Type mismatch Entire script: integer CHANNEL = -21342; // dialog channellist MENU_MAIN =["Info NC", "Request CS", "Group Invite"]; // the main menukey detected;integer handle;default { touch_start(integer total_number) { detected = llDetectedKey(0); handle = llListen(CHANNEL, "", detected, ""); // listen for dialog answers (from multiple users) llDialog(detected, "Welcome to RUFFNEK Radio!", MENU_MAIN, CHANNEL); // present dialog on click } listen(integer channel, string name, key id, string message) { if (llListFindList(MENU_MAIN,[message]) != -1) // verify dialog choice { if (message == "Info NC") llGiveInventory(detected, "RUFFNEK Radio"); else if (message == "Group Invite") llInstantMessage( (key)"00000000-0000-0000-0000-000000000000", "/00000000-0000-0000-0000-000000000000 I got the message!" + llDetectedName(0)); // Ignore this. Waiting to fix the CS before I fix this crap. else if (message == "Request CS") llInstantMessage( (key)"00000000-0000-0000-0000-000000000000", "@00000000-0000-0000-0000-000000000000 ATTENTION RUFFNEK Staff! I have received a request for Customer Support! Please contact this user immediately:" + llDetectedKey(0)); } else llSay(0, name + " picked invalid option '" + llToLower(message) + "'."); // not a valid dialog choice llListenRemove(handle); }}
  8. I think the hang-up is the specific format the message needs to be in to the PikkuBot. I'm formatting the message correctly in string text but if I try to punch in llDetectedName, it doesn't actually return the name in the IM to the bot, and the bot outputs "llDetectedName(0)" rather than the name. else if (message == "Request CS") llInstantMessage( (key)"00000000-0000-0000-0000-000000000000", "@00000000-0000-0000-0000-000000000000 ATTENTION RUFFNEK Staff! I have received a request for Customer Support! Please contact this user immediately: llDetectedName(0)"); However, if I close the quotations on the string, I get a syntax error. else if (message == "Request CS") llInstantMessage( (key)"00000000-0000-0000-0000-000000000000", "@00000000-0000-0000-0000-000000000000 ATTENTION RUFFNEK Staff! I have received a request for Customer Support! Please contact this user immediately:" llDetectedName(0)); BUT WAIT WAIT WAIT! Understanding I'm probably an idiot, I tried by throwing a + in there. else if (message == "Request CS") llInstantMessage( (key)"00000000-0000-0000-0000-000000000000", "@00000000-0000-0000-0000-000000000000 ATTENTION RUFFNEK Staff! I have received a request for Customer Support! Please contact this user immediately:" + llDetectedName(0)); And the Bot outputs: " ATTENTION RUFFNEK Staff! I have received a request for Customer Support! Please contact this user immediately:00000000-0000-0000-0000-000000000000" So that puts me closer than I've been yet. Now to figure out why it's returning all zeros rather than an actual UUID
  9. Hey Rolig! Been awhile! =) So my basic intention is to, at the end of the day, have a button on the dialog menu that, upon pressing a button it sends an IM to a Bot which will relay the message along to where it needs to go, in this case a group chat. The syntax the PikkuBot understands to chat with a group, for example, is receiving an IM that states @[GroupUUID] [Message to send] Where I'm stuck is figuring out how to make the menu dialog option inject the name (preferrably clickable to their profile, but either way) of the avatar pressing the button into the llInstantMessage string being sent to the Bot.
  10. By "URL" I was referring to the Avatar name that pops up in chat that you can click to bring up that Avatar's profile within the viewer. I understand that the command I'm looking for has something to do with the multiple commands that draw the UUID. Such as llKey2Name I'm just held up on actually pulling that info and injecting it into an llInstantMessage string That the bot can understand. I'm not going to waste "a friendly professional in my neighborhood"s time, or mine waiting on them, for something that simple. The reason I'm even asking is because I'm interested in learning and coding it myself.
  11. So I'm programming a customer support and advertising board for my radio station and have gotten to the point that I'm stuck on getting this command properly translated. The endstate I'm looking for is this: This dialog will be using a PikkuBot as a go-between to communicate with The radio station staff group specifically for the purpose of requesting Customer Support. In practice, it will be: User touches boardBoard provides menuUser selects "Contact CS"Board collects UUID, then sends 3 messages to PikkuBotPikkuBot relays 1st message, which goes directly to the Staff Group chat, stating a request for CS has been placed, gives the Avatar name that requested.PikkuBot relays 2nd message, IMing requesting avatar directly that it is attempting to contact Customer Support and if no response is received please try again later.PikkuBot relays 3rd message, directly to the owner, me, stating "CS Request: (avatar name)" So I can perform a follow-up later. (This could be replaced by the board contacting me directly?) Currently I'm using llInstantMessage to supply commands to the Bot. My command looks something like: else if (message == "Request CS") llInstantMessage( (key)"PikkuBotUUID", "@Staff group UUID" ATTENTION RUFFNEK Staff! I have received a request for Customer Support! Please contact this user immediately:" ); After a few hours of head scratching I'm at a complete loss as to how to pull the UUID of the avtar that touched the board, ideally translate that UUID into a URL, and inject that URL into the string being sent to the PikkuBot to be relayed to the group chat. The IM that needs to be sent to the PikkuBot needs to be in the format of "@(GroupUUID) (Message)" Failing the URL bit I would settle for just the name itself being transmitted, I'm not afraid of the search bar. But can this be done at all? I think If I can get some pointers on how to get the first message relay formatted correctly I can apply that to the other two on my own.
  12. Here at Club Silver Moon, we’d like to say with confidence that we’re doing very well for ourselves. That said, as with any successful business, there are always opportunities to improve. Here’s your opportunity to help us with that! Silver Moon Operations Management is in the market for a dedicated, social SL regular with previous SL-related sales experience to become a Sales Manager for our Mall and special vendors. Responsibilities include: Monitoring of SIM Stall and Ad Board rentals and troubleshooting of Vendor and Patron issues.Regular, detailed reports to Operations Management with immediate communication of any major issues.Advertising, negotiating, and closing rental contracts with vendorsManagement of commission vendors and VIP vendors.Assisting Patrons of the mall and club with finding the products they seek within our mall.Suggestion and implementation of special promos to drive interest in renting with our brand.Requirements of the job are: Verifiable experience in SL-based Sales a mustSelf-starter, problem solverPrevious experience with CasperLet a plusPrevious experience opening new sales locations a huge plusNobody works for free. We understand that. At Club Silver Moon we’re intending to offer a negotiable compensation package that will start as a commission-paid position and advance to be included within our “Success Sharing” Package. This Sales Manager has every potential to be instrumental in our brand’s success and is one of the few positions with an unlimited earning potential. This is not a micromanaged position, Operations Management at The Silver Moon is seeking candidates who are self-starters, who are not afraid of a little autonomy when conducting business under the banner of The Silver Moon. You will essentially "own" this aspect of the business and graded of the results you achieve. Interested? e-mail kiran.steamweaver@gmail.com and include your past experiences and qualifications and a brief explanation as to what sets you apart from other applicants and why you believe in the success of Silver Moon. We look forward to hearing from you!
  13. We have re-opened this position and are again on the lookout for a self-starter who's not afraid of a little autonomy in their conduct of everyday business for The Silver Moon. This is not a micromanaged position. Successful applicants will have ownership of the business and will actively seek out results.
  14. Here at Club Silver Moon, we’d like to say with confidence that we’re doing very well for ourselves. That said, as with any successful business, there are always opportunities to improve. Here’s your opportunity to help us with that! Silver Moon Operations Management is in the market for a dedicated, social SL regular with previous SL-related sales experience to become a Sales Manager for our Mall and special vendors. Responsibilities include: Monitoring of SIM Stall and Ad Board rentals and troubleshooting of Vendor and Patron issues.Regular, detailed reports to Operations Management with immediate communication of any major issues.Advertising, negotiating, and closing rental contracts with vendorsManagement of commission vendors and VIP vendors.Assisting Patrons of the mall and club with finding the products they seek within our mall.Suggestion and implementation of special promos to drive interest in renting with our brand.Requirements of the job are: Verifiable experience in SL-based Sales a mustSelf-starter, problem solverPrevious experience with CasperLet a plusPrevious experience opening new sales locations a huge plusNobody works for free. We understand that. At Club Silver Moon we’re intending to offer a negotiable compensation package that will start as a commission-paid position and advance to be included within our “Success Sharing” Package. This Sales Manager has every potential to be instrumental in our brand’s success and is one of the few positions with an unlimited earning potential. Interested? e-mail kiran.steamweaver@gmail.com and include a Resume and a brief explanation as to what sets you apart from other applicants and why you believe in the success of Silver Moon. We look forward to hearing from you!
  15. See our ad here! The Silver Moon, a brand new club situated on a scenic corner 1/4th SIM is seeking evening and weekend DJs and hosts to help bring in interest and patrons to our venue. Qualifications include: For DJs Previous experience in DJing SL Clubs highly preferredQuality Broadcasting Software a mustExcellent attitude (be an entertainer at heart)Extensive, high-quality collection of your chosen genreWillingness to support the venue and brandFor Hosts Extrovert, always interested in talking and meeting new peopleFrequent walks of our mall, to suggest products to patrons, some background in sales a definite plusA knack for knowing the right thing to say, making patrons feel welcome and at homeA general distaste for gesture-driven hosting!Currently our staff will be paid by tips with a 15% split to the venue in order to defer operational expense. We have a special program that will soon be placed in effect known as "Success Sharing" which will provide payouts to all staff based upon success of the club month over month. More information can be found on our website. We have an immediate need to fill in these slots and bring interest to our venue, if your a great DJ, or host, with a following, and are looking for a new place to be, give us more than just a glance. Employment information and application forms can be found by visitng our blog. Club Silver Moon on Wordpress All questions please direct to Staffing Manager RavenSkye Waverider or Operations Manager Kiran Steamweaver. We hope to hear from you soon!
  16. Making it our business to blow away your expectations of SL Entertainment. Welcome to the Silver Moon Club & Mall Looking for someplace new to hang out and relax? Tired of being boxed in with whacky textures, freaky light shows, and no light whatsoever hurting your eyes? Ready for a breath of fresh air? So were we. The Silver Moon, situated on a scenic corner 1/4th sim, is aiming to be your number one place to attend, when it comes to finding a relaxing hangout, exciting shopping, and, always, great music and entertainment. We're sporting some seriously hot names in SL DJs. DJ Kiran, a high-energy Modern Rock Hits DJ DJ RavenSkye, a "jack of all trades" when it comes to Rock, with a heart for independent bands. DJ Dystopic, a professional Electronica DJ with a taste for the apocalyptic With more coming in by the day! Don't let our demographics deter you. While the Silver Moon is Furry owned and operated, We are here for a love of entertainment and music, not a subculture, all are welcome within our Moderate-themed property! We just started up, but we've got the talent, and some kick-ass radio stations to tune in to while our Djs are off the air. Wether you just need a place to chill out and socialize, or want to listen to some seriously rockin' music, The Silver Moon has you in it's sights. Come join us today, and see for yourself what the new face of SL Entertainment is all about. The Silver Moon at Carson Looking for Work? The Silver Moon is serious as a heart attack of it's claims to blow away expectations of an SL entertainment experience, our DJs must be professional, with a passion for their genre, and entertainers at heart, our Hosts must be extroverts and at ease with striking up conversation with strangers, we are not your typical club with a DJ that is a "jukebox with a heartbeat" and barely-audible voiceovers, and gesture-driven hosting. Our unique aspect is our professionalism, and amazing service. If you have a passion for entertainment, and love to be around others, feel free to check out our blog and job opportunities page to find out more, and apply. Club Silver Moon on Wordpress
  17. Hello builders! In building a club recently I've run into a aesthetic snag. I'm building almost everything in this club from the ground up as an exercise in expanding my own artisting capabilities within the second life program (I just learned about select face texturing. JOY!) Anyway, My problem is, I have build a very eye-catching bar stool, but I'm having trouble getting it to cooperate. I'm curious as to how I can set the "front" of the bar stool so that the character faces the "right" direction regardless of what direction they approach and sit on the stool from, A bar stool isn't very effective if the patron faces away from the bar or whatever direction every time they left-clik-to-sit. Is this a scripting issue or is there a settuing I'm missing somewhere during the construction? I'm building the stool from a torus shape, if that helps.
  18. Looks like that'll fix my problem for the time being. Thanks!
  19. I'm using a DSD Wolf Avatar and have elected to go with the Neurolab Cyber eyes, only problem, with both these, and the stock DSD eyes, is that when my character looks left and right, which is quite frequently as my mouse moves around the screen, the eyes rotate to the extent that the irises disappear into the sides of the face, leaving only the whites showing. Is there a way to set limits to their rotation to prevent this from happening?
×
×
  • Create New...