how to repeat this command iimplay non-stop [closed]

0
iimPlay ("Pixel Coin Bot.iim");
iimPlay ("claim.iim");
iimPlay ("wait.iim");

I have this command but I want it to run this 3 macros without stopping how to do it.

    
asked by anonymous 04.02.2016 / 21:02

1 answer

0

As well as the colleagues, I did not understand the usefulness of this language or in what context it enters ... however if it has some similarity with JavaScript the easiest way to give infinite loop would be to use "for" or "while". something like:

for (;;) {
 iimPlay ("Pixel Coin Bot.iim");
 iimPlay ("claim.iim");
 iimPlay ("wait.iim");
}

OR

while (true) {
 iimPlay ("Pixel Coin Bot.iim");
 iimPlay ("claim.iim");
 iimPlay ("wait.iim");
}
    
05.02.2016 / 02:27