From 5ea28aead9761406845a3bff4d663f53e800fdb6 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期二, 19 三月 2019 19:14:53 +0800
Subject: [PATCH] 6332 【后端】【2.0】主要是拍品相关规则调整及背包优化(去除旧版设置绑定逻辑)

---
 ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/FunctionNPCCommon.py |   30 +-----------------------------
 1 files changed, 1 insertions(+), 29 deletions(-)

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/FunctionNPCCommon.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/FunctionNPCCommon.py
index 040d5b8..0277155 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/FunctionNPCCommon.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/FunctionNPCCommon.py
@@ -1142,35 +1142,7 @@
     priceType = IPY_GameWorld.TYPE_Price_Silver_Money
     curItemPrice = curItem.GetSilverPrice()
     return curItemPrice, priceType
-    #绑定价格售价为0, 2011.4.27
-#    if curItem.GetIsBind():
-#        itrmPrice_bind = eval(ReadChConfig.GetChConfig("ItemSellPrice_Bind"))
-#        return itrmPrice_bind, priceType
-#    
-#    #无耐久物品
-#    if curItemEndure == 0 :
-#        return curItemPrice * 0.5, priceType
-#    
-#    itrmPrice_notBind = eval(ReadChConfig.GetChConfig("ItemSellPrice_NotBind"))
-#    return itrmPrice_notBind, priceType
-#===============================================================================
-#   2010.11.25 绑定售价和非绑定一致
-#        #绑定的
-#        if curItem.GetIsBind():
-#            return curItemPrice * 0.5 * 0.5, curItemType
-#        #非绑定的
-#        return curItemPrice * 0.5, curItemType
-#===============================================================================
-#===============================================================================
-#    
-#    #绑定正常物品出售价格
-#    if curItem.GetIsBind() :
-#        return eval(ChConfig.Def_Formula_ItemSellPrice) * 0.5, curItemType
-#    
-#    #未绑定正常物品出售价格
-#    return eval(ChConfig.Def_Formula_ItemSellPrice), curItemType
-#===============================================================================
-#---------------------------------------------------------------------
+
 ##检查玩家可否开始NPC事件
 # @param curPlayer 玩家实例
 # @return 返回值真, 检查通过

--
Gitblit v1.8.0