if!IsOn("ShowRec") {return}
for {
p.Sys().Timeoutf(60)
- p.Logf().New().Open("danmu.log").Base(1, "Rec").I("营收 ¥", c.Rec)
+ p.Logf().New().Open("danmu.log").Base(1, "Rec").I("营收 ¥", c.Rev)
}
}
}
if price != nil {
sh = append(sh, "¥", int(price.(float64)) / 1000)
- c.Rev += int(price.(float64)) / 1000
+ c.Rev += price.(float64) / 1000
}
{//额外 ass
Assf(fmt.Sprintln(sh...))
if total_coin != nil {
allprice = int64(total_coin.(float64) / 1000)
sh = append(sh, "¥", allprice)
- c.Rev += int(allprice)
+ c.Rev += total_coin.(float64) / 1000
}
if len(sh) == 0 {return}
}
if price != nil {
sh = append(sh, "¥", price, "\n")
- c.Rev += int(price.(float64))
+ c.Rev += price.(float64)
}
fmt.Println("====")
fmt.Println(sh...)