| | |
| | | //--------------------------------------------------------
|
| | | // [Author]: 第二世界
|
| | | // [ Date ]: Monday, August 20, 2018
|
| | | // [ Date ]: Thursday, November 01, 2018
|
| | | //--------------------------------------------------------
|
| | |
|
| | | using UnityEngine;
|
| | |
| | | public int NPCEffect { get ; private set ; }
|
| | | public int NPCSpeakID { get ; private set ; }
|
| | | public int ClientRealm { get ; private set ; }
|
| | | public string Equips { get ; private set; } |
| | |
|
| | | public override string getKey()
|
| | | {
|
| | |
| | | NPCSpeakID=IsNumeric(rawContents[56]) ? int.Parse(rawContents[56]):0;
|
| | |
|
| | | ClientRealm=IsNumeric(rawContents[57]) ? int.Parse(rawContents[57]):0;
|
| | | |
| | | Equips = rawContents[58].Trim();
|
| | | }
|
| | | catch (Exception ex)
|
| | | {
|