Jump to content

Niall Braveheart

Resident
  • Posts

    160
  • Joined

  • Last visited

Everything posted by Niall Braveheart

  1. The data as sent as part of the request string I believe. The following links might provide you with more detailed information http://community.secondlife.com/t5/Merchants/Setting-up-Marketplace-to-use-ANS-and-log-to-an-external/td-p/1107297 Edited to remove second link as it was already included in the OP
  2. Incidentally, it's Linden Lab, not Linden Labs. Looking at the footer of these forums and the main website, it would appear it's now Linden Research, although the site your taken to still says Linden Lab, so who knows!!
  3. Well the post says probably on Friday so even if it doesn't happen he's made sure he has a get out.
  4. 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; }}}}
  5. If thats all you use USERID for then define it as a global variable (make sure its a key) and set it in the listen event USERID = id
  6. 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() )
  7. 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,
  8. You could avoid the loop by using llGetInventoryType as you already know the name of the notecard you want if(llGetInventoryType(llDetectedName(0) ) == INVENTORY_NOTECARD) { //do stuff }
  9. 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.
  10. 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.
  11. 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.
  12. Lists and other variables will survive a sim restart, so should be fine for what you want.
  13. The Merchant Outbox can be found under the Me menu A guide to Selling in the Market Place which will hopefully help you list your products can be found at http://community.secondlife.com/t5/English-Knowledge-Base/Selling-in-the-Marketplace/ta-p/700193
  14. Opps, I didn't read properly and realise the two sensors were different.
  15. Not sure that it's the cause of your problems, but you only need the llSensorRepeat once, (in the touch event is fine) It will continuue scanning every 5 seconds until it is stopped with llSensorRemove
  16. 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
  17. If theres nothing else in the area where the room is you could just parcel it off and require users to buy a visitor pass in the land settings for the parcel. (Assuming you have the necessary land rights for this of course) I believe you can even specify how long the pass is valid for
  18. Great news, I know many merchants have been waiting for this before starting to move to DD. Thank you for taking the time and effort to document this so clearly Darrius.
  19. Looks like you've run into one of these issues WEB-4587: incorrect images are being displayed on Marketplace listings. WEB-4601: related listings from other Merchants’ stores are appearing on some listings.
  20. 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
  21. 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.
  22. Has it ever worked? I have noticed that sometimes I've needed to put each test in the while statement in brackets, so while (found == FALSE && i < total_number) becomes while ( ( found == FALSE ) && ( i < total_number ) )
  23. 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.
  24. Oh and just for information: this feature is already implemented and shipped Really ... They still have time to pull the plug if they want to, of course someone has to eat humble pie and wash the egg off their face if they do, but it's still not too late.
  25. 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...