From 4b1247636bb04a0f0491537cb9853cd0b2101367 Mon Sep 17 00:00:00 2001
From: lcy <1459594991@qq.com>
Date: 星期四, 05 三月 2026 15:26:53 +0800
Subject: [PATCH] 348 功能预告-客户端 适配坊市表新增CostItemID
---
Main/Config/Configs/StoreConfig.cs | 19 +++++++++++--------
1 files changed, 11 insertions(+), 8 deletions(-)
diff --git a/Main/Config/Configs/StoreConfig.cs b/Main/Config/Configs/StoreConfig.cs
index 02c85ce..d8938f5 100644
--- a/Main/Config/Configs/StoreConfig.cs
+++ b/Main/Config/Configs/StoreConfig.cs
@@ -1,6 +1,6 @@
锘�//--------------------------------------------------------
// [Author]: YYL
-// [ Date ]: 2026骞�1鏈�8鏃�
+// [ Date ]: 2026骞�3鏈�5鏃�
//--------------------------------------------------------
using System.Collections.Generic;
@@ -24,6 +24,7 @@
public int[][] ItemListEx;
public int ResetType;
public int LimitCnt;
+ public int CostItemID;
public int MoneyType;
public int MoneyNum;
public int MoneyOriginal;
@@ -58,19 +59,21 @@
int.TryParse(tables[7],out LimitCnt);
- int.TryParse(tables[8],out MoneyType);
+ int.TryParse(tables[8],out CostItemID);
- int.TryParse(tables[9],out MoneyNum);
+ int.TryParse(tables[9],out MoneyType);
- int.TryParse(tables[10],out MoneyOriginal);
+ int.TryParse(tables[10],out MoneyNum);
- int.TryParse(tables[11],out UnlockType);
+ int.TryParse(tables[11],out MoneyOriginal);
- int.TryParse(tables[12],out UnlockValue);
+ int.TryParse(tables[12],out UnlockType);
- int.TryParse(tables[13],out IsExclusive);
+ int.TryParse(tables[13],out UnlockValue);
- Name = tables[14];
+ int.TryParse(tables[14],out IsExclusive);
+
+ Name = tables[15];
}
catch (Exception exception)
{
--
Gitblit v1.8.0