31.10.2010, 04:22
Not sure if you can that in the same gamemode, but what i'v done on my server is making a number of gamemodes,each gamemode has the same commands etc, just different map, then every 10 mins get the script to auto change the gamemode, causing a different map to display.
You could do this
You could do this
Quote:
//top of the script forward GMswitch(); //under ongamemodein/flitersciptin SetTimer("GMswitch",TIME,true); //Change TIME to the amount of time you want. //at the bottom of your script public GMswitch() { SendRconCommand("changemode GAMEMODENAME"); // change GAMEMODENAME to the name of your new gamemode/map return 1; } |