Civil War Source?

Can you help improve your favourite game? Hardcore C mages, talented artists, and players with any level of experience are welcome!
Post Reply
Eusebio Ptolomeu
Posts: 29
Joined: Sat Oct 07, 2017 1:51 am

Civil War Source?

Post by Eusebio Ptolomeu »

Does anybody knows where is the settings for civil war on the source code of the game, at Github?
User avatar
dunnoob
Elite
Posts: 327
Joined: Mon Dec 23, 2013 3:13 am
Location: Hamburg
Contact:

Re: Civil War Source?

Post by dunnoob »

Eusebio Ptolomeu wrote:Does anybody knows where is the settings for civil war on the source code of the game, at Github?
Start at server/settings.c near line 2379, but that's only about the setting help+type+default+category (sociology in this case) etc.:

Code: Select all

    GEN_INT("civilwarsize", game.server.civilwarsize,
          SSET_RULES_FLEXIBLE, SSET_SOCIOLOGY, SSET_RARE,
          ALLOW_NONE, ALLOW_BASIC,
          N_("Minimum number of cities for civil war"),
          N_("A civil war is triggered when a player has at least this "
             "many cities and the player's capital is captured. If "
             "this option is set to the maximum value, civil wars are "
             "turned off altogether."), NULL, NULL, NULL,
          GAME_MIN_CIVILWARSIZE, GAME_MAX_CIVILWARSIZE,
          GAME_DEFAULT_CIVILWARSIZE)
What you are really looking for are presumably all uses of game.server.civilwarsize anywhere in the code.
Post Reply