From 4a5b10c5ca95f49cf3700619e1033da645c9de89 Mon Sep 17 00:00:00 2001
From: xdh <xiefantasy@qq.com>
Date: 星期五, 23 十一月 2018 11:37:37 +0800
Subject: [PATCH] 4969 上古战场退出副本清除buff

---
 ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ShareDefine.py |   21 +++++++++++++++------
 1 files changed, 15 insertions(+), 6 deletions(-)

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ShareDefine.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ShareDefine.py
index 75a5f7b..37ba082 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ShareDefine.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ShareDefine.py
@@ -234,11 +234,12 @@
 OperationActionName_RealmPoint = "ActRealmPoint" # 多倍修行点活动
 OperationActionName_FlashSale = "ActFlashSale" # 限时抢购活动
 OperationActionName_WishingWell = "ActWishingWell" # 许愿池活动
+OperationActionName_TotalRecharge = "ActTotalRecharge" # 累计充值活动
 OperationActionNameList = [OperationActionName_ExpRate, OperationActionName_CostRebate, 
                            OperationActionName_BossReborn,OperationActionName_SpringSale, 
                            OperationActionName_FlashGiftbag, OperationActionName_FairyCeremony,
                            OperationActionName_RealmPoint, OperationActionName_FlashSale,
-                           OperationActionName_WishingWell]
+                           OperationActionName_WishingWell, OperationActionName_TotalRecharge]
 #需要记录开启活动时的世界等级的运营活动
 NeedWorldLVOperationActNameList = [OperationActionName_FairyCeremony, OperationActionName_WishingWell]
 
@@ -310,7 +311,8 @@
     Def_mitMWUpLevel,         # 法宝进阶
     Def_mitRecycleAttrFruit,  # 回收魂石
     Def_mitDogzEquipPlus,     # 神兽装备强化
-) = range(1, 22)
+    Def_mitRuneCompound,      # 符印合成
+) = range(1, 23)
 
 #---写死的技能ID---
 Def_SkillID_AutoTruck = 62220   # 自动运镖buff
@@ -772,9 +774,14 @@
 CDBPlayerRefresh_TreasureScore,         # 寻宝积分
 CDBPlayerRefresh_Danjing,               # 丹精
 CDBPlayerRefresh_NPCHurtAddPer,         # 对怪物伤害加成
-CDBPlayerRefresh_FinalHurtPer,             # 最终输出伤害百分比
+CDBPlayerRefresh_FinalHurtPer,          # 最终输出伤害百分比
 CDBPlayerRefresh_TalentPoint,           # 天赋点数 190
-) = range(146, 191)
+CDBPlayerRefresh_DayFBHelpPoint,        # 今日副本助战点数 191
+CDBPlayerRefresh_GodWeaponLV_1,         # 神兵等级 - 类型1 192
+CDBPlayerRefresh_GodWeaponLV_2,         # 神兵等级 - 类型2 193
+CDBPlayerRefresh_GodWeaponLV_3,         # 神兵等级 - 类型3 194
+CDBPlayerRefresh_GodWeaponLV_4,         # 神兵等级 - 类型4 195
+) = range(146, 196)
 
 TYPE_Price_Gold_Paper_Money = 5    # 金钱类型,(先用礼券,再用金子)
 TYPE_Price_Family_Contribution = 6 # 战盟贡献度(活跃度转换得来)
@@ -838,7 +845,7 @@
 GameFuncID_Official = 12        # 官爵,境界
 GameFuncID_Family = 15          # 战盟,仙盟
 GameFuncID_GodWeapon = 20       # 神器
-GameFuncID_Talent = 28     # 天赋
+GameFuncID_Talent = 149         # 天赋
 GameFuncID_RefineExp = 60       # 经验炼制,祈愿
 GameFuncID_RefineMoney = 61     # 金币炼制,祈愿
 GameFuncID_WorldLV = 71         # 世界等级
@@ -856,6 +863,7 @@
 GameFuncID_AddPoint = 145       # 加点功能
 GameFuncID_LittleHelper = 146   # 小助手
 GameFuncID_TJG = 147            # 脱机挂
+GameFuncID_SuperGift = 150      # 超值礼包
 # 以下为暂时无用的
 GameFuncID_Truck = 33           # 运镖
 GameFuncID_RunDaily = 34        # 日常跑环
@@ -1483,7 +1491,8 @@
 DailyActionID_BOSSHome, # BOSS之家
 DailyActionID_FamilyRobBoss, # 仙盟抢boss
 DailyActionID_KillNPC, # 野外怪物
-) = range(1, 18 + 1)
+DailyActionID_IceLode, # 冰晶矿脉
+) = range(1, 19 + 1)
 
 
 

--
Gitblit v1.8.0