From 3d658259b25c4914c766c43aeea883bdd0847c5d Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期一, 04 三月 2019 16:39:42 +0800 Subject: [PATCH] 6250 【后端】【2.0】拍卖行开发单 --- ServerPython/CoreServerGroup/GameServer/Script/ChConfig.py | 35 +++++++++++++++++++++++++++++++++++ 1 files changed, 35 insertions(+), 0 deletions(-) diff --git a/ServerPython/CoreServerGroup/GameServer/Script/ChConfig.py b/ServerPython/CoreServerGroup/GameServer/Script/ChConfig.py index 090fc4d..76a086e 100644 --- a/ServerPython/CoreServerGroup/GameServer/Script/ChConfig.py +++ b/ServerPython/CoreServerGroup/GameServer/Script/ChConfig.py @@ -795,3 +795,38 @@ VIPPrivilege_XianyuanCoinUpperAdd, #33 仙缘币上限加成 VIPPrivilege_XianyuanCoinAddPer, #34 仙缘币获得倍率加成(万分比) ) = range(1, 35) + +Def_MailMoneySource = "MoneySource" # 邮件货币来源key + +#游戏货币来源类型定义 +( +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