This commit is contained in:
VDH
2025-10-27 10:23:44 +07:00
parent 7fef48278f
commit f537fc0551
132 changed files with 574 additions and 2 deletions
+13
View File
@@ -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