Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. iCounter := 1
  2. boxSteps := []
  3.  
  4. boxSteps[1] := "Stand up."
  5. boxSteps[2] := "Choose a destination."
  6. boxSteps[3] := "Go."
  7. boxSteps[4] := "Enjoy your trip there."
  8. boxSteps[5] := "Arrive."
  9. boxSteps[6] := "Have fun there."
  10.  
  11. F1::
  12. if (iCounter = 7){
  13. iCounter := 1
  14. }
  15. MsgBox, 0x1001, Live!, % boxSteps[iCounter]
  16. ifMsgBox, OK
  17. iCounter+=1
  18. return
  19. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement