From 2411e93a5f03e488c2358957e99b074d0209b64c Mon Sep 17 00:00:00 2001 From: xdh <xiefantasy@qq.com> Date: 星期三, 13 三月 2019 16:40:02 +0800 Subject: [PATCH] 6291 【后端】【2.0】限时仙盟boss(失败通知) --- ServerPython/CoreServerGroup/GameServer/Script/ChConfig.py | 41 +++++++++++++++++++++++++++++++++++------ 1 files changed, 35 insertions(+), 6 deletions(-) diff --git a/ServerPython/CoreServerGroup/GameServer/Script/ChConfig.py b/ServerPython/CoreServerGroup/GameServer/Script/ChConfig.py index 090fc4d..aca4e02 100644 --- a/ServerPython/CoreServerGroup/GameServer/Script/ChConfig.py +++ b/ServerPython/CoreServerGroup/GameServer/Script/ChConfig.py @@ -675,6 +675,8 @@ Def_FBMapID_XMZZ = 31010 #仙盟boss副本 Def_FBMapID_FamilyBossMap = 31210 +#多仙盟Boss +Def_FBMapID_AllFamilyBoss = 31260 #宗门试炼 Def_FBMapID_MunekadoTrial = 60010 #混乱妖域 @@ -718,12 +720,6 @@ # 邮件(补偿)默认发件人, 具体做活动再定 Def_Mail_SenderSys = "SenderSys" # 默认邮件发送人 - -# 邮件类型划分,用于每种类型的保存上限 -( -Mail_Type_Default, -Mail_Type_Market, -) = range(2) # 竖杠 Def_Str_Montant = "|" @@ -795,3 +791,36 @@ VIPPrivilege_XianyuanCoinUpperAdd, #33 仙缘币上限加成 VIPPrivilege_XianyuanCoinAddPer, #34 仙缘币获得倍率加成(万分比) ) = range(1, 35) + +#游戏货币来源类型定义 +( +Def_GiveMoney_Unknown, # 未知 0 +Def_GiveMoney_GM, +Def_GiveMoney_CTG, +Def_GiveMoney_GMTCTG, +Def_GiveMoney_CoinToGold, +Def_GiveMoney_SuperAccountCreate, # 创角赠送 5 +Def_GiveMoney_Mission, # 任务 +Def_GiveMoney_Pray, # 祈祷 +Def_GiveMoney_UseItem, # 使用物品 +Def_GiveMoney_Pickup, # 拾取 +Def_GiveMoney_Bourse, # 交易所 10 +Def_GiveMoney_GoldInvest, # 绑钻投资 +Def_GiveMoney_Recover, # 资源找回 +Def_GiveMoney_RedPacket, # 红包 +Def_GiveMoney_RefineGift, # 炼制奖励 +Def_GiveMoney_Mail, # 邮件(补偿) 15 +Def_GiveMoney_RuneDecompose, # 符印 +Def_GiveMoney_Warehouse, # 仓库 +Def_GiveMoney_SellPackItem, # 出售背包物品 +Def_GiveMoney_CollectNPC, # 采集NPC +Def_GiveMoney_HighLadder, # 天梯竞技场 20 +Def_GiveMoney_StallItem, # 摆摊 +Def_GiveMoney_Trade, # 交易 +Def_GiveMoney_Truck, # 运镖 +Def_GiveMoney_FreeGoods, # 极品白拿 +Def_GiveMoney_BindJadeWheel, # 绑玉转盘 25 +Def_GiveMoney_GatherSoulDecompose, #聚魂分解 26 +Def_GiveMoney_AuctionBidReturn, #拍卖竞价返还 +Def_GiveMoney_AuctionGain, #拍卖获得利润 +) = range(1000, 1000 + 29) -- Gitblit v1.8.0