Jump to content

Kimpa Tammas

Resident
  • Posts

    21
  • Joined

  • Last visited

Reputation

22 Excellent

Recent Profile Visitors

418 profile views
  1. Check you the SL Wiki: https://wiki.secondlife.com/wiki/Vendor_systems_comparison
  2. Maybe this vendor system: https://marketplace.secondlife.com/p/KTC-NSS/9428002 and this one as rentals management: https://marketplace.secondlife.com/p/KTC-RMS/6455098
  3. Maybe this one: https://marketplace.secondlife.com/p/KTC-Club-tip-jar/7840936
  4. KTC recherche un bêta-testeur motivé et sérieux pour système de vente en réseau non interfacé avec le Web. Plus d'informations sur le blog de KTC : https://kimpatammascreations.blogspot.com/2023/06/ktc-recherche-un-beta-testeur.html.
  5. Maybe this one: https://marketplace.secondlife.com/p/KTC-Group-joiner/444938
  6. This means date is not set and the default date is the Jan 1, 1970, the beginning of the Unix operating system epoch: https://en.wikipedia.org/wiki/Unix_time. Unix time is a measure in seconds used in computing like in LSL scripts.
  7. If you just trim floating part of a number, you can use a snippet like this: float floatNumber = 74.89450; default { touch_start(integer total_number) { list number = llParseString2List((string)floatNumber, ["."], []); // Extract "floatNumber" in 2 parts string integerPart = llList2String(number, 0); // 74 string floatPart = llList2String(number, 1); // 89450 integer n = 2; // Number of decimals llOwnerSay(integerPart + "." + llGetSubString(floatPart, 0, n - 1)); // Output: 74.89 } }
  8. Contest boards use commonly textures to display names with ASCII characters like A-Z, a-Z, numbers and some punctuation. Display names can include Unicode characters. Unicode character map contains basic letters, but also lot of other symbols, alphabet, etc. An Unicode font can contains up to 131,074 characters. So, it's not possible with textures to add all possible characters.
  9. Second Life Time is the Pacific Standard Time (UTC -9) or Pacific Daylight Time (for summer time). PDT occurs the 2nd Sunday of March and ends the 1st Sunday of November.
  10. Victor Vasarely (French-Hungarian artist, 1906-1997). Blue kinetic layout on black background (About 1975).
  11. When an item is associated, a listing has been already created for the item (with a number). You can see this number (ID) after the item name in your Marketplace listings (Viewer side). This number appear too in the item URL (e.g. https://marketplace.secondlife.com/p/KTC-Script-memory-meter/2973346). It is possible to associate an unassociated item manually if you know this number.
  12. In my case, I have unassociated items affected with full permissions like textures and notecards, but also copy only items. My no copy items are not affected.
  13. A HUD is also available here: https://marketplace.secondlife.com/p/KTC-SL-Connected-users-HUD/8623119
×
×
  • Create New...