From 95fcaaafe13a1c0a2ff7706fe7cc1964f921b7c3 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期五, 02 十一月 2018 14:04:26 +0800 Subject: [PATCH] 4399 【后端】【1.2.0】聊天新增支持气泡框选择功能 --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py index aaa490d..e09a05d 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py @@ -420,6 +420,7 @@ Def_Effect_AddKillBossCnt = 234 # 增加BOSS可击杀次数 Def_Effect_DogzEquipPlusExp = 235 # 神兽强化材料经验效果,A值基础经验,B值双倍强化消耗仙玉 Def_Effect_AddMagicWeaponUpExp = 236 # 增加法宝升星经验 A值法宝ID B值X经验 +Def_Effect_ChatBubbleBox = 237 # 激活聊天气泡框,A值气泡框ID #----以下未使用或代码依然存在的--- Def_Effect_ItemGiveGongXun = 1920 #使用道具给予功勋 Def_Effect_ItemGiveHonorPoint = 1922 #使用道具给予荣誉积分 @@ -3631,6 +3632,11 @@ Def_PDict_WishingWellRefreshCnt = "WishingWellRefreshCnt" # 付费刷新次数 Def_PDict_WishingWellItem = "WishingWellItem_%s_%s" # 物品ID,是否极品、是否绑定信息 参数(类型,物品数据) Def_PDict_WishingWellItemCnt = "WishingWellItemCnt_%s_%s" # 物品数量记录 参数(类型,物品数据) + +#聊天气泡 +Def_PDict_ChatBubbleBoxUseID = "ChatBubbleBoxUseID" # 聊天气泡当前使用的气泡框ID +Def_PDict_ChatBubbleBoxState = "ChatBubbleBoxState_%s" # 聊天气泡状态, 参数(key编号) + #------------------------------------------------------------------------------- #类型 Def_PDictType_OnlinePrize Def_PDict1_OnlinePrizeCnt = "OnlinePrizeCnt" # 新手在线已领取奖励次数 @@ -4730,7 +4736,8 @@ ItemDel_AddFBCnt, # 增加副本可进入次数 31 ItemDel_AddKillBossCnt, # 增加BOSS可击杀次数 32 ItemDel_DogzEquipPlus, # 神兽装备强化 -) = range(2000, 2000 + 34) +ItemDel_ChatBubbleBox, # 激活聊天气泡框 +) = range(2000, 2000 + 35) # 物品扣除类型对应信息 {类型:eventName, ...} ItemDelTypeDict = { -- Gitblit v1.8.0