npc
This commit is contained in:
@@ -156,6 +156,7 @@ public class CECHostPlayer : CECPlayer
|
||||
{
|
||||
idTraceTarget = idObject;
|
||||
idSelTarget = idObject;
|
||||
|
||||
}
|
||||
if (idTraceTarget != 0)
|
||||
{
|
||||
@@ -1515,6 +1516,18 @@ public struct FACTION_FORTRESS_ENTER
|
||||
this.end_time = end_time;
|
||||
}
|
||||
}
|
||||
public struct NPCINFO
|
||||
{
|
||||
public string Name; // Movement properties
|
||||
public int CurrentHealth;
|
||||
public int MaxHealth;// Attacking properties
|
||||
public NPCINFO(string name, int currentHealth, int maxHealth)
|
||||
{
|
||||
Name = name;
|
||||
CurrentHealth = currentHealth;
|
||||
MaxHealth = maxHealth;
|
||||
}
|
||||
};
|
||||
|
||||
// PVP infomation
|
||||
public struct PVPINFO
|
||||
|
||||
Reference in New Issue
Block a user