LlAllowInventoryDrop/ja
From Second Life Wiki
メインページ > LlAllowInventoryDrop > LlAllowInventoryDrop/ja
警告
- スクリプトは、llAllowInventoryDropステートに関係なく、プリムへエージェントよりドロップされることはありません。(ユーザが権限を変更することなく、プリムにインベントリドロップを許可するスクリプトをドロップするのを試す場合、プリムは"これを編集する権限はありません"と叫ぶでしょう)
- 絵あるいはテクスチャをアップロードするには、[ctrl]を押したままプリムにドラッグして入れます。
例
integer allow; default { touch_start(integer num) { llAllowInventoryDrop(allow = !allow); llOwnerSay("llAllowInventoryDrop == "+llList2String(["FALSE","TRUE"],allow)); } 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."); } } }
この項目はあなたにとって参考にならない項目ですか?もしかしたらLSL Wikiの関連した項目が参考になるかもしれません。

