Example #1
0
    public override string Apply()
    {
        RebeccaTinel npc = GetComponent <RebeccaTinel>();

        if (query == "checkIsBusy")
        {
            if (npc.getBusy())
            {
                return("true");
            }
            else
            {
                return("false");
            }
        }
        return("true");
    }