From 1c13e005f016439f38f06c2574e4d30b259172c1 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期五, 11 七月 2025 11:19:41 +0800
Subject: [PATCH] 80 【常规】背包-服务端(优化背包格子初始化,屏蔽无用背包;支持绑定货币数量展示的背包物品;背包物品优化叠加上限20亿支持;)

---
 ZoneServerGroup/map1_8G/MapServer/MapServerData/ServerConfig/m_10020/SysDB/tagChinItem.txt  |   24 ++++++------
 ZoneServerGroup/map1_8G/MapServer/MapServerData/MapServerConfig.ini                         |   14 +++---
 ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ShareDefine.pyc                      |    0 
 ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.pyc                         |    0 
 ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerControl.pyc             |    0 
 ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Item/ItemControler.pyc               |    0 
 ZoneServerGroup/map1_8G/MapServer/MapServerData/ServerConfig/m_10010/SysDB/tagChinItem.txt  |   24 ++++++------
 ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Item/UseItem/ItemCommon.pyc          |    0 
 ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.pyc                  |    0 
 ZoneServerGroup/map1_8G/MapServer/MapServerData/ServerConfig/m_10010/PySysDB/FuncConfig.txt |    4 +-
 ZoneServerGroup/map1_8G/MapServer/MapServerData/ServerConfig/m_10020/PySysDB/FuncConfig.txt |    4 +-
 11 files changed, 35 insertions(+), 35 deletions(-)

diff --git a/ZoneServerGroup/map1_8G/MapServer/MapServerData/MapServerConfig.ini b/ZoneServerGroup/map1_8G/MapServer/MapServerData/MapServerConfig.ini
index 79707d2..54f95df 100644
--- a/ZoneServerGroup/map1_8G/MapServer/MapServerData/MapServerConfig.ini
+++ b/ZoneServerGroup/map1_8G/MapServer/MapServerData/MapServerConfig.ini
@@ -10,11 +10,11 @@
 ;物品rptItem
 PackCnt02=100
 ;垃圾桶(回收站)rptRecycle
-PackCnt03=6
+PackCnt03=0
 ;拆解物品栏rptBreakItem
 PackCnt04=0
 ;仓库rptWarehouse
-PackCnt05=100
+PackCnt05=0
 ;称号背包rptTitle
 PackCnt06=0
 ;合成背包rptCompose
@@ -30,7 +30,7 @@
 ;坐骑背包rptHorse
 PackCnt12=0
 ;万能背包rptAnyWhere 
-PackCnt13=8
+PackCnt13=0
 ;法宝背包rptFabao
 PackCnt14=0
 ;坐骑装备背包rptHorseEquip
@@ -66,12 +66,12 @@
 ;寻宝背包	
 PackCnt30=100
 ;宠物背包
-PackCnt31=50
+PackCnt31=0
 ;神兽物品背包
-PackCnt32=100
+PackCnt32=0
 ;神兽装备背包
-PackCnt33=150
+PackCnt33=0
 ;垃圾分类背包
-PackCnt34=30
+PackCnt34=0
 ;武将英雄背包
 PackCnt35=500
\ No newline at end of file
diff --git a/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.pyc b/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.pyc
index 1aae412..031fe3a 100644
--- a/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.pyc
+++ b/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.pyc
Binary files differ
diff --git a/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Item/ItemControler.pyc b/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Item/ItemControler.pyc
index 64cf967..04a254b 100644
--- a/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Item/ItemControler.pyc
+++ b/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Item/ItemControler.pyc
Binary files differ
diff --git a/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Item/UseItem/ItemCommon.pyc b/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Item/UseItem/ItemCommon.pyc
index f5aea73..3e8a3a0 100644
--- a/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Item/UseItem/ItemCommon.pyc
+++ b/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Item/UseItem/ItemCommon.pyc
Binary files differ
diff --git a/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.pyc b/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.pyc
index bbbbda0..8a3b44b 100644
--- a/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.pyc
+++ b/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.pyc
Binary files differ
diff --git a/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerControl.pyc b/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerControl.pyc
index d78afc5..8383be3 100644
--- a/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerControl.pyc
+++ b/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerControl.pyc
Binary files differ
diff --git a/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ShareDefine.pyc b/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ShareDefine.pyc
index a395691..22acf61 100644
--- a/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ShareDefine.pyc
+++ b/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ShareDefine.pyc
Binary files differ
diff --git a/ZoneServerGroup/map1_8G/MapServer/MapServerData/ServerConfig/m_10010/PySysDB/FuncConfig.txt b/ZoneServerGroup/map1_8G/MapServer/MapServerData/ServerConfig/m_10010/PySysDB/FuncConfig.txt
index 3fb9ab5..d2d01bf 100644
--- a/ZoneServerGroup/map1_8G/MapServer/MapServerData/ServerConfig/m_10010/PySysDB/FuncConfig.txt
+++ b/ZoneServerGroup/map1_8G/MapServer/MapServerData/ServerConfig/m_10010/PySysDB/FuncConfig.txt
@@ -427,12 +427,12 @@
 TalkCache	{0:100, 3:30}				
 PlayerViewCache	50	7			
 MailLVAward	{}	[]			
