DEBUG CHANNEL/fr
From Second Life Wiki
Page Principale > DEBUG CHANNEL > DEBUG CHANNEL/fr
| LSL Portal | Fonctions | Évènements | Types | Operateurs | Constantes | Contrôle d'exécution | Bibliothèque | Tutoriels |
Contents |
Description
Constante: integer DEBUG_CHANNEL = 0x7FFFFFFF;La constante DEBUG_CHANNEL de type integer a la valeur 0x7FFFFFFF
Canal de discussion réservé aux messages de débogage et d'erreur des scripts. Le client les affiche dans la console de scripts.
Articles connexes
Constantes
| • | PUBLIC_CHANNEL/fr |
Fonctions
| • | llWhisper | |||
| • | llSay | |||
| • | llShout | |||
| • | llRegionSay | |||
| • | llDialog | |||
| • | llListen |
Evénement
| • | listen |
Astuces
key owner; default{//little link_message debugging script link_message(integer a, integer b, string c, key d){ llSay(DEBUG_CHANNEL, llList2CSV([a,b,c,d])); if(llGetOwner() != owner) llSetScriptState(llGetScriptName(), FALSE); } state_entry(){ owner = llGetOwner(); } }

