You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 19, 2019. It is now read-only.
public abstract class BotSkill
{
protected int _skillId;
protected SpellUsageCondition _condition;
protected int _conditionValue;
protected int _priority;
public BotSkill(int skillId, SpellUsageCondition condition, int conditionValue, int priority)
{
_skillId = skillId;
_condition = condition;
_conditionValue = conditionValue;
_priority = priority;
}
public BotSkill(int skillId)
{
_skillId = skillId;
_condition = SpellUsageCondition.NONE;