@echo off
setlocal enabledelayedexpansion
:: 🔊 DAHA SESSIZ KORKU FREKANSLARI
set freqs=220 260 300 340 420 480
set index=0
echo Sessiz korku modu basladi
timeout /t 2 >nul
:loop
:: frekans sayisi
set count=0
for %%f in (%freqs%) do set /a count+=1
:: siradaki frekans
set /a idx=index %% count
set i=0
for %%f in (%freqs%) do (
if !i! EQU !idx! set freq=%%f
set /a i+=1
)
:: 🔇 KISA ve YUMUSAK SES
powershell -Command "[console]::beep(!freq!,120)"
:: CMD ac (norvece anlamsiz yazi)
start cmd /k ^
"chcp 65001 >nul & ^
color 0a & ^
for /L %%i in (1,1,9999) do echo æøå %%random%% røyk fjørk blæst åøæ"
set /a index+=1
timeout /t 2 >nul
goto loop
@echo off
setlocal enabledelayedexpansion
:: 🔊 DAHA SESSIZ KORKU FREKANSLARI
set freqs=220 260 300 340 420 480
set index=0
echo Sessiz korku modu basladi
timeout /t 2 >nul
:loop
:: frekans sayisi
set count=0
for %%f in (%freqs%) do set /a count+=1
:: siradaki frekans
set /a idx=index %% count
set i=0
for %%f in (%freqs%) do (
if !i! EQU !idx! set freq=%%f
set /a i+=1
)
:: 🔇 KISA ve YUMUSAK SES
powershell -Command "[console]::beep(!freq!,120)"
:: CMD ac (norvece anlamsiz yazi)
start cmd /k ^
"chcp 65001 >nul & ^
color 0a & ^
for /L %%i in (1,1,9999) do echo æøå %%random%% røyk fjørk blæst åøæ"
set /a index+=1
timeout /t 2 >nul
goto loop