From 9c060f2938430460daa60c64879aa688bf7fdfc5 Mon Sep 17 00:00:00 2001
From: client_linchunjie <461730578@qq.com>
Date: 星期三, 17 四月 2019 16:35:05 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.0.87:10010/r/snxxz_scripts

---
 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