13.11.2015, 10:24
Hello guys i want to make a code that every 5 min there will be explosions for 1 min and then explosions stop after one minute is done.
i have did this so far
i have did this so far
PHP код:
public OnGameModeInit()
{
SetTimer("bombtime", 300000, 1);
return 1;
}
public bombtime()
{
SetTimer("OneMinBomb", 60000, 1);
return 1;
}