From 39001a600fcae2bcf27c225df8752d75fb92fef4 Mon Sep 17 00:00:00 2001
From: yyl <yyl>
Date: 星期五, 31 十月 2025 11:18:26 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.1.20:10010/r/Project_SG_scripts
---
Main/Config/Configs/NPCConfig.cs | 15 ++++++---------
1 files changed, 6 insertions(+), 9 deletions(-)
diff --git a/Main/Config/Configs/NPCConfig.cs b/Main/Config/Configs/NPCConfig.cs
index 003c236..c67fc02 100644
--- a/Main/Config/Configs/NPCConfig.cs
+++ b/Main/Config/Configs/NPCConfig.cs
@@ -1,6 +1,6 @@
锘�//--------------------------------------------------------
// [Author]: YYL
-// [ Date ]: 2025骞�8鏈�8鏃�
+// [ Date ]: 2025骞�10鏈�17鏃�
//--------------------------------------------------------
using System.Collections.Generic;
@@ -18,11 +18,10 @@
public int NPCID;
public string NPCName;
- public int Country;
- public int AtkDistType;
public int LV;
public int SkinID;
public float ModelScale;
+ public int LifeBarCount;
public override int LoadKey(string _key)
{
@@ -38,15 +37,13 @@
NPCName = tables[1];
- int.TryParse(tables[2],out Country);
+ int.TryParse(tables[2],out LV);
- int.TryParse(tables[3],out AtkDistType);
+ int.TryParse(tables[3],out SkinID);
- int.TryParse(tables[4],out LV);
+ float.TryParse(tables[4],out ModelScale);
- int.TryParse(tables[5],out SkinID);
-
- float.TryParse(tables[6],out ModelScale);
+ int.TryParse(tables[5],out LifeBarCount);
}
catch (Exception exception)
{
--
Gitblit v1.8.0