23.01.2011, 23:18
how do you link a gamemode to another so when 1 finishes, the other starts?
// on top
forward NewMode ( ) ;
//add this ongamemodeint or w/e u spell it lol
SetTimer ( " NewMode " , time in milisecond u want to change , false ) ;
// Somewhere in your script example in the bottom
public NewMode ( )
{
SendRconCommand ( " changemode name of the gamemode " ) ;
return 1;
}