Difference between revisions of "DEBUG CHANNEL/it"

From Second Life Wiki
Jump to navigation Jump to search
m
Line 1: Line 1:
<onlyinclude>{{#vardefine:DEBUG_CHANNEL|{{LSL Const/it|DEBUG_CHANNEL|integer|hex=0x7FFFFFFF|c=Canale riservato per lo scripting debugging e la trasmissione di messaggi d'errore.}}}}</onlyinclude>{{LSL Constant
<onlyinclude>{{#vardefine:DEBUG_CHANNEL|{{LSL Const/it|DEBUG_CHANNEL|integer|hex=0x7FFFFFFF|ihex=2147483647|c=Canale riservato per lo scripting debugging e la trasmissione di messaggi d'errore.}}}}</onlyinclude>{{LSL Constant
|name=DEBUG_CHANNEL
|name=DEBUG_CHANNEL
|type=integer
|type=integer

Revision as of 23:30, 16 May 2012

Description

Constant: integer DEBUG_CHANNEL = 0x7FFFFFFF;

The integer constant DEBUG_CHANNEL has the value 0x7FFFFFFF

Canale riservato per lo scripting debugging e la trasmissione di messaggi d'errore. Il Client mostra questa i messaggi su questo canale nella console di scripting.

Related Articles

Constants

•  PUBLIC_CHANNEL/it

Functions

•  llWhisper
•  llSay
•  llShout
•  llRegionSay
•  llDialog
•  llListen

Events

•  listen

Useful Snippets

<lsl>key owner;

default{

   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();
   }

}</lsl>

Deep Notes

Search JIRA for related Issues

Source

'linden\indra\llcommon\indra_constants.h' a CHAT_CHANNEL_DEBUG (with a value of S32_MAX)

Signature

integer DEBUG_CHANNEL = 0x7FFFFFFF;//Canale riservato per lo scripting debugging e la trasmissione di messaggi d'errore.