shawenguan 1 год назад
Родитель
Сommit
e6a712f075
1 измененных файлов с 7 добавлено и 4 удалено
  1. 7 4
      Scripts/168/pksPlanHelper.js

+ 7 - 4
Scripts/168/pksPlanHelper.js

@@ -531,7 +531,7 @@ async function analyseBetProbability(planType, pksPlanItemData, pksPlanListData)
 		maxTurnCount = turnNumC * 3;
 		logMsg += `\n[1]推荐计划C与AB号码交合次数:${curMateCount}/${maxMateCount}`;
 	}
-	logMsg += `\n[2]推荐计划CBA相合系数:(${turnNumC}+${turnNumB}+${turnNumA})=${(turnNumC + turnNumB + turnNumA)}/${maxTurnCount}`;
+	logMsg += `\n[2]推荐计划CBA相合连续期数系数:(${turnNumC}+${turnNumB}+${turnNumA})=${(turnNumC + turnNumB + turnNumA)}/${maxTurnCount}`;
 	let factor1 = 25 * (curMateCount / maxMateCount);
 	let factor2 = 0;
 	if (maxTurnCount > 5) {
@@ -620,10 +620,11 @@ async function checkPlanCBuyNotify(pksPlanItemData, pksPlanListData) {
 		if (probability >= proAllowValue) {
 			let maxBetAmount = getPlanLotteryMaxBetAmount();
 			let betRet = await tryDragonBet(preDrawIssue, planC, turnOneCost, maxBetAmount);
+			tipsMsg += `\n预估中奖率:${probability.toFixed(2)}`;
 			tipsMsg += analyseLogMsg;
 		} else {
 			tipsMsg = '⚠️' + tipsMsg;
-			tipsMsg += `\n率:${probability.toFixed(2)},小于预设值${proAllowValue},请自主下单`;
+			tipsMsg += `\n预估中奖率:${probability.toFixed(2)},小于预设值${proAllowValue},请自主下单`;
 			tipsMsg += analyseLogMsg;
 		}
 	}
@@ -680,9 +681,10 @@ async function checkPlanBBuyNotify(pksPlanItemData, pksPlanListData) {
 			let maxBetAmount = getPlanLotteryMaxBetAmount();
 			let betRet = await tryDragonBet(preDrawIssue, planB, turnOneCost, maxBetAmount);
 			tipsMsg += analyseLogMsg;
+			tipsMsg += `\n预估中奖率:${probability.toFixed(2)}`;
 		} else {
 			tipsMsg = '⚠️' + tipsMsg;
-			tipsMsg += `\n率:${probability.toFixed(2)},小于预设值${proAllowValue},请自主下单`;
+			tipsMsg += `\n预估中奖率:${probability.toFixed(2)},小于预设值${proAllowValue},请自主下单`;
 			tipsMsg += analyseLogMsg;
 		}
 	}
@@ -739,9 +741,10 @@ async function checkPlanABuyNotify(pksPlanItemData, pksPlanListData) {
 			let maxBetAmount = getPlanLotteryMaxBetAmount();
 			let betRet = await tryDragonBet(preDrawIssue, planA, turnOneCost, maxBetAmount);
 			tipsMsg += analyseLogMsg;
+			tipsMsg += `\n预估中奖率:${probability.toFixed(2)}`;
 		} else {
 			tipsMsg = '⚠️' + tipsMsg;
-			tipsMsg += `\n率:${probability.toFixed(2)},小于预设值${proAllowValue},请自主下单`;
+			tipsMsg += `\n预估中奖率:${probability.toFixed(2)},小于预设值${proAllowValue},请自主下单`;
 			tipsMsg += analyseLogMsg;
 		}
 	}