so right now i have a small project and i wanted to print this text out every second.
i have made a random number for the sleep function. but when i want to print out with the while loop it just doesn't work.
Run("notepad.exe")
Sleep(1000)
Local $rndSleep = Int (Random(180000,240000,1000))
While $rndSleep <> 0
$rndSleep - 1
If Mod ( $rndSleep, 1000 ) == 0 Then
Send("This note will show the sleeptime before closing the tabs, you got " & $rndSleep & " seconds left.")
EndIf
WEnd
plis halp me