Jump to content

Kiran Steamweaver

Resident
  • Posts

    21
  • Joined

  • Last visited

Reputation

1 Neutral

Recent Profile Visitors

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

  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!
×
×
  • Create New...