Ejemplo n.º 1
0
        public HunterTask(Character Character)
            : base(Character)
        {
            Options     = XmlSerializationHelper.Deserialize <Options>(FileName) ?? new Options();
            TS          = new Taskstate(Character, Options);
            TS.Stopped += Stop;
            Engine      = new StateEngine();

            InitializeStateEngine();
        }
Ejemplo n.º 2
0
 public HealOff(Character Character, Options options, Taskstate Taskstate)
     : base(Character, options, Taskstate)
 {
     Enabled = true;
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="NavState"/> class.
 /// </summary>
 /// <param name="Character">The character.</param>
 /// <param name="options">The options.</param>
 /// <param name="Taskstate">The taskstate.</param>
 protected NavState(Character Character, Options options, Taskstate Taskstate)
     : base(Character)
 {
     Options = options;
     TS      = Taskstate;
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Idle"/> class.
 /// </summary>
 /// <param name="Character">The character.</param>
 /// <param name="options">The options.</param>
 /// <param name="Taskstate">The taskstate.</param>
 public Idle(Character Character, Options options, Taskstate Taskstate)
     : base(Character, options, Taskstate)
 {
     Priority = int.MinValue;
     Enabled  = true;
 }
Ejemplo n.º 5
0
 public JobAbilityFightOnly(Character Character, Options options, Taskstate Taskstate)
     : base(Character, options, Taskstate)
 {
     Enabled = true;
 }
Ejemplo n.º 6
0
 /// <summary>
 /// Initializes a new instance of the <see cref="NavState"/> class.
 /// </summary>
 /// <param name="Character">The character.</param>
 /// <param name="options">The options.</param>
 /// <param name="Taskstate">The taskstate.</param>
 protected RandomPathState(Character Character, Options options, Taskstate Taskstate)
     : base(Character)
 {
     Options = options;
     TS      = Taskstate;
 }
Ejemplo n.º 7
0
 public BUFFS(Character Character, Options options, Taskstate Taskstate)
     : base(Character, options, Taskstate)
 {
     Enabled = true;
 }
Ejemplo n.º 8
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Navigator"/> class.
 /// </summary>
 /// <param name="Character">The character.</param>
 /// <param name="options">The options.</param>
 /// <param name="Taskstate">The taskstate.</param>
 public Navigator(Character Character, Options options, Taskstate Taskstate)
     : base(Character, options, Taskstate)
 {
     Enabled = true;
 }
 public InventoryChecks(Character character, Options options, Taskstate Taskstate)
     : base(character, options, Taskstate)
 {
     Priority = int.MinValue;
     Enabled  = true;
 }
Ejemplo n.º 10
0
 public WeaponSkill(Character character, Options options, Taskstate Taskstate)
     : base(character, options, Taskstate)
 {
     Enabled = true;
 }
 public TrackWhileFighting(Character Character, Options options, Taskstate Taskstate)
     : base(Character, options, Taskstate)
 {
     Enabled = true;
 }
Ejemplo n.º 12
0
 public Pulling(Character character, Options options, Taskstate Taskstate)
     : base(character, options, Taskstate)
 {
     Enabled = true;
 }
Ejemplo n.º 13
0
 public PathFinder(Character Character, Options options, Taskstate Taskstate)
     : base(Character, options, Taskstate)
 {
     Enabled = true;
 }
 public AcceptRaise(Character Character, Options options, Taskstate Taskstate)
     : base(Character, options, Taskstate)
 {
     Enabled = true;
 }
 public JobAbilityKeepActive(Character Character, Options options, Taskstate Taskstate)
     : base(Character, options, Taskstate)
 {
     Enabled = true;
 }
Ejemplo n.º 16
0
 public TrackNextTarget(Character Character, Options options, Taskstate Taskstate)
     : base(Character, options, Taskstate)
 {
     Enabled = true;
 }