| | |
| | | //--------------------------------------------------------
|
| | | // [Author]: Fish
|
| | | // [ Date ]: Thursday, February 14, 2019
|
| | | // [ Date ]: Friday, April 12, 2019
|
| | | //--------------------------------------------------------
|
| | |
|
| | | using System.Collections.Generic;
|
| | |
| | | public readonly int MapID;
|
| | | public readonly string Name;
|
| | | public readonly int LV;
|
| | | public readonly int realmLevel;
|
| | | public readonly int MapFBType;
|
| | | public readonly int LocalReborn;
|
| | | public readonly int SkillReborn;
|
| | |
| | |
|
| | | int.TryParse(tables[2],out LV);
|
| | |
|
| | | int.TryParse(tables[3],out MapFBType); |
| | | int.TryParse(tables[3],out realmLevel); |
| | |
|
| | | int.TryParse(tables[4],out LocalReborn); |
| | | int.TryParse(tables[4],out MapFBType); |
| | |
|
| | | int.TryParse(tables[5],out SkillReborn); |
| | | int.TryParse(tables[5],out LocalReborn); |
| | |
|
| | | int.TryParse(tables[6],out CanRide); |
| | | int.TryParse(tables[6],out SkillReborn); |
| | |
|
| | | int.TryParse(tables[7],out CanOutPet); |
| | | int.TryParse(tables[7],out CanRide); |
| | |
|
| | | int.TryParse(tables[8],out TeamLimit); |
| | | int.TryParse(tables[8],out CanOutPet); |
| | |
|
| | | string[] BornPointsStringArray = tables[9].Trim().Split(StringUtility.splitSeparator,StringSplitOptions.RemoveEmptyEntries); |
| | | int.TryParse(tables[9],out TeamLimit); |
| | |
|
| | | string[] BornPointsStringArray = tables[10].Trim().Split(StringUtility.splitSeparator,StringSplitOptions.RemoveEmptyEntries); |
| | | BornPoints = new Vector3[BornPointsStringArray.Length]; |
| | | for (int i=0;i<BornPointsStringArray.Length;i++) |
| | | { |
| | | BornPoints[i]=BornPointsStringArray[i].Vector3Parse(); |
| | | }
|
| | |
|
| | | int.TryParse(tables[10],out MainTaskID); |
| | | int.TryParse(tables[11],out MainTaskID); |
| | |
|
| | | MapTaskText = tables[11];
|
| | | MapTaskText = tables[12];
|
| | |
|
| | | int.TryParse(tables[12],out Camp); |
| | | int.TryParse(tables[13],out Camp); |
| | |
|
| | | int.TryParse(tables[13],out AtkType); |
| | | int.TryParse(tables[14],out AtkType); |
| | | }
|
| | | catch (Exception ex)
|
| | | {
|