03.01.2013, 21:05
You could use SetTimer function. And call it when someone is attempting to rob.
PHP код:
forward RobberyTimer();
public OnGameModeInit()
{
SetTimer("RobberyTimer", 30000, false);
return 1;
}
public RobberyTimer()
{
return 1;
}