Switch to edit mode.
Name(s): member1: "Determines if the object is a member of the property args[2], on object args[1]" 2: object = toobj(args[1]) 3: property = tostr(args[2]) 4: if (this in object.(property)) 5: return 1 6: else 7: return 0 8: endif