Repeat a if statement?

Wylin

New member
if I have a cli script like:

if dance card > 0
use 1 dance card
adventure 4 haunted ballroom

How do I repeat this script from the beginning instead of just repeating the last line?
 

holatuwol

Developer
Use two files. Suppose you save that script as "oneset.txt" or something. In order to invoke the script 50 times, type in:

50x oneset.txt
 
Top