-PutInItemPack	{"35":[150], "8":[101,102,103,104,105,106,107,108,109,110,111,112]}				
+PutInItemPack	{"35":[150], "8":[101,102,103,104,105,106,107,108,109,110,111,112]}	{"3":41}			
 TransferItemPack	{20210510:{(2,32):[5409]}}				
 OpenBagItem	951	int(math.ceil(index/4.0))	200	0	0
 InitDepotCellCount	200	0	0	0	0
 DepotSortPriority	19|145|1|5|81|4|14|13|8|9|26|28|125|27|41|22|124|21|25|20|45|58|54|39|52|6|34|35|36|76|11|12|15|17|29|44|48|50|51|60|80|7|101|102|103|104|105|106|107|108|109|111|112	0	0	0	0
-InitBagCellCount	200	{"1":12, "8":20, "31":70, "34":30, "35":300}	0	0	0
+InitBagCellCount	100	{"35":300}	0	0	0
 PackageSortPriority	19|145|1|5|81|4|14|13|8|9|26|28|125|27|41|22|124|21|25|20|45|58|54|39|52|6|34|35|36|76|11|12|15|17|29|44|48|50|51|60|80|7|101|102|103|104|105|106|107|108|109|111|112	0	0	0	0
 ItemRecord	1	0			
 ItemRecordRule	{0:4}	[4,25,26,41,112,45,58]	[947,948,949,950,953,982,983,986,1128,4501]	[]	[]
diff --git a/ZoneServerGroup/map1_8G/MapServer/MapServerData/ServerConfig/m_10010/SysDB/tagChinItem.txt b/ZoneServerGroup/map1_8G/MapServer/MapServerData/ServerConfig/m_10010/SysDB/tagChinItem.txt
index 701375e..458a5bc 100644
--- a/ZoneServerGroup/map1_8G/MapServer/MapServerData/ServerConfig/m_10010/SysDB/tagChinItem.txt
+++ b/ZoneServerGroup/map1_8G/MapServer/MapServerData/ServerConfig/m_10010/SysDB/tagChinItem.txt
@@ -1,16 +1,16 @@
 ID	LV	identify	ItemName	Type	EquipPlace	CanNPCDrop	CanidentifyAppear	CanRepair	PackCount	UseLV	CanSell	CanTrade	CanDrop	CanBind	CanRenZhu	DieDrop	CDTypeEx	  CDType	CDTime	PriceGene	GoldPrice	GoldPaperPrice	SilverPrice	SilverPaperPrice	UseTag	UseDist	CaninsertHole	Effect1	EffectValueA1	EffectValueB1	EffectValueC1	Effect2	EffectValueA2	EffectValueB2	EffectValueC2	Effect3	EffectValueA3	EffectValueB3	EffectValueC3	Effect4	EffectValueA4	EffectValueB4	EffectValueC4	Effect5	EffectValueA5	EffectValueB5	EffectValueC5	AddSkill1	AddSkill2	AddSkill3	AddSkill4	AddSkill5	JobLimit	RealmLimit	SexReq	ItemColor	StarLevel	MaxHoleCount	CanBreak	MaxEndure	EndureReduceType	DisappearWhenNoEndure	UseRestrict	isSoulOfWar	ReincarnationLv	BindType	MaxSkillCnt	 ExpireTime	   MaxFitLV	SuiteiD	Weight	LimitSTR	LimitPHY	LimitPNE	IsBothHands
