Item as restriction

GaijinDev

Heir
Customer
Hello everyone, I wanted to know how to block classes that have jobs, only allow classes that haven't done their first job yet, for example I put it like this but I did the test and the char can't use the item

<conditions>

<condition name="classId" value="0,10,18,25,31,38,44,49,53"/>

</conditions>
 
Block classes
<conditions>
<not>
<condition name="classId" value="0,10,18,25,31,38,44,49,53"/>
</not>
</conditions>
Allow only this classes
<conditions>
<condition name="classId" value="0,10,18,25,31,38,44,49,53"/>
</conditions>
 
Back
Top