Code: Select all
~f::
{
if (GetKeyState("f", "P") and cerbs = 0)
SetTimer Timer1,7200
global cerbs := 1
{
}
if (GetKeyState("f", "P") and cerbs = 1)
Soundbeep 1500
{
}
}
Timer1()
{
global cerbs := 1
static Start_Counter1 := 0
if (Start_Counter1 < 1)
{
Start_Counter1++
Soundbeep 1500
}
if (Start_Counter1 == 1)
{
global cerbs := 0
Start_Counter1 := 0
}
}