How to make it choose random maps
#2

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

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;
}
Reply


Messages In This Thread
How to make it choose random maps - by Marshall_Banks - 31.10.2010, 03:34
Re: How to make it choose random maps - by Haydz - 31.10.2010, 04:22
Re: How to make it choose random maps - by BLAbla93 - 31.10.2010, 04:35
Re: How to make it choose random maps - by Marshall_Banks - 31.10.2010, 04:57
Re: How to make it choose random maps - by Marshall_Banks - 31.10.2010, 15:52

Forum Jump:


Users browsing this thread: 1 Guest(s)