Poll: Would you like to playtest and discover new maps in inters/clan matches
You do not have permission to vote in this poll.
Yes, i'm interested
88.89%
8 88.89%
No
11.11%
1 11.11%
Total 9 vote(s) 100%
* You voted for this item. [Show Results]

Custom map match servers
#2
If people are keen on this, I can supply one, based on these maps: http://gibbed.me/custom.shtml

Anyone else looking to do a custom-map server, you can use this script to generate a maprot via cron:

# List the maps:
find /path/to/custom-map-files/*.cgz /path/to/official-map-files/*.cgz -type f -printf "%f\n" > /path/to/.TEMPFILE.txt
# Delete the old maprot.cfg
echo "" > /path/to/maprot.cfg
# Set a random mode+time for each map in maprot.cfg:
while read line; do
  RANDOMMODE=`echo "0\n2\n3\n4\n5\n6\n9\n10\n11\n13\14\n15" | sort -uR | head -n1`
  RANDOMTIME=`shuf -i 7-13 | head -n1`
  echo $line | sed s/.cgz/:"$RANDOMMODE":"$RANDOMTIME":1/g >> /path/to/maprot.cfg
done < /path/to/.TEMPFILE.txt
Thanks given by:


Messages In This Thread
Custom map match servers - by Luc@s - 28 Dec 14, 10:59AM
RE: Custom map match servers - by RandumKiwi - 28 Dec 14, 01:35PM
RE: Custom map match servers - by MathiasB - 28 Dec 14, 01:54PM
RE: Custom map match servers - by RandumKiwi - 28 Dec 14, 07:33PM