From 4355dca59d05b3535ad034759710c2139f317622 Mon Sep 17 00:00:00 2001
From: xdh <xiefantasy@qq.com>
Date: 星期五, 07 九月 2018 14:35:06 +0800
Subject: [PATCH] fix:3334 子 新增主角名字屏幕列表
---
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py | 23 +++++++----------------
1 files changed, 7 insertions(+), 16 deletions(-)
diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py
index 64b85fb..69587df 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py
@@ -363,6 +363,9 @@
def GetItemPackType(itemType, defaultPack=IPY_GameWorld.rptItem):
## 获取物品类型对应存放的默认背包类型
+ if defaultPack == ShareDefine.rptTreasure:
+ #寻宝背包不做处理
+ return defaultPack
for pack, itemTypeList in Def_PackItemTypeList_Dict.items():
if itemType in itemTypeList:
return pack
@@ -397,6 +400,7 @@
Def_Effect_AddDienstgrad = 204 #使用物品获得称号
Def_Effect_UseItemGiveZhenQi = 205 #使用道具给予真气
Def_Effect_ItemGiveFamilyActivity = 208 #使用道具给予仙盟活跃令
+Def_Effect_ItemGiveFamilyContribution = 209 #使用道具给予仙盟贡献
Def_Effect_TJGAddTime = 210 #增加脱机挂时间
Def_Effect_ItemAddExp = 213 #给经验道具
Def_Effect_ItemAddLV = 214 #直接升级道具
@@ -3733,6 +3737,7 @@
#仙盟红包
Def_PDict_FamilyRedPacketGoldLimit = "FmlRedPacketGoldLimit" # 仙盟钻石红包已发额度
+Def_PDict_FamilyRedPacketCache = "FamilyRedPacketCache%s" # 仙盟红包待发放记录参数索引
Def_PDict_OSRedPacketGrabMoney = "OSRedPacketGrabMoney" # 开服红包已抢数量
Def_PDict_OSRedPacketCanGrabCnt = "OSRedPacketCanGrabCnt" # 开服红包可抢次数
Def_PDict_OSRedPacketStartTime = "OSRedPacketStartTime" #开服红包开始倒计时时间
@@ -4291,21 +4296,6 @@
TriggerType_OneDamage, # 伤害降低到1点 49
) = range(1, 50)
-#增强类型定义,参考SkillBoosts下的SkillBoost_文件
-BoostType_HappenRate = 4 # 触发几率特殊处理 - 增强
-WeakenType_HappenRate = 104 # 触发几率特殊处理 - 减弱
-
-#MapConfig表中的索引定义-----------------------------------------------------------
-# 表SkillBoostEffDropRate 中的 列表索引定义
-(
-Def_SkillBoostTable_SkillTypeID,
-Def_SkillBoostTable_BoostType,
-Def_SkillBoostTable_SkillEffectID,
-Def_SkillBoostTable_ParentSkillTypeID, # 相对Def_SkillBoostTable_SkillTypeID的父技能如召唤
-Def_SkillBoostTable_MinValue,
-Def_SkillBoostTable_MaxValue,
-Def_SkillBoostTable_NotifyValue,
-) = range(7)
# NPC功能类型定义
Def_NPCFuncType_Goblin = 70 # 盗宝哥布林
@@ -4476,7 +4466,8 @@
# 可在跨服中消费的类型列表
MergeServerCanCostType = [Def_Cost_UseSpeaker, Def_Cost_Revive, Def_Cost_FBEncourage]
-
+#内部仙玉不能用的消费类型列表
+UnUseInner_CostType = [Def_Cost_BourseBuy, Def_Cost_FamilyRedPacket]
# 消费类型对应信息字典{消费类型:[eventName, 中文说明reason_name, 发送给9377的数据是否分消费子类], }
# 由于9377那边数据建议所有消费点总和最好不超过500个,故这里对部分发送给对方的数据进行归组为不分子类,或直接归属于商城分组
# .使用原价购买的物品统一归属为商城组,消费对应为AutoBuy的也归属于商城分组
--
Gitblit v1.8.0