04.06.2012, 22:32
I want to run a simple dm gamemod but after 15 mins i want the mp to change..can i do that with some kind of a sscript or do i need to run multiple gamemodes?all maps i wants will be costum interiors...
public OnGameModeInit()
{
SetTimer("ChangeMap", 900000, false);
return 1;
}
forward ChangeMap();
public ChangeMap()
{
//Code for changing map here
}