Jump to content

Niall Braveheart

Resident
  • Posts

    160
  • Joined

  • Last visited

Posts posted by Niall Braveheart

  1. Ah ok ....

    Well scanning the code quickly, the only time the USERID is in the body of the message will be when it's recieved from the other script, and it appears that only happens when thesecuruty menu requested, so maybe this will work

    listen(integer channel, string name, key id, string message)    {        list data = llParseStringKeepNulls(message, ["|"], []);        message = llList2String(data, 0);        USERID = id;        llSay(0,(string)USERID);        llSay(0,(string)llGetOwner());        if (channel == secretchannel) {        if (message == "requestecurity")         {                         USERID = (key)llList2String(data, 1);            llSetObjectName("SECURITY MENU");            llDialog(USERID,"\nSECURITY MENU:\n\n* you have 60 seconds to make a choice.\n* issue cmds within chatrange.\n* if only 1 person nearby they autotargetted.\n* doesnt work on yourself",order_buttons(buttons),secretchannel);            llSetObjectName(housename);          //  llSetTimerEvent(60); ALWAYS LISTENING ANYWAY
    } else if(message == "Eject") { state eject; } else if(message == "TP Home") { state tp_home; } else if(message == "Unsit") { state unsit; } else if(message == "Cancel") { state cancel; } else if(message == "Ban" && id == llGetowner() ) { state ban; } else if(message == "Ban" && id != llGetOwner() ) { llSay(0,(string)USERID); llSetObjectName("SECURITY"); llSay(0,"sorry this is a owner only function."); llSetObjectName(housename); state default; }}}}

     

     

     

  2. If it  only fails on the Ban option, then it might be because llGetOwner() returns a key and USERID is a string, so your comparing two different data types, which can cause problems.

    You're you're just trying to check that the listen event was triggered by the owner, then you can compare the id passed to the event to llGetOwner

     else if(message == "Ban" && id == llGetOwner() ) { state ban; }  else if(message == "Ban" && id !=  llGetOwner() )

     

     

     

     

  3. There are applications for Iphone/ipad and andriod devices, have a look ot the third party viewer list http://wiki.secondlife.com/wiki/Third_Party_Viewer_Directory#Viewer_list

    Also as Lindal has already pointed out you can reply to offline messages using email (assuming you heve them set to go to email when you're offline).  And I'm pretty sure the 25 message cap doesn't apply to messages sent to email, all offline messages are sent to email, however you will only see the first 25 the next time you login to secondlife,

  4. Kenbro

    The magic box status page stil uses the old xstreet system, so if your items were added to the magic box after the switch from xstreet to MP then they will show as unassociated, as they were never listed in xstreet, only on the marketplace.

    As long as your listings in the marketplace show the correct item associated with them then theres no need to worry.

  5. Put a listener script in object a

    Have the prim say something to the AV, and get the object to respond when it hears that message

    If the big object gets the expected response then trigger tha animation.

     

  6. Been an odd month for me but kind of in a good way ....

    I usually only get 2-3 sales a week, but this month one of my items sold daily for the first 15 days, but since the 15th of the month I've only had 2 sales in total!!

    The product hat sold well is a welcome sign/greeter so can't really put the sudden popularity down to it being a seasonable item.

  7. I think we'll see both Queued and Aborted, depending on the time from when the order was placed.

    I had one sale the 14th that was still sitting Queued on the 15th, but had changed to Aborted by this morning (16th), so both states still appear to exist atm.

    The item in question is a DD item, so no magic box issues to blame.

    I only found one other previous aborted order, and that was way back in Jan 2011

     

     

  8. That would be really great, the existing tutorial was really good, and simple to follow.

    Is there any infomation available on the DD ANS and what might need changing.

    I had a quick search nad all I found so far was

    Automated Notification System (ANS): ANS allows you to integrate Marketplace notifications with your back-end operations either via your website or scripted object in Second Life. It will be replaced with a similar functionality in Direct Delivery to address the same goals and will use the same format as is currently in use to ease migration. 

     from the Direct Delivery FAQ

  9. Was surprised to see an end date for the use of magic boxes set right at the release of DD, I would have expected LL to wait until DD was stable and any initial bugs/issues resolved.

     

    Here is the planned migration schedule in 2012:
     •April 2 through 13, 2012: Inworld Q&A sessions on using and migrating to Direct Delivery
     •April 18, 2012: All listings priced L$10 and lower must use Direct Delivery
     •May 16, 2012: Magic Boxes no longer allowed for any Marketplace listing

     Not a big problem for me with my 120ish items, but curious what other merchants feeling are on this time frame.

     

  10. AS of TUESDAY & WEDNESDAY friend Color Tagging and Viewer Tagging would be broken.  Its in the audio.

     I can see how they could stop the viewer tagging, by supressing whatever information they are providing on what viewers are being used,

    I can't really see how they can stop the Friend Colour tagging.,,

    The viewer knows who's near you and the viewer knows who's on your friends list ... so sure it's wouldn't be difficult for the viewer to reender the name tag in he appropiate colour depending on whether the AV is a friend or not.

    And if an AV is in view whether they've chosen to hide their online status or not is pretty much irrelevant.

     

     

  11. If one has to ask "what problem are you trying to solve". Then honestly I believe a server may additionally not be what you are looking for.

    Not really, the question Sassy is asking is what business problem are you trying to solve for your customers, as that is the selling point for your product, whether it is a server type product or stand alone doesnt matter what is important is does it do what is needed.

     

×
×
  • Create New...