def llGetOwnerKey(id): id = fk(id) if not cond(id): return Key(NULL_KEY) raise ELSLCantCompute
def llGetDisplayName(id): id = fk(id) if not cond(id): return u'' raise ELSLCantCompute
def llGetHTTPHeader(id, s): id = fk(id) s = fs(s) if not cond(id): return u'' raise ELSLCantCompute
def llGetAttachedList(id): id = fk(id) if not cond(id): return [u'NOT FOUND'] raise ELSLCantCompute
def llGetBoundingBox(id): id = fk(id) if not cond(id): return [] raise ELSLCantCompute
def llGetAnimationList(id): id = fk(id) if not cond(id): return [] raise ELSLCantCompute
def llGetAnimation(id): id = fk(id) if not cond(id): return u'' raise ELSLCantCompute
def llGetAgentSize(id): id = fk(id) if not cond(id): return ZERO_VECTOR raise ELSLCantCompute
def llGetAgentLanguage(id): id = fk(id) if not cond(id): return u'' raise ELSLCantCompute
def llGetAgentInfo(id): id = fk(id) if not cond(id): return 0 raise ELSLCantCompute