AutoHotkey

@Edit

Already been answered

Could someone tell me if you use an Automator script for macros is punishable? I use this for years, but recently a friend said I should stop because I can be banned.

Pause::
Suspend
Pause,,1
return

1::
If running
{
	SetTimer, Sendmeanangel, off
	Running := 0
}
Else
{
	SetTimer, Sendmeanangel, 250
	Running := 1
}
Return

Sendmeanangel:
Send {2}
Return

This script makes the [2] be performed 4 times per second. This action is enabled and disabled by the [1] key on your keyboard.

Sorry if there are any errors, I used google translator.