9912 [BT0.1]BOSS凭证(支持不同boss标识配置不同的掉落凭证个数饼图;)
1个文件已修改
6 ■■■■ 已修改文件
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerActBossTrial.py 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerActBossTrial.py
@@ -177,13 +177,13 @@
    return
def GetBossTrialDropItemIDList(curPlayer, limitIndex):
    bossIndexList = IpyGameDataPY.GetFuncEvalCfg("BossTrial", 2)
    if limitIndex not in bossIndexList:
    bossIndexDropRateDict = IpyGameDataPY.GetFuncEvalCfg("BossTrial", 4)
    if limitIndex not in bossIndexDropRateDict:
        return
    dropCountRateList = bossIndexDropRateDict[limitIndex]
    
    dropCountTotal = 0
    itemID = IpyGameDataPY.GetFuncCfg("BossTrial", 1)
    dropCountRateList = IpyGameDataPY.GetFuncEvalCfg("BossTrial", 3)
    
    for actInfo in PyGameData.g_operationActionDict.get(ShareDefine.OperationActionName_BossTrial, {}).values():
        actNum = actInfo.get(ShareDefine.ActKey_ActNum, 0)