| | |
| | | //--------------------------------------------------------
|
| | | // [Author]: YYL
|
| | | // [ Date ]: 2025年8月8日
|
| | | // [ Date ]: Thursday, September 18, 2025
|
| | | //--------------------------------------------------------
|
| | |
|
| | | using System.Collections.Generic;
|
| | |
| | |
|
| | | public int NPCID;
|
| | | public string NPCName;
|
| | | public int Country;
|
| | | public int AtkDistType;
|
| | | public int LV;
|
| | | public int SkinID;
|
| | | public float ModelScale;
|
| | |
| | |
|
| | | NPCName = tables[1];
|
| | |
|
| | | int.TryParse(tables[2],out Country); |
| | | int.TryParse(tables[2],out LV); |
| | |
|
| | | int.TryParse(tables[3],out AtkDistType); |
| | | int.TryParse(tables[3],out SkinID); |
| | |
|
| | | int.TryParse(tables[4],out LV); |
| | |
|
| | | int.TryParse(tables[5],out SkinID); |
| | |
|
| | | float.TryParse(tables[6],out ModelScale); |
| | | float.TryParse(tables[4],out ModelScale); |
| | | }
|
| | | catch (Exception exception)
|
| | | {
|