mirror of
https://github.com/jie65535/mirai-console-jhr-plugin.git
synced 2025-12-15 18:41:39 +08:00
增加 收益榜与白给榜
This commit is contained in:
@@ -31,11 +31,23 @@ class PlayerStatistics {
|
||||
*/
|
||||
var totalBetScore = 0
|
||||
|
||||
/**
|
||||
* 获胜积分累计
|
||||
*/
|
||||
var totalWinScore = 0
|
||||
|
||||
/**
|
||||
* 失败积分累计
|
||||
*/
|
||||
var totalLossScore = 0
|
||||
|
||||
override fun toString(): String {
|
||||
return "下注次数:${betCount}\n" +
|
||||
"获胜次数:${winCount}\n" +
|
||||
"贡献次数:${contribution}\n" +
|
||||
"签到次数:${signCount}\n" +
|
||||
"下注积分:${totalBetScore}"
|
||||
"下注积分:${totalBetScore}\n" +
|
||||
"收益:${totalWinScore}\n" +
|
||||
"亏损:${totalLossScore}"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user