Difference between revisions of "LlIsFriend/ja"
Jump to navigation
Jump to search
(Created page with "{{LSL Function/ja |inject-2={{LSL Function/uuid/ja|uuid|sim=*}} |func=llIsFriend |sort=IsFriend |func_id=0|func_sleep=0.0|func_energy=10.0 |return_type=integer |return_subtype...") |
m |
||
Line 54: | Line 54: | ||
|also_articles | |also_articles | ||
|notes | |notes | ||
|cat1=Avatar | |cat1=Avatar | ||
|cat2=Group | |cat2=Group | ||
|haiku | |haiku | ||
|cat3 | |cat3 | ||
|cat4 | |cat4 | ||
}} | }} |
Revision as of 12:58, 2 November 2023
LSL ポータル | 関数 | イベント | 型 | 演算子 | 定数 | 実行制御 | スクリプトライブラリ | カテゴリ別スクリプトライブラリ | チュートリアル |
要約
関数: integer llIsFriend( key agent_id );仕様
- If the prim is owned by a group this function behaves identically to llSameGroup
- This function will return FALSE under the following edge cases:
- If neither the owner, nor the target agent are in the region.
- If the agent_id does not specify an agent.
警告
- You are not your own friend.
サンプル
default
{
state_entry()
{
llSensorRepeat("", NULL_KEY, AGENT, 95, PI, 10);
}
sensor(integer count)
{
integer index;
for (index = 0; index < count; ++index)
{
string is_is_not = " is NOT ";
if (llIsFriend(llDetectedKey(index)))
{
is_is_not = " is ";
}
llSay(0, llDetectedName(index) + is_is_not + "a friend.");
}
}
}
関連項目
関数
• | llDetectedGroup/ja | |||
• | llSameGroup/ja |
特記事項
この項目はあなたにとって参考にならない項目ですか?もしかしたらLSL Wikiの関連した項目が参考になるかもしれません。