Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Asking very basic command
#6
Little by little, I am getting used to it. As for why my trigger isn’t working, it’s because I’m still making the script in the editor. I need to either make it into an exe or press start in the editor first for the macro/script to run, right?

https://prnt.sc/1g--2epoGtEx

for infinity loop
 
Code:
Copy      Help
for (;;) { //repeat forever or until break/return/goto/throw
    500.ms(); //wait 500 ms
    print.it(1);
    if (keys.isCtrl) break; //exit the for block
    if (keys.isShift) continue; //skip remaining statements
    print.it(2);
}

for (int i = 0, j = 0; i < 5 && !keys.isShift; i++, j+=10) {
    print.it(i, j);
    500.ms();
}


i found in cook book inside the editor not from website .


Messages In This Thread
Asking very basic command - by Rudeyz - 11-01-2024, 10:26 PM
RE: Asking very basic command - by Rudeyz - 11-04-2024, 05:59 AM
RE: Asking very basic command - by Gintaras - 11-04-2024, 08:06 AM
RE: Asking very basic command - by Rudeyz - 11-11-2024, 06:47 AM
RE: Asking very basic command - by Gintaras - 11-11-2024, 07:29 AM
RE: Asking very basic command - by Rudeyz - 11-15-2024, 09:31 AM
RE: Asking very basic command - by Rudeyz - 12-11-2024, 09:28 AM
RE: Asking very basic command - by Gintaras - 12-11-2024, 10:07 AM

Forum Jump:


Users browsing this thread: 2 Guest(s)