23.05.2009, 19:36
pawn Код:
// on top or above the function
forward GMswitch();
// ongamemodeinit
SetTimer("GMswitch",30000,true); // gamemode switch test GMSWITCH
// down on the script
public GMswitch()
{
SendRCONCommand("changemode modename");
return 1;
}

