Hello I'm using findObjs in a script, and searching a simple character object with the following code var characters = findObjs({ _type: 'character', controlledby: playerId }); It appears that if the character is controlled by 2 persons, like playerId and playerId1, the findObjs object does not find any character. It seems like it is searching through the exact string match instead of finding the playerId in the list of players Am i doing right ? Is it the expected behavior of findObjs ? In that case, will i need to get all objects and parse myself in the API or is there another method ? Thanks for inputs