22.09.2009, 14:08
Hey guys, I'd love to make like a minigame test server for my self with my own maps. But i'm not sure how I could make them loop or how to make the gamemodes jump from one to another? Any help?
Originally Posted by Luke™
Hey guys, I'd love to make like a minigame test server for my self with my own maps. But i'm not sure how I could make them loop or how to make the gamemodes jump from one to another? Any help?
|
public OnGameModeInit()
{
SetTimer("Minigame2",yourtime,0);
return 1;
}
forward Minigame2();
public Minigame2()
{
SendRconCommand("changemode yourmode");
return 1;
}