-1	1	0	金币	1	0	0	0	0	60000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	203	1	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
-2	1	0	将星玉髓	15	0	0	0	0	60000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
-3	1	0	战锤	15	0	0	0	0	60000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
-4	1	0	加速符	15	0	0	0	0	60000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
-5	1	0	招募令	15	0	0	0	0	60000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
-6	1	0	挑战凭证	15	0	0	0	0	60000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
-7	1	0	武将经验	15	0	0	0	0	60000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
-8	1	0	进阶丹	15	0	0	0	0	60000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
-9	1	0	觉醒石	15	0	0	0	0	60000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
-10	1	0	洗炼石	15	0	0	0	0	60000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
-11	1	0	将魂	15	0	0	0	0	60000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
-30	1	0	测试	65	0	0	0	0	60000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+1	1	0	金币	1	0	0	0	0	2000000000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	203	1	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+2	1	0	将星玉髓	15	0	0	0	0	2000000000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+3	1	0	战锤	15	0	0	0	0	2000000000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+4	1	0	加速符	15	0	0	0	0	2000000000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+5	1	0	招募令	15	0	0	0	0	2000000000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+6	1	0	挑战凭证	15	0	0	0	0	2000000000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+7	1	0	武将经验	15	0	0	0	0	2000000000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+8	1	0	进阶丹	15	0	0	0	0	2000000000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+9	1	0	觉醒石	15	0	0	0	0	2000000000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	4	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+10	1	0	洗炼石	15	0	0	0	0	2000000000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+11	1	0	将魂	15	0	0	0	0	2000000000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+30	1	0	测试	65	0	0	0	0	2000000000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
 100101	1	0	长枪	101	1	1	0	0	1	1	1	1	0	1	0	0	0	0	0	1	1	3	61	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
 100102	1	0	臂铠	102	2	1	0	0	1	1	1	1	0	1	0	0	0	0	0	1	1	3	61	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
 100103	1	0	头盔	103	3	1	0	0	1	1	1	1	0	1	0	0	0	0	0	1	1	3	61	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
diff --git a/ZoneServerGroup/map1_8G/MapServer/MapServerData/ServerConfig/m_10020/PySysDB/FuncConfig.txt b/ZoneServerGroup/map1_8G/MapServer/MapServerData/ServerConfig/m_10020/PySysDB/FuncConfig.txt
index 3fb9ab5..d2d01bf 100644
--- a/ZoneServerGroup/map1_8G/MapServer/MapServerData/ServerConfig/m_10020/PySysDB/FuncConfig.txt
+++ b/ZoneServerGroup/map1_8G/MapServer/MapServerData/ServerConfig/m_10020/PySysDB/FuncConfig.txt
@@ -427,12 +427,12 @@
 TalkCache	{0:100, 3:30}				
 PlayerViewCache	50	7			
 MailLVAward	{}	[]			
-PutInItemPack	{"35":[150], "8":[101,102,103,104,105,106,107,108,109,110,111,112]}				
+PutInItemPack	{"35":[150], "8":[101,102,103,104,105,106,107,108,109,110,111,112]}	{"3":41}			
 TransferItemPack	{20210510:{(2,32):[5409]}}				
 OpenBagItem	951	int(math.ceil(index/4.0))	200	0	0
 InitDepotCellCount	200	0	0	0	0
 DepotSortPriority	19|145|1|5|81|4|14|13|8|9|26|28|125|27|41|22|124|21|25|20|45|58|54|39|52|6|34|35|36|76|11|12|15|17|29|44|48|50|51|60|80|7|101|102|103|104|105|106|107|108|109|111|112	0	0	0	0
-InitBagCellCount	200	{"1":12, "8":20, "31":70, "34":30, "35":300}	0	0	0
+InitBagCellCount	100	{"35":300}	0	0	0
 PackageSortPriority	19|145|1|5|81|4|14|13|8|9|26|28|125|27|41|22|124|21|25|20|45|58|54|39|52|6|34|35|36|76|11|12|15|17|29|44|48|50|51|60|80|7|101|102|103|104|105|106|107|108|109|111|112	0	0	0	0
 ItemRecord	1	0			
 ItemRecordRule	{0:4}	[4,25,26,41,112,45,58]	[947,948,949,950,953,982,983,986,1128,4501]	[]	[]
