Difference between revisions of "Category:LSL Communications"

From Second Life Wiki
Jump to navigation Jump to search
m (corrections)
Line 1: Line 1:
{{LSL Header}}
{{LSL Header}}
Communication can occur Agent to Object, Object to Agent, Object to Object, and Agent to Agent though only the first three can be done in LSL. Communication is broken up into several categories.
 
Objects in SecondLife can communicate with other scripts, agents, external servers.  They do this using the following forms in LSL.


==[[:Category:LSL Chat|Chat]]==
==[[:Category:LSL Chat|Chat]]==
Line 62: Line 63:


==[[:Category:LSL XML-RPC|XML-RPC]]==
==[[:Category:LSL XML-RPC|XML-RPC]]==
'''Receive Only'''
'''Receive Only''' - Communications via XML-RPC must be initiated by the external server.
 
{| border = "1"  width = "60%" cellspacing="2" cellpadding="6"
! Sending !! Receiving
|-
|
{{LSLG|llRemoteDataReply }}
{{LSLG|llSendRemoteData}}
|
'''Event''' {{LSLG|remote_data }}
|}
 


{{LSLG|llCloseRemoteDataChannel}}
{{LSLG|llCloseRemoteDataChannel}}
{{LSLG|llOpenRemoteDataChannel}}
{{LSLG|llOpenRemoteDataChannel}}
{{LSLG|llRemoteDataReply }}
{{LSLG|llRemoteDataSetRegion}}
{{LSLG|llRemoteDataSetRegion}}
{{LSLG|llSendRemoteData}}
'''Event''' {{LSLG|remote_data}}
{{LSLC|}}

Revision as of 10:48, 21 May 2007

Objects in SecondLife can communicate with other scripts, agents, external servers. They do this using the following forms in LSL.

Chat

Sending Receiving
llSay
llOwnerSay
llShout
llWhisper
llDialog
llListen
llListenRemove
llListenControl
Event listen

Instant Message

Send only llInstantMessage

Link Message

Sending Receiving
llMessageLinked
Event link_message

Email

Sending Receiving
llEmail
llGetNextEmail
Event email

HTTP

Sending Receiving

Can only be sent to non Linden Labs servers

llHTTPRequest

Response to a HTTP request only, can not accept incoming HTTP requests.

Event http_response

Formatting llEscapeURL llUnescapeURL

XML-RPC

Receive Only - Communications via XML-RPC must be initiated by the external server.

Sending Receiving

llRemoteDataReply llSendRemoteData

Event remote_data


llCloseRemoteDataChannel llOpenRemoteDataChannel llRemoteDataSetRegion