Checking Job Skills

Hello, I am just wondering if it is possible to check if one of the job’s skills defined to be true. For example:

Job ‘A’: has skills “s1”, “s2”, and “s3”

Is it possible to serve this Job ‘A’ if a vehicle has required skill “s2” only? The idea is that to serve the job if any one of its skills is matching with the vehicle’s skill NOT all of the skills. Thanks!

hmm. good point. currently, skills are specified as AND relations. however, it should be very easy to implement this as OR relation as well. just look at how I implemented the skill feature. you need to look at skill-state and constraint.

Yes, I got it. Thanks a lot!