Jump to content

Niall Braveheart

Resident
  • Posts

    160
  • Joined

  • Last visited

Everything posted by Niall Braveheart

  1. Don't think that will work, I believe Offline IMs now only go to verified email addresses! A verified email address is required in order to: Receive offline instant messages Receive offline friend requests Participate in land auctions From the knowledgebase
  2. The same object offset from the cuboid in the Z direction as thats the one you want to make appear larger , but a different surface/face so you can place a 100% transparent texture on it so it doesn't show.
  3. Rez a cube x= 0.05 y= 0.01 z=0.01 Then set slice to Beginning 0.0 End = 0.1 Alternatively if doing it with mesh, you need to place a small invisible triangle to "trick" the system to thinking it's larger, similar to the trick used so mesh doors pivot arounf their edge https://community.secondlife.com/forums/topic/338230-options-for-scripting-doors/
  4. integer ichan = (integer)chan; should do it or possibly integer ichan = (integer)llGetObjectDesc(); (can't remember off the top of my head if you can directly cast the result of a function to another datatype)
  5. If it gave you a message about being spammed with urls, is it possible the object has been somehow blocked from sending any more dialog/popups to open the url. Maybe try it in a new cube or in a different region.
  6. After the line llSetText("Mere's Tipjar!", <1,1,1>,1); //Change the hovering text here Add llDialog ( llGetOwner(), name + " tipped you " + (string)amount, [] , -9168 ); Change the -9168 to some other randon nnegative integer
  7. There have been a few Microsoft/Google/AOL/{mega corporation of your choice} is going to buy Linden Lab stories too
  8. One other point which I haven't seen mentioned, is that a rez box won't work well with no-mod items. Typically they require dropping a script in the object to be packaged in the box to record its positon relative to the rez box, and then move it to the correct position when it is rezzed again. You won't be able to do this with no-mod items If you put the items in the box without having added the script and recording their location, then the box will just rez them at the position the box is at and leave them there, you will need to position them manually yourself.
  9. The code might not allow you to do exactly what you/we want, with variants/demos but there I'm sure there are other things that can be done to make things better. For example a check box similar to the permissions one to indicate if a listing is a demo or not , users could then filter on this in a similar way to how they are already able to filter for specific permissions.
  10. Highly desirable attractive waterfront parcel available to rent, 4976 sqm 1708 prims, with unnrestricted access to open sailable water. Come and have a look you won't be dissapointed, keep the house we already have there or use your own the choice is yours. Click here to visit this parcel Enjoy the stunning views Also access to shared facilities and activities including club/hangout area, jetski's, hangliding and rowing boats. If you have any queries or questions then please Contact Theresa Manning or Niall Braveheart. ~Sweet Harmony Rentals ~ more then prims and meters ....it is a life style.~ Click here to visit the Information Center
  11. Possibly related to https://jira.secondlife.com/browse/BUG-100737 The which will require a change to the script as per
  12. Looks like that timestamp is UTC/GMT which is 8 hours ahead of PST/SL time, 7:03 UTC would be 11:03 SL Time
  13. There was also this one http://www.3greeneggs.com/autoscript/
  14. Try changing the change event to changed(integer change) { if (change & CHANGED_ALLOWED_DROP) { state test; } } Also in the test state you still have the inventory index number issue raised by arton
  15. Try llSetText((string)( 10 -Count) + " Seconds!\n\n ", <1,0,0>, 1.0);
  16. Looks like your trying to count up to 10 seconds In which case I would use llResetTime and LLGetTime integer Count;default{ state_entry() { llResetTime(); llSetTimerEvent(0.1); } timer() { Count = (integer)llGetTime(); if ( Count <= 10) { llSetText((string)Count + " Seconds!\n\n ", <1,0,0>, 1.0); } else { llSetTimerEvent(0.0); } }} (Edited to fix syntax errors and typos)
  17. It looks like they've factored the US$ 0.40 transaction charge into the estimated exchange rate. As this is a greater percentage of the lower purchase, it has a bigger effect on the overall exhange rate for that transaction
  18. We have something for everyone at Sweet Harmony Rentals. Waterfront ParcelsRoadside ParcelsIsland ParcelsUse one of our homes or use your own the choice is yours Parcels come with control of Security, Privacy and Media land settings All our renters have access to a number of community features including Dance AreaCuddle IslandJetski RidesHanglidingand more ....We also have a number of Large and Small skyboxes available. Visit our information center to see all our currently available properties, and find your ideal home today. http://maps.secondlife.com/secondlife/Peach/56/185/22 Please contact Theresa Manning, Niall Braveheart or one of our managers listed at the information center if you need any further details or assistance. ~ Sweet Harmony Rentals ~ "More than just meters and prims ... it's a lifestyle"
  19. Put it in your profile, see if you can get some friends to too Spend time on making your listings properly so they they rank well in search If you have an inworld presence place some sort of sign in your store Provide good customer support, so your customers will be happy to recommend you to others.
  20. Isn't there one in the developer kit available from their store inworld?
  21. Spacious roadside store, ideal for a new or expanding business 16x28m with 225 prims This store is on it's own parcel so you change the name to match your store/brand name ,choose your own background audio and control your security. For additional 30L$ a week (as charged by Linden Labs) you can even have your store listed in search. We can also add your logo to the store window so it's clear for all to see. All this for 450L$/week, what are you waiting for start or grow your business now. Come check it out at http://maps.secondlife.com/secondlife/Peach/182/153/34  For more information contact Theresa Manning, Niall Braveheart or one of our managers, who are listed at our information center. ~ Sweet Harmony Rentals ~ "More than just meters and prims ... it's a lifestyle" Visit our information center to see all our currently available properties. http://maps.secondlife.com/secondlife/Peach/56/185/22
  22. Just set the price on the box, then the buyer buys the box and will get either a copy of the box including it's contents or a folder containing the contents depending on which option you selected when you set it for sale.
  23. Have you tried contacting whoever you purchased the bot software from, they should be able to tell you what commands to send to the bot to do this (assuming the bot has that functionality built in)
  24. Assuming the objects are in the same region as the prim with the menu script, then use llRegionSay in the menu script to send the hid/show command and a listener script in the remote prims to show/hide them depending on the command received.
×
×
  • Create New...