From 4d0ea0c5ac258cfdaccc46b9d8910b0938f08c5b Mon Sep 17 00:00:00 2001 From: xdh <xiefantasy@qq.com> Date: 星期五, 21 十二月 2018 10:58:12 +0800 Subject: [PATCH] 5540 【后端】【1.4】新增成就类型 --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ShareDefine.py | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ShareDefine.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ShareDefine.py index 79f1202..a3cd5d6 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ShareDefine.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ShareDefine.py @@ -1655,7 +1655,9 @@ SuccType_DogzBattle, #x神兽出战129 SuccType_DogzEquipPlus, #出战神兽装备总强化X级130 SuccType_Collect, #采集X物品X次131 -) = range(1, 132) +SuccType_InlayGatherSoul, #镶嵌X枚X品质聚魂(不包含核心)44 +SuccType_GatherSoulLvUp, #累计聚魂总等级XX(不包含核心)45 +) = range(1, 134) @@ -1684,7 +1686,7 @@ NeedResetSuccessTypeList = [ SuccType_InlayStone1,SuccType_InlayStone2,SuccType_EquipSuit,SuccType_InlayRune, SuccType_EquipColorItem,SuccType_EquipArmor,SuccType_EquipWeapon,SuccType_DogzEquipPlus, - SuccType_HorseAllLV, SuccType_EquipPlusLV,SuccType_PetClassLV, + SuccType_HorseAllLV, SuccType_EquipPlusLV,SuccType_PetClassLV,SuccType_InlayGatherSoul, ] # 聊天类型, 从100开始, 前100个给c++用 -- Gitblit v1.8.0