mirkosp wrote:
- Code: Select all
Private Sub AMVLottery()
Do
butt = leek
Loop Until innerchild = dead
End Sub
Wait, so is this suppose to loop until innerchild is dead?
I ask this because you're using an assignment statement as a test statement, which will always return true, hence it will not loop, because the test option is met.
should be:
- Code: Select all
Private Sub AMVLottery()
Do
butt = leek
Loop Until innerchild == dead
End Sub














