15.09.2012, 06:01
Create a timer.
Example :
Then call the timer for example, every two seconds under on game mode init.
Example :
pawn Код:
forward CheckArea();
public CheckArea()
{
if(IsPlayerInArea(Coordinates here))
{
//Do your stuff here.
}
return 1;
}
pawn Код:
// Under on game mode init
SetTimer("CheckArea",2000,1);