how is it done?
edit the file novolauncher with wordpad etc and look at the following -
# the NetBIOS-name of computer with srv2.exe launched
g_szServerAddr = Test
# LAN thread initialization delay in millisecond
g_iStartDelay = 0
# game selector(choose game 1-22, see pictures in folder "pictures" in current directory)
g_GameSet[0] = 11
g_GameSet[1] = 12
g_GameSet[2] = 13
g_GameSet[3] = 14
g_GameSet[4] = 15
g_GameSet[5] = 16
g_GameSet[6] = 17
g_GameSet[7] = 18
g_GameSet[8] = 19
g_GameSet[9] = 20
the original file says g_GameSet[0] = 1, as you see 10 has been added to all values to give the new games.
there are 2 extra games which can be loaded by adding 21 or 22 to any gameset value, so you can mix and match your best games like -
g_GameSet[0] = 1
g_GameSet[1] = 4
g_GameSet[2] = 11
g_GameSet[3] = 12
g_GameSet[4] = 13
g_GameSet[5] = 16
g_GameSet[6] = 17
g_GameSet[7] = 18
g_GameSet[8] = 21
g_GameSet[9] = 22