mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-07-22 18:46:06 +02:00
cleaned targetfind some
- added character allegiance types
This commit is contained in:
parent
59fab08230
commit
84d5eee1fc
6 changed files with 149 additions and 76 deletions
|
@ -10,7 +10,16 @@ using System;
|
|||
|
||||
namespace FFXIVClassic_Map_Server.Actors
|
||||
{
|
||||
class Character:Actor
|
||||
/// <summary> Which Character types am I friendly with </summary>
|
||||
enum CharacterTargetingAllegiance
|
||||
{
|
||||
/// <summary> Friendly to Players </summary>
|
||||
Player,
|
||||
/// <summary> Friendly to BattleNpcs </summary>
|
||||
BattleNpcs
|
||||
}
|
||||
|
||||
class Character : Actor
|
||||
{
|
||||
public const int SIZE = 0;
|
||||
public const int COLORINFO = 1;
|
||||
|
@ -66,6 +75,8 @@ namespace FFXIVClassic_Map_Server.Actors
|
|||
public AIContainer aiContainer;
|
||||
public StatusEffects statusEffects;
|
||||
|
||||
public CharacterTargetingAllegiance allegiance;
|
||||
|
||||
public Character(uint actorID) : base(actorID)
|
||||
{
|
||||
//Init timer array to "notimer"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue