Difference between revisions of "LlShout/it"

From Second Life Wiki
Jump to navigation Jump to search
(Created page with '{{LSL_Function/it |func_id=24 |func_sleep=0.0 |func_energy=10.0 |func=llShout |sort=Shout |p1_type=integer|p1_name=channel |p2_type=string|p2_name=msg |func_desc=Grida il testo d...')
 
(cats)
 
(One intermediate revision by one other user not shown)
(No difference)

Latest revision as of 14:48, 21 March 2012

Sommario

Function: llShout( integer channel, string msg );

Grida il testo del msg nel canale specificato dall'integer in channel.

• integer channel
• string msg

Avvertimenti

  • La stringa può essere al massimo di 1024 bytes.
  • Il prim grida in un raggio di 100 metri dalla sorgente
  • Il prim non può sentirsi, per problemi di ridondanza.
All Issues ~ Search JIRA for related Bugs

Esempi

<lsl>default {

   state_entry()
   {
       llShout(0,"Un incredibile urlo dallo script!" );
   }

}</lsl>

Per comunicare con l'utente o l'Owner è meglio utilizzare llDialog, llOwnerSay o llInstantMessage per evitare lo spam con altri utenti.

Si veda anche

Eventi

•  listen

Funzioni

•  llListen
•  llOwnerSay
•  llRegionSay Invia il messagio a tutta la regione
•  llWhisper Invia il messaggio in 10 metri di raggio
•  llSay Invia il messaggio in 20 metri di raggio
•  llInstantMessage

Note approfondite

Search JIRA for related Issues

Firma

function void llShout( integer channel, string msg );