ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ShareDefine.py
@@ -143,7 +143,7 @@
Def_Notify_WorldKey_ReloadJpegCaptcha = 'ReloadJpegCaptcha'           # 重读tex图形验证码
Def_Notify_WorldKey_GameServerScriptReloadVersion = 'GameServerScriptReloadVersion' # GameServer 脚本重读版本标记
Def_Notify_WorldKey_MapServerScriptReloadVersion = 'MapServerScriptReloadVersion'  # MapServer 脚本重读版本标记
Def_Notify_WorldKey_InitGameWorldTime = "InitGameWorldTime"  #启动服务器时间
Def_Notify_WorldKey_OperationActionInfo = "OperationActionInfo_%s" # 运营活动信息,参数为运营活动名
Def_Notify_WorldKey_DailyActionState = "DailyActionState_%s" # 日常活动状态,参数为日常活动ID
Def_Notify_WorldKey_FBEnterTimeLimiitMapID = "FBEnterTimeLimiitMapID" # 进入副本有时间限制的地图ID列表
@@ -233,12 +233,15 @@
OperationActionName_FairyCeremony = "ActFairyCeremony" # 仙界盛典活动
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_RealmPoint, OperationActionName_FlashSale,
                           OperationActionName_WishingWell, OperationActionName_TotalRecharge]
#需要记录开启活动时的世界等级的运营活动
NeedWorldLVOperationActNameList = [OperationActionName_FairyCeremony]
NeedWorldLVOperationActNameList = [OperationActionName_FairyCeremony, OperationActionName_WishingWell]
#活动信息字典key定义
ActKey_ID = "ID" # 活动ID,唯一标识的ID,一般是活动开启的time值
@@ -561,6 +564,7 @@
    Def_BT_Campaign_FightPower,               #战力排行(开服活动榜)
    
    Def_BT_FCCostGold,                        #消费排行榜(仙界盛典)
    Def_BT_Campaign_RuneLV,                   #符印等级(开服活动榜)
    
    Def_BT_HighLadder,                        #天梯竞技场排行
    Def_BT_HighLadder_Yester,                 #天梯竞技场昨日排行
@@ -578,7 +582,7 @@
    Def_BT_MergePKWeek,                       #跨服PK周积分榜
    
    Def_BT_Max,                               #排行榜最大类型
) = range(0, 29 + 2)
) = range(0, 30 + 2)
    
#职业对应战力排行榜类型
JobFightPowerBillboardDict = {
@@ -771,7 +775,8 @@
CDBPlayerRefresh_NPCHurtAddPer,         # 对怪物伤害加成
CDBPlayerRefresh_FinalHurtPer,             # 最终输出伤害百分比
CDBPlayerRefresh_TalentPoint,           # 天赋点数 190
) = range(146, 191)
CDBPlayerRefresh_FBHelpPoint,           # 副本助战点数 191
) = range(146, 192)
TYPE_Price_Gold_Paper_Money = 5    # 金钱类型,(先用礼券,再用金子)
TYPE_Price_Family_Contribution = 6 # 战盟贡献度(活跃度转换得来)
@@ -850,6 +855,9 @@
GameFuncID_FreeGoods = 130      # 极品白拿
GameFuncID_OSSail = 132         # 开服特惠
GameFuncID_HorsePetRobBoss = 139# 骑宠争夺
GameFuncID_AddPoint = 145       # 加点功能
GameFuncID_LittleHelper = 146   # 小助手
GameFuncID_TJG = 147            # 脱机挂
# 以下为暂时无用的
GameFuncID_Truck = 33           # 运镖
GameFuncID_RunDaily = 34        # 日常跑环
@@ -872,7 +880,8 @@
Def_TalkExtraValue_Bit_VipLv,  # vip等级
Def_TalkExtraValue_Bit_GM,            #GM
Def_TalkExtraValue_Bit_JOB, #job
) = range(0, 3)
Def_TalkExtraValue_Bit_BubbleBox, #气泡框
) = range(0, 4)
#聊天信息附加值中某信息数据所占位置
#{聊天信息附加值类型:[起始位置(从左往右), 结束位置(不包含)]}
@@ -880,6 +889,7 @@
     Def_TalkExtraValue_Bit_VipLv:[0, 2],  # vip等级
     Def_TalkExtraValue_Bit_GM:[2, 3],  # GM
     Def_TalkExtraValue_Bit_JOB:[3, 4],  # job
     Def_TalkExtraValue_Bit_BubbleBox:[4, 6],  # 气泡框
     }
# 聊天频道 暂用语音
@@ -1079,7 +1089,8 @@
Def_Campaign_Type_LV,               # 冲级等级排行 4
Def_Campaign_Type_RealmLV,          # 境界等级排行 5
Def_Campaign_Type_FightPower,       # 总战斗力排行 6
) = range(1, 1 + 6)
Def_Campaign_Type_RuneLV,           # 符印等级排行 7
) = range(1, 1 + 7)
# 活动类型对应的奖励排行榜{活动类型:排行榜, ...}
Def_Campaign_Billboard_Dict = {
@@ -1089,6 +1100,7 @@
                               Def_Campaign_Type_LV:Def_BT_Campaign_LV,
                               Def_Campaign_Type_RealmLV:Def_BT_Campaign_RealmLV,
                               Def_Campaign_Type_FightPower:Def_BT_Campaign_FightPower,
                               Def_Campaign_Type_RuneLV:Def_BT_Campaign_RuneLV,
                               }
# 活动数据状态
@@ -1506,7 +1518,7 @@
SuccType_XXX24 , # 废弃24
SuccType_XXX25, # 废弃25
SuccType_EquipPlus, # 强化x次成就26
SuccType_EquipPlusLV, # x件装备强化等级达到x级27
SuccType_EquipPlusLV, # x件装备强化等级达到x级27 (已废弃)
SuccType_KillWorldBoss, # 击杀世界bossx次成就(有伤害就算)28
SuccType_XXX29, # 废弃29
SuccType_PassWagicWeapon, # 通关法宝副本30
@@ -1640,6 +1652,7 @@
NeedResetSuccessTypeList = [
                            SuccType_InlayStone1,SuccType_InlayStone2,SuccType_EquipSuit,SuccType_InlayRune,
                            SuccType_EquipColorItem,SuccType_EquipArmor,SuccType_EquipWeapon,SuccType_DogzEquipPlus,
                            SuccType_HorseAllLV, SuccType_EquipPlusLV,SuccType_PetClassLV,
                            ]
# 聊天类型, 从100开始, 前100个给c++用