9134 【BT3】【主干】新增物品获得活动积分(增加直接给货币物品类型65,A值数量,B值货币类型)

# Conflicts:
# ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Item/ItemControler.py
2个文件已修改
3 ■■■■ 已修改文件
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/MakeItemCount.py 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py
@@ -356,6 +356,7 @@
Def_ItemType_GatherSoulExp = 61 #聚魂精华材料
Def_ItemType_GatherSoul = 62 #普通聚魂
Def_ItemType_GatherSoulCore = 63 #聚魂核心
Def_ItemType_AutoUseMoney = 65 #自动使用货币的物品类型  效果1  A值数量,B值货币类型
Def_ItemType_DogzEquipExp = 70  # 神兽装备经验
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/MakeItemCount.py
@@ -51,7 +51,7 @@
    if not itemData:
        GameWorld.DebugAnswer(curPlayer, '该物品不存在 = %s' % (itemID))
        return
    if itemID in ChConfig.Def_TransformItemIDList:
    if itemID in ChConfig.Def_TransformItemIDList or itemData.GetType() == ChConfig.Def_ItemType_AutoUseMoney:
        curItem = ItemControler.GetOutPutItemObj(itemID, itemCount, curPlayer=curPlayer)
        PlayerItemControler = ItemControler.PlayerItemControler(curPlayer)
        if not PlayerItemControler.PutInItem(IPY_GameWorld.rptItem, curItem, event=event):