//By Nich Steed from LSL Wiki Modified by Oz Spade default { state_entry(){ llSetTimerEvent(1.0); } timer() { llRequestAgentData(llGetOwner(), DATA_BORN); // request creation date } dataserver(key queryid, string data) { //llOwnerSay("You were born on: " + data); } }