Exemplo n.º 1
0
 public bool CheckCondition()
 {
     if (Type == ConditionType.Logic)
     {
         return(false);
     }
     else
     {
         return(ConditionCache.GetCondition(Type, Condition, (Type == ConditionType.Misc) ? Arg : null));
     }
 }
Exemplo n.º 2
0
        public bool CheckConditions()
        {
            ConditionCache.CheckCache();
            if (ConditionCache.GetLastCache() == _lastCache)
            {
                return(_cached);
            }

            _currentPos = 0;
            _cached     = Parse();
            _lastCache  = ConditionCache.GetLastCache();
            return(_cached);
        }
Exemplo n.º 3
0
 public static bool IsLoggedIn() => ConditionCache.GetCondition(DisplayCondition.ConditionType.Misc, 0);