我让这个游戏有点像舞蹈革命,我很清楚如何保存连击的最高连击,所以每次你击中箭头 Combo_Counter 增加 1 并且如果你错过 1 你的 Combo_Counter 重置为0 一切都很好,但我想保存最高的连击数,但我不知道该怎么做。这是我的代码示例:
Combo_Count.Text = Combo_Counter
Combo_Counter_2 = Combo_Counter
If Combo_Counter >= 1 Then
Combo.Visible = True
Combo_Count.Visible = True
End If
If Combo_Counter = 0 Then
Combo.Visible = False
Combo_Count.Visible = False
End If