Jump to content

Kimpa Tammas

Resident
  • Posts

    21
  • Joined

  • Last visited

Posts posted by Kimpa Tammas

  1. 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
        }
    }


     

  2. 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.

    • Like 1
  3. 6 hours ago, rasterscan said:

    Could someone enlighten me what the difference between associated and unassociated items is ?

    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.

  4. 1 hour ago, Vivienne Schell said:

    Apparently, any copyable sales "package/box" containing one - or more -"no-copy"- item(s) (script, object, whatsoever) is affected by the massive bug they generated. In such a case it´s very likely that customers did not  get notified at all - and the entire "box/container" got wiped completely - along with the associated listing page...

    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.

  5. I updated today one of my product on the marketplace and I can't publish it because there are a "forbidden text" in the description field. However, the error message don't display this forbidden text. This is the product description:

    KTC Spy camera is an avatars detector which may be installed everywhere in your house, office, store, ATM... It records detected avatar names with date and time detection. So, you can be notified by email or instant message for each detection following if you are off-line or on-line. If you don't be alerted, you can see the detections list directly from the camera.

    Avatars are detected only once. When an avatar is detected for the first time, it's recorded. If this same avatar is detected again later, it's not recorded, unless that the detections list has been deleted in the meantime.

    ➨ NOTE: this product is intended for your personal house or small business. If you want detect a large number of avatars, use the product "KTC Spy camera HD".

    Features
    - can store up to 640 detections
    - configuration by menu (no notecard)
    - detection radius between 1 and 96 meters
    - directional detection of 180°
    - interval detection every 5 seconds
    - can be hidden
    - GMT time zone (-12 to +13 hours)
    - date format (month/day or day/month)
    - automatic Daylight Saving Time (DST) for all countries*
    - optional e-mail alert or instant message for each detection
    - optional sound when new avatar detection
    - camera on/off
    - displaying detections list locally
    - LED status
    - manual reset
    - automatic detections list reset when low memory
    - free and unlimited updates

    Properties
    - 1 prim (mesh)
    - no modify
    - no copy
    - transfer
    - 4 scripts (160 KB of memory)

    * Except: Antarctica, Australia, Brazil, Chile, Fiji, Namibia, New Zealand, Paraguay, Samoa and Uruguay

    Note that it's my first product on the marketplace since 2007. Someone can help me?

×
×
  • Create New...