Here, it shows a (Value = True) and (Value = False) parameters. What I want it to say is that "true if Actor = ActorId 1, otherwise false." How do I do that? Can anyone give me a formula I can use based on the template given? Thanks!<Learn Show Eval>
value = true;
value = false;
</Learn Show Eval>
For using a custom code to hide or show the skill, you can use these
notetags. Returning value as true will cause the skill to appear
regardless of all other requirements being unmet while returning value as
false will cause the skill to appear regardless of all other requirements
being met.
<Learn Require Eval>
value = true;
value = false;
</Learn Require Eval>
For those who wish to use their own custom requirements using code. This
must return value as true in order for the skill to appear to be
learnable. Avoid using comments that may potentially block out further
code.