string region="hg.osgrid.org:80:freebie mall"; key StatusQuery; default { touch_start(integer total_number) { StatusQuery = llRequestSimulatorData(region, DATA_SIM_STATUS); } dataserver(key queryId, string data) { if (queryId == StatusQuery) { StatusQuery = ""; llSay(0, "Status of " + region + ": " + data); } } }