CHANGED ALLOWED DROP/de
Jump to navigation
Jump to search
LSL Portal | Funktionen | Ereignisse | Typen | Konstanten | Datenflusskontrolle | Script Sammlung | Tutorien |
Beschreibung
Konstante: integer CHANGED_ALLOWED_DROP = 0x40;Die integer Konstante CHANGED_ALLOWED_DROP hat den Wert 0x40
Ein anderer User als der Bestitzer (oder der Besitzer selbst, wenn der Gegenstand nicht modifizierbar ist) hat etwas zum Inventar des Prims hinzugefügt. Dies ist nur möglich, wenn es per llAllowInventoryDrop erlaubt wurde.
Ähnliche Artikel
Beispiele
<lsl> default {
changed(integer change) { if (change & CHANGED_ALLOWED_DROP) //Beachte, es ist & und nicht &&... bitweise! { llOwnerSay("The inventory has changed as a result of a user without mod permissions dropping an item on the prim and it being allowed by the script."); } }
} </lsl>