“LlWhisper”的版本间的差异
(创建页面,内容为“{{LSL Header|ml=*}}{{LSLC|Keywords}}{{LSLC|Flow Control}}{{LSLC|}} {{函数详情 |函数名 = Function: llWhisper( integer channel, string msg ); |参数= 参数…”) |
|||
第62行: | 第62行: | ||
|相关事件=[[listen]] | |相关事件=[[listen]] | ||
}} | }} | ||
+ | |||
+ | {| class="wikitable" border="1" | ||
+ | |- | ||
+ | ! header 1 | ||
+ | ! header 2 | ||
+ | ! header 3 | ||
+ | |- | ||
+ | | row 1, cell 1 | ||
+ | | row 1, cell 2 | ||
+ | | row 1, cell 3 | ||
+ | |- | ||
+ | | row 2, cell 1 | ||
+ | | row 2, cell 2 | ||
+ | | row 2, cell 3 | ||
+ | |} |
2020年7月6日 (一) 11:48的版本
首页 | 函数 | 事件 | 类型 | 操作符 | 常数 | Flow Control | Script Library | Categorized Library | Tutorials |
函数名 |
---|
Function: llWhisper( integer channel, string msg ); |
参数:在整数通道中提供的通道上提示字符串msg中提供的文本。
•整数频道(integer channel)–输出聊天频道,任意整数值 •字符串消息(string msg)–要传输的消息 { |
返回值:无 |
注意事项 |
---|
在通道0[1]和调试通道上发送的消息被限制为每个区域、每个所有者/用户<200/10秒的速率。
一旦超过速率,信道0或调试信道上的所有以下消息将被丢弃,直到发送速率在前10秒再次低于200/10秒。丢弃的消息,尽管被丢弃,仍然要算在限制之内。 文本最大可以是1024个字节。这可以传输1024个ASCII字符,或512个UTF-8字符,例如 耳语只能在说话的人(而不是树根)10米范围内听到。这与侦听的工作方式相反,即只有当且仅当根prim能够听到消息时,对象中的任何prim才能听到消息。 一个prim不能听到自己,这是为了防止递归问题。但是,它可以听到同一物体内的其他原音。 |
示例 |
---|
如果您愿意,您可以使用某些助记常数,例如公共通道而不是通道0,调试通道而不是通道+2147483647。
default { state_entry() { llWhisper(0, "This is an incredibly useless program."); } } 为了与用户或所有者通信,最好使用llOwnerSay或llInstantMessage或llRegionSayTo,因为它们不会向其他用户发送垃圾邮件。 |
相关函数 |
---|
llListen llOwnerSay
llRegionSay –发送聊天区域 llSay –发送聊天限制在20米以内 llShout –发送聊天限制在100米以内 |
相关事件 |
---|
listen |
header 1 | header 2 | header 3 |
---|---|---|
row 1, cell 1 | row 1, cell 2 | row 1, cell 3 |
row 2, cell 1 | row 2, cell 2 | row 2, cell 3 |