I used a little Python script to test if the ressources were loaded :
@sims4.commands.Command('test_relationship',command_type=sims4.commands.CommandType.Live)
def TestRelationship(*args,_connection=None):
output = sims4.commands.CheatOutput(_connection)
manager = services.get_instance_manager(sims4.resources.Types.RELATIONSHIP_BIT)
for bit in manager.types.values():
output('Bit : {}'.format(bit))
output('==================== done ====================')
return True
It worked fine when printing the sims4.resources.Types.TRAIT for example, where a simple custom one appeared fine, but not for relbits.
I tried with or without a DATA file, with FNV64 and FNV32, with a high bit group or not, but nothing so far.