17.04.2012, 17:08
(
Последний раз редактировалось iggy1; 17.04.2012 в 21:14.
)
Tiny function, i originally couldn't think of a use for it but southclaw suggested it could be useful for errors. This function will make the machine it is run on beep x (iTimes) amount of times.
Or
pawn Код:
stock PcBeep( iTimes )
{
new i=0;
while( i < iTimes )
{
print("\7");
i++;
}
}
pawn Код:
#define PC_BEEP(%0); new __itr=0; while( __itr < %0 ) print("\7"), __itr++;