How To Change the Maximum Number of Players: Difference between revisions

From Civilization Modding Wiki
Jump to navigationJump to search
(Created page with 'This is actually pretty simple. Here are the steps: * Open CvDefines.h * Find "#define MAX_CIV_PLAYERS" and look over to the right. That number is the number of players allowed...')
 
(Clarified that this fix works only for the PC-compatible version of Civ. The Mac version does not seem to have a simple fix through the Defines files.)
Line 1: Line 1:
This is actually pretty simple.  Here are the steps:
This is actually pretty simple (on a PC).  Here are the steps:
* Open CvDefines.h
* Open CvDefines.h
* Find "#define MAX_CIV_PLAYERS" and look over to the right.  That number is the number of players allowed not including barbarians, 18 by default.
* Find "#define MAX_CIV_PLAYERS" and look over to the right.  That number is the number of players allowed not including barbarians, 18 by default.
Line 6: Line 6:


That's it!
That's it!
If anyone knows how to do this on a Mac, please update.

Revision as of 01:14, 7 December 2009

This is actually pretty simple (on a PC). Here are the steps:

  • Open CvDefines.h
  • Find "#define MAX_CIV_PLAYERS" and look over to the right. That number is the number of players allowed not including barbarians, 18 by default.
  • Change the number to the maximum number of players you want.
  • Save the file and do a clean build of the DLL.

That's it!

If anyone knows how to do this on a Mac, please update.