how to repeat this iimplay command non-stop

Asked

Viewed 490 times

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 non-stop how to do this.

  • Where does this code come from? I did not identify the language.

  • i use this code in No Imacro for firefox with extension . js it runs 3 macros more makes iso only 1 time

  • But what does this command do? Apparently it is calling other 3 scripts.

  • i have 3 macros ai i use the js script to run each macro 1 more and more it runs only 1 time each macro wanted js to run macros more than once type when

  • immaro aceita js, maybe it is easier for someone to help you by javascript. I myself did not identify which language is the one that uses iimPlay

1 answer

0


As well as colleagues did not understand what 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 using "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");
}
  • thanks for the help the code is working more when I click stop in the immaculate firefox he could not to tell me would be the code setting a amount to script run instead of gets infinite

  • Well in the case of "for" just set the amount of times she will run like this: for (var i = 0; i < 10; i++) { in which case he will run 10x.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.