#!/usr/bin/python  
 | 
# -*- coding: GBK -*-  
 | 
#-------------------------------------------------------------------------------  
 | 
#  
 | 
#-------------------------------------------------------------------------------  
 | 
#  
 | 
##@package Player.RemoteQuery.GY_Query_MergePKRecoverWinCost  
 | 
#  
 | 
# @todo:»Ö¸´¿ç·þPKÁ¬Ê¤  
 | 
# @author hxp  
 | 
# @date 2015-11-5  
 | 
# @version 1.0  
 | 
#  
 | 
# ÏêϸÃèÊö: »Ö¸´¿ç·þPKÁ¬Ê¤  
 | 
#  
 | 
#---------------------------------------------------------------------  
 | 
"""Version = 2015-11-05 12:00"""  
 | 
#---------------------------------------------------------------------  
 | 
  
 | 
import PlayerMergePK  
 | 
import GameWorld  
 | 
  
 | 
  
 | 
## Ö´Ðнá¹û  
 | 
#  @param curPlayer ·¢³öÇëÇóµÄÍæ¼Ò  
 | 
#  @param callFunName ¹¦ÄÜÃû³Æ  
 | 
#  @param funResult ²éѯµÄ½á¹û  
 | 
#  @param tick µ±Ç°Ê±¼ä  
 | 
#  @return None  
 | 
#  @remarks º¯ÊýÏêϸ˵Ã÷.  
 | 
def DoResult(curPlayer, callFunName, funResult, tick):  
 | 
    GameWorld.DebugLog("GY_Query_MergePKRecoverWinCost funResult=%s" % funResult)  
 | 
      
 | 
    if not funResult:  
 | 
        return  
 | 
      
 | 
    try:  
 | 
        moneyType, costMoney, cWin, maxCWin = eval(funResult)  
 | 
    except:  
 | 
        GameWorld.ErrLog("GY_Query_MergePKRecoverWinCost() %s eval Error" % funResult)  
 | 
        return  
 | 
      
 | 
      
 | 
    PlayerMergePK.DoRecoverMergePKWinCost(curPlayer, moneyType, costMoney, cWin, maxCWin)  
 | 
    return  
 | 
  
 |