11-15-2024, 09:31 AM
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
https://prnt.sc/1g--2epoGtEx
for infinity loop
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 .