CHANGED ALLOWED DROP/de

From Second Life Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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

Konstanten

•  CHANGED_INVENTORY

Funktionen

•  llAllowInventoryDrop

Ereignisse

•  changed

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>

Deep Notes

Nach JIRA-Issues suchen, die sich hierauf beziehen

Signature

integer CHANGED_ALLOWED_DROP = 0x40;