Difference between revisions of "CHANGED ALLOWED DROP/ja"

From Second Life Wiki
Jump to navigation Jump to search
(New page: {{LSL Constant/ja |name=CHANGED_ALLOWED_DROP |type=integer |value={{LSL Hex|0x40}} |desc=オーナー以外のユーザ(もしくはオーナがオブジェクトが編集不可能な)...)
 
m
Line 3: Line 3:
|type=integer
|type=integer
|value={{LSL Hex|0x40}}
|value={{LSL Hex|0x40}}
|desc=オーナー以外のユーザ(もしくはオーナがオブジェクトが編集不可能な)がプリム内に追加しました。これは[[llAllowInventoryDrop/ja|llAllowInventoryDrop]]が可能になっているときのみ重要です。
|desc=オーナー以外のユーザ(もしくはオーナがオブジェクトが編集不可能な)がプリム内に追加しました。
これは[[llAllowInventoryDrop/ja|llAllowInventoryDrop]]が可能になっているときのみ重要です。
|examples=
|examples=
<pre>
<pre>

Revision as of 20:31, 1 January 2008

解説

定数: integer CHANGED_ALLOWED_DROP = 0x40;

integer 定数 CHANGED_ALLOWED_DROP の値は 0x40 です。

オーナー以外のユーザ(もしくはオーナがオブジェクトが編集不可能な)がプリム内に追加しました。 これはllAllowInventoryDropが可能になっているときのみ重要です。

関連記事

定数

•  CHANGED_INVENTORY

関数

•  llAllowInventoryDrop

イベント

•  changed

サンプル

default
{
    changed(integer change)
    {
        if (change & CHANGED_ALLOWED_DROP) //note that it's & and not &&... it's bitwise!
        {
            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.");
        }
    }
}

特記事項

この翻訳は 原文 と比べて古いですか?間違いがありますか?読みにくいですか?みんなで 修正 していきましょう! (手順はこちら)