LlGetParcelMaxPrims/fr
From Second Life Wiki
| Portail LSL | | | Fonctions | | | Évènements | | | Types | | | Opérateurs | | | Constantes | | | Contrôle d'exécution | | | Bibliothèque de scripts | | | Tutoriels |
Exemples
// Code initialement écrit par by Anthony Reisman (aka Anthony Bundy). // Libre d’utilisation et de distribution default { state_entry() { } touch_start(integer total_number) { llSay(0, "Il y a " + (string)llGetParcelPrimCount(llGetPos(), PARCEL_COUNT_TOTAL, FALSE) +" sur " +(string)llGetParcelMaxPrims(llGetPos(), FALSE) + " prims possibles sur cette parcelle"); } }

