From 0e6caff7fad35b77f5f0074ba86ae7f07a5d5e6b Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期四, 11 十月 2018 15:39:36 +0800
Subject: [PATCH] 2130 【主干】【1.0.18】GM后台查询玩家物品db报错
---
ServerPython/CoreServerGroup/GameServer/Script/ShareDefine.py | 21 +++++++++++----------
1 files changed, 11 insertions(+), 10 deletions(-)
diff --git a/ServerPython/CoreServerGroup/GameServer/Script/ShareDefine.py b/ServerPython/CoreServerGroup/GameServer/Script/ShareDefine.py
index 1306ea2..557b029 100644
--- a/ServerPython/CoreServerGroup/GameServer/Script/ShareDefine.py
+++ b/ServerPython/CoreServerGroup/GameServer/Script/ShareDefine.py
@@ -127,7 +127,7 @@
Def_Notify_Separator = '+'
#通知地图服务器并设置该字典值
-Def_Notify_WorldKey_InitOpenServerTime = 'InitOpenServerTime' # 开服时间
+Def_Notify_WorldKey_OpenServerWeekday = 'OpenServerWeekday' # 开服是周几, 1代表周一
Def_Notify_WorldKey_ServerDay = 'ServerDay' # 开服天数
Def_Notify_WorldKey_IsMixServer = 'IsMixServer' # 是否合服服务器
Def_Notify_WorldKey_MixServerDay = 'MixServerDay' # 合服天数
@@ -188,7 +188,7 @@
Def_Notify_WorldKey_BossKilledCnt = 'BossKilledCnt_%s' # boss击杀次数, 参数为NPCID
Def_Notify_WorldKey_GameWorldBossOnlineCnt = "GameWorldBossOnlineCnt_%s" #世界boss重生时间计算 在线人数统计 %s为bossid
Def_Notify_WorldKey_BossShuntPlayer = 'BossShuntPlayer' # boss分流玩家信息
-Def_Notify_WorldKey_BossShuntDeadLine = 'BossShuntDeadLine' # boss分流线路已死亡的线路
+Def_Notify_WorldKey_BossShuntLineState = 'BossShuntLineState' # boss分流线路对应boss状态
Def_Notify_WorldKey_BossOnlineHeroCnt = 'BossOnlineHeroCnt_%s' # boss刷新时间用的在线人数, 参数为NPCID
Def_Notify_WorldKey_FamilyKillHorsePetRobBossCnt = 'FamilyKillHorsePetRobBossCnt' # 仙盟击杀骑宠boss数统计
Def_Notify_WorldKey_HorsePetRobBossPlayerCount = 'HorsePetRobBossPlayerCount' # 骑宠争夺活动有效参考人数
@@ -769,7 +769,8 @@
CDBPlayerRefresh_Danjing, # 丹精
CDBPlayerRefresh_NPCHurtAddPer, # 对怪物伤害加成
CDBPlayerRefresh_FinalHurtPer, # 最终输出伤害百分比
-) = range(146, 190)
+CDBPlayerRefresh_TalentPoint, # 天赋点数 190
+) = range(146, 191)
TYPE_Price_Gold_Paper_Money = 5 # 金钱类型,(先用礼券,再用金子)
TYPE_Price_Family_Contribution = 6 # 战盟贡献度(活跃度转换得来)
@@ -820,9 +821,6 @@
) = range(1, 4)
-#无限飞buff id--->新手体验VIPBUFF
-Def_FreedomTransBuffID = 11503
-
#区域类型定义, 从5开始, C++定义到 IPY_GameWorld.gatMax 4
(
gatManor, # 领地区域, 领地战期间可PK, 反之为普通区域
@@ -836,6 +834,7 @@
GameFuncID_Official = 12 # 官爵,境界
GameFuncID_Family = 15 # 战盟,仙盟
GameFuncID_GodWeapon = 20 # 神器
+GameFuncID_Talent = 28 # 天赋
GameFuncID_RefineExp = 60 # 经验炼制,祈愿
GameFuncID_RefineMoney = 61 # 金币炼制,祈愿
GameFuncID_WorldLV = 71 # 世界等级
@@ -851,7 +850,6 @@
GameFuncID_OSSail = 132 # 开服特惠
GameFuncID_HorsePetRobBoss = 139# 骑宠争夺
# 以下为暂时无用的
-GameFuncID_GreatMaster = 28 # 大师
GameFuncID_Truck = 33 # 运镖
GameFuncID_RunDaily = 34 # 日常跑环
GameFuncID_RunFamily = 53 # 战盟跑环
@@ -1608,7 +1606,10 @@
SuccType_RefineStoveColor, #炼制X品质丹药X枚126
SuccType_UseStoveBylv, #使用X品丹药X枚127
SuccType_QueenRelicsEx, #通关娲皇遗迹128
-) = range(1, 129)
+SuccType_DogzBattle, #x神兽出战129
+SuccType_DogzEquipPlus, #出战神兽装备总强化X级130
+SuccType_Collect, #采集X物品X次131
+) = range(1, 132)
@@ -1623,7 +1624,7 @@
SuccType_KillSpecificNPC, SuccType_UseStoveBylv,
SuccType_Pray,SuccType_PetClassLV,
SuccType_HorseAllLV, SuccType_QueenRelics,SuccType_XMZZConWin,
- SuccType_EquipSuit,
+ SuccType_EquipSuit,SuccType_Collect,SuccType_DogzBattle,
SuccType_UseItem,SuccType_FamilyTechLV,
SuccType_GetSpecialItem,SuccType_GetMagicWeapon,SuccType_FBEncourage,SuccType_XBXZ,
]
@@ -1636,7 +1637,7 @@
#增加进度前需要重置的成就类型
NeedResetSuccessTypeList = [
SuccType_InlayStone1,SuccType_InlayStone2,SuccType_EquipSuit,SuccType_InlayRune,
- SuccType_EquipColorItem,SuccType_EquipArmor,SuccType_EquipWeapon,
+ SuccType_EquipColorItem,SuccType_EquipArmor,SuccType_EquipWeapon,SuccType_DogzEquipPlus,
]
# 聊天类型, 从100开始, 前100个给c++用
--
Gitblit v1.8.0