diff --git a/ZoneServerGroup/map1_8G/MapServer/MapServerData/ServerConfig/m_10020/SysDB/tagChinItem.txt b/ZoneServerGroup/map1_8G/MapServer/MapServerData/ServerConfig/m_10020/SysDB/tagChinItem.txt
index 701375e..458a5bc 100644
--- a/ZoneServerGroup/map1_8G/MapServer/MapServerData/ServerConfig/m_10020/SysDB/tagChinItem.txt
+++ b/ZoneServerGroup/map1_8G/MapServer/MapServerData/ServerConfig/m_10020/SysDB/tagChinItem.txt
@@ -1,16 +1,16 @@
 ID	LV	identify	ItemName	Type	EquipPlace	CanNPCDrop	CanidentifyAppear	CanRepair	PackCount	UseLV	CanSell	CanTrade	CanDrop	CanBind	CanRenZhu	DieDrop	CDTypeEx	  CDType	CDTime	PriceGene	GoldPrice	GoldPaperPrice	SilverPrice	SilverPaperPrice	UseTag	UseDist	CaninsertHole	Effect1	EffectValueA1	EffectValueB1	EffectValueC1	Effect2	EffectValueA2	EffectValueB2	EffectValueC2	Effect3	EffectValueA3	EffectValueB3	EffectValueC3	Effect4	EffectValueA4	EffectValueB4	EffectValueC4	Effect5	EffectValueA5	EffectValueB5	EffectValueC5	AddSkill1	AddSkill2	AddSkill3	AddSkill4	AddSkill5	JobLimit	RealmLimit	SexReq	ItemColor	StarLevel	MaxHoleCount	CanBreak	MaxEndure	EndureReduceType	DisappearWhenNoEndure	UseRestrict	isSoulOfWar	ReincarnationLv	BindType	MaxSkillCnt	 ExpireTime	   MaxFitLV	SuiteiD	Weight	LimitSTR	LimitPHY	LimitPNE	IsBothHands
-1	1	0	金币	1	0	0	0	0	60000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	203	1	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
-2	1	0	将星玉髓	15	0	0	0	0	60000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
-3	1	0	战锤	15	0	0	0	0	60000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
-4	1	0	加速符	15	0	0	0	0	60000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
-5	1	0	招募令	15	0	0	0	0	60000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
-6	1	0	挑战凭证	15	0	0	0	0	60000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
-7	1	0	武将经验	15	0	0	0	0	60000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
-8	1	0	进阶丹	15	0	0	0	0	60000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
-9	1	0	觉醒石	15	0	0	0	0	60000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
-10	1	0	洗炼石	15	0	0	0	0	60000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
-11	1	0	将魂	15	0	0	0	0	60000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
-30	1	0	测试	65	0	0	0	0	60000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+1	1	0	金币	1	0	0	0	0	2000000000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	203	1	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+2	1	0	将星玉髓	15	0	0	0	0	2000000000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+3	1	0	战锤	15	0	0	0	0	2000000000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+4	1	0	加速符	15	0	0	0	0	2000000000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+5	1	0	招募令	15	0	0	0	0	2000000000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+6	1	0	挑战凭证	15	0	0	0	0	2000000000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+7	1	0	武将经验	15	0	0	0	0	2000000000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+8	1	0	进阶丹	15	0	0	0	0	2000000000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+9	1	0	觉醒石	15	0	0	0	0	2000000000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	4	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+10	1	0	洗炼石	15	0	0	0	0	2000000000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+11	1	0	将魂	15	0	0	0	0	2000000000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+30	1	0	测试	65	0	0	0	0	2000000000	1	0	0	0	1	0	0	0	0	0	1	2	3	20	0	1	0	0	0	0	3	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	2	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
 100101	1	0	长枪	101	1	1	0	0	1	1	1	1	0	1	0	0	0	0	0	1	1	3	61	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
 100102	1	0	臂铠	102	2	1	0	0	1	1	1	1	0	1	0	0	0	0	0	1	1	3	61	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
 100103	1	0	头盔	103	3	1	0	0	1	1	1	1	0	1	0	0	0	0	0	1	1	3	61	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0

--
Gitblit v1.8.0