22.09.2009, 14:22
Quote:
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?
|
Let's say you are in your first one.
pawn Код:
public OnGameModeInit()
{
SetTimer("Minigame2",yourtime,0);
return 1;
}
pawn Код:
forward Minigame2();
public Minigame2()
{
SendRconCommand("changemode yourmode");
return 1;
}
P.S When you are in your last gamemode, let it set timer to go to your first gamemode.
I guess this is what you need.