14.08.2011, 07:40
There's nothing wrong with the code you presented there. My assumption would be you didn't place the SetTimer function into a callback/function of it's own. I would guess that it should be placed under OnGameMode/FilterScriptInit callback.
pawn Код:
public OnGameModeInit( )
{
// current code
SetTimer( "AreaCheck", 1000, 1 );
return 1;
}