Dataserver

From Second Life Wiki
Revision as of 22:29, 11 February 2007 by Strife Onizuka (talk | contribs)
Jump to navigation Jump to search

Description

Event: dataserver( key queryid, string data ){ ; }

Triggered when task receives asynchronous data

• key queryid
• string data

Specification

Function Input Type Description
llGetNotecardLine string The line in the requested notecard, if EOF the line requested is past the end of the notecard.
llGetNumberOfNotecardLines integer The number of lines in the notecard requested.
llRequestAgentData DATA_ONLINE integer boolean If the requested agent is online
DATA_NAME string The requested agents name
DATA_BORN string The account creation/"born on" date as a string in in ISO 8601 format of YYYY-MM-DD.
DATA_RATING llCSV2List [behavior, 0, appearance, 0, building, 0]
DATA_PAYINFO integer bit-field Flag Value Description
PAYMENT_INFO_ON_FILE 0x1 If payment info is on file.
PAYMENT_INFO_USED 0x2 If payment info has been used.
llRequestInventoryData Landmark vector global_position_of_landmark = llGetRegionCorner() + (vector)data;
llRequestSimulatorData DATA_SIM_POS vector The sims global position.
DATA_SIM_STATUS string Value Description
"up" simulator currently up and running
"down" simulator currently down
"starting" simulator currently starting
"stopping" simulator currently stopping
"crashed" simulator has crashed
"unknown" simulator status unknown or unknown simulator
DATA_BORN string The account creation/"born on" date as a string in in ISO 8601 format of YYYY-MM-DD.

Examples

Deep Notes

Signature

event void dataserver( key queryid, string data );