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.
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.
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");
}