Difference between revisions of "LlSay/it"

From Second Life Wiki
Jump to navigation Jump to search
Line 11: Line 11:
|spec
|spec
|constants
|constants
|caveats=
|Avvertenze=
*Il testo non è sentito oltre i 20 mt di raggio dalla sorgente.  
*Il testo non è sentito oltre i 20 mt di raggio dalla sorgente.  
*La stringa usata può essere al massimo di 1024 bytes.
*La stringa usata può essere al massimo di 1024 bytes.
*Lo script che usa questa funzione non può ascoltarla per problemi di ridondanza.
*Lo script che usa questa funzione non può ascoltarla per problemi di ridondanza.
|examples=<lsl>default
|Esempio=<lsl>default
{
{
     state_entry()
     state_entry()
Line 35: Line 35:
|also_tests
|also_tests
|also_articles={{LSL DefineRow||[[Hello Avatar]]}}
|also_articles={{LSL DefineRow||[[Hello Avatar]]}}
|notes=
|Note=
* Il canale {{HoverText|0|Zero}} è {{#var:PUBLIC_CHANNEL}}. Tutti possono parlare in questo canale. Tutti gli altri canali sono canali privati (Gli utenti non possono leggere su canali diversi dal {{#var:PUBLIC_CHANNEL}} ad eccezione del {{#var:DEBUG_CHANNEL}}).
* Il canale {{HoverText|0|Zero}} è {{#var:PUBLIC_CHANNEL}}. Tutti possono parlare in questo canale. Tutti gli altri canali sono canali privati (Gli utenti non possono leggere su canali diversi dal {{#var:PUBLIC_CHANNEL}} ad eccezione del {{#var:DEBUG_CHANNEL}}).
* Consider using llInstantMessage, llOwnerSay, or the {{#var:DEBUG_CHANNEL}} for debugging purposes. If {{#var:DEBUG_CHANNEL}} is used as '''channel''', the script will say '''msg''' to the Script Warning/Error window.  
* Consider using llInstantMessage, llOwnerSay, or the {{#var:DEBUG_CHANNEL}} for debugging purposes. If {{#var:DEBUG_CHANNEL}} is used as '''channel''', the script will say '''msg''' to the Script Warning/Error window.  

Revision as of 01:56, 30 May 2010

Summary

Function: llSay( integer channel, string msg );

Dice in chat la strng msg nel canale specificato dall'integer channel.

• integer channel output chat channel, any integer value
• string msg message to be transmitted
Channel Constant Description
DEBUG_CHANNEL 0x7FFFFFFF Chat channel reserved for script debugging and error messages, broadcasts to all nearby users.
PUBLIC_CHANNEL 0x0 Chat channel that broadcasts to all nearby users. This channel is sometimes referred to as: open chat, local chat and public chat.

Caveats

  • Messages sent on channel zero[1] and DEBUG_CHANNEL are throttled to a rate of <200/10sec, per region, per owner/user.
    • Once the rate is exceeded, all following messages on channel zero or DEBUG_CHANNEL will be dropped until the send rate is again below 200/10sec for the previous 10 sec. Dropped messages, despite being dropped still count against the limit.
All Issues ~ Search JIRA for related Bugs

Examples

See Also

Events

•  listen                 Riceve la chat

Functions

•  llListen Richiesta per l'ascolto degli eventi
•  llInstantMessage Invia in chat il messaggio all'Owner (o ad altri utenti specifici) per evitare lo spam nel PUBLIC_CHANNEL
•  llOwnerSay Invia in chat il messaggio unicamente all'Owner per evitare lo spam nella PUBLIC_CHANNEL
•  llRegionSay Invia il messaggio all'intera Regione
•  llShout Invia il messaggio nel raggio di 100 Metri
•  llWhisper Invia il messaggio nel raggio di 10 Metri

Articles

•  Hello Avatar

Deep Notes

Search JIRA for related Issues

Footnotes

  1. ^ Channel zero is also known as: PUBLIC_CHANNEL, open chat, local chat and public chat

Signature

function void llSay( integer channel, string msg );