| | |
| | | //--------------------------------------------------------
|
| | | // [Author]: YYL
|
| | | // [ Date ]: 2025年8月5日
|
| | | // [ Date ]: Monday, September 1, 2025
|
| | | //--------------------------------------------------------
|
| | |
|
| | | using System.Collections.Generic;
|
| | |
| | | public int PosNPCID6;
|
| | | public int PosNPCID7;
|
| | | public int BossID;
|
| | | public int[] SkillIDExList;
|
| | | public int SkillExCnt;
|
| | |
|
| | | public override int LoadKey(string _key)
|
| | | {
|
| | |
| | | int.TryParse(tables[7],out PosNPCID7);
|
| | |
|
| | | int.TryParse(tables[8],out BossID);
|
| | |
|
| | | if (tables[9].Contains("[")) |
| | | { |
| | | SkillIDExList = JsonMapper.ToObject<int[]>(tables[9]); |
| | | } |
| | | else |
| | | { |
| | | string[] SkillIDExListStringArray = tables[9].Trim().Split(StringUtility.splitSeparator,StringSplitOptions.RemoveEmptyEntries); |
| | | SkillIDExList = new int[SkillIDExListStringArray.Length]; |
| | | for (int i=0;i<SkillIDExListStringArray.Length;i++) |
| | | { |
| | | int.TryParse(SkillIDExListStringArray[i],out SkillIDExList[i]); |
| | | } |
| | | }
|
| | |
|
| | | int.TryParse(tables[10],out SkillExCnt); |
| | | }
|
| | | catch (Exception exception)
|
| | | {
|