guihacker icon indicating copy to clipboard operation
guihacker copied to clipboard

What does this part do exactly?

Open b3ck opened this issue 2 years ago • 1 comments

What does this part do exactly?

gui_hacker_code_01

Just wanted to know if there was a way to have it run for a certain time, then once it reaches it's time limit what happens?

b3ck avatar Sep 22 '22 01:09 b3ck

Sorry for the late response... didn't see this notification.

That all just controls the actual text on the bottom. So the "isProcessing" is just a flag for showing the dots, when it does like

some message.......

Then after X time period it resets it with last process,

which does

some message......
new message

Then the "isProcessing" is flipped to true, and the dots are added, and the process repeats,.

lines 205 - 226 here, https://github.com/loktar00/guihacker/blob/master/public/javascripts/hack.js#L205

loktar00 avatar Nov 03 '22 17:11 loktar00