From 858392485767065d0d20550c2c52398e8860a7bd Mon Sep 17 00:00:00 2001
From: client_Wu Xijin <364452445@qq.com>
Date: 星期三, 17 四月 2019 15:50:51 +0800
Subject: [PATCH] 6540 【前端】【2.0】区域地图新增功能NPC显示

---
 Core/GameEngine/Model/Config/MapEventPointConfig.cs |   17 ++++++++++-------
 1 files changed, 10 insertions(+), 7 deletions(-)

diff --git a/Core/GameEngine/Model/Config/MapEventPointConfig.cs b/Core/GameEngine/Model/Config/MapEventPointConfig.cs
index b7b3b29..482aaf7 100644
--- a/Core/GameEngine/Model/Config/MapEventPointConfig.cs
+++ b/Core/GameEngine/Model/Config/MapEventPointConfig.cs
@@ -1,6 +1,6 @@
 锘�//--------------------------------------------------------
 //    [Author]:           Fish
-//    [  Date ]:           Thursday, February 14, 2019
+//    [  Date ]:           Wednesday, April 17, 2019
 //--------------------------------------------------------
 
 using System.Collections.Generic;
@@ -19,6 +19,7 @@
 	public readonly int IsShowInfo;
 	public readonly int ShowInMipMap;
 	public readonly int Colour;
+	public readonly string NpcDescription;
 	public readonly int LowLV;
 	public readonly int HighestLV;
 	public readonly int Defense;
@@ -48,17 +49,19 @@
 
 			int.TryParse(tables[5],out Colour); 
 
-			int.TryParse(tables[6],out LowLV); 
+			NpcDescription = tables[6];
 
-			int.TryParse(tables[7],out HighestLV); 
+			int.TryParse(tables[7],out LowLV); 
 
-			int.TryParse(tables[8],out Defense); 
+			int.TryParse(tables[8],out HighestLV); 
 
-			Drop1 = tables[9];
+			int.TryParse(tables[9],out Defense); 
 
-			Drop2 = tables[10];
+			Drop1 = tables[10];
 
-			EXP = tables[11];
+			Drop2 = tables[11];
+
+			EXP = tables[12];
         }
         catch (Exception ex)
         {

--
Gitblit v1.8.0