I have 2 agents of different type. [Person(type) owner(agent) 1(parameter) Carlink(connection)] [Vehicle(type) car(agent) 1(parameter) OwnerLink(connection)]
I want to link them if parameter "1" of the owner is same to parameter "1" of the car.
I'm thinking adding this statement on startup on Vehicle(type)
OwnerLink.connectto("condition") What syntax should I need to add on the "condition" part.
Thanks in advance.