NJAGC - BUG Version

ruff_hi

Live 4ever! Or die trying
Joined
Oct 24, 2005
Messages
9,135
Location
an Aussie in Boston
We have used the NJAGC mod in BUG. Recently, someone pointed out that for non-ancient starts, the NJAGC shows a different turn than the default clock. I've looked at the code and this is what NJAGC shows ...

'gc.getGame().getElapsedGameTurns()'

While the default clock shows ...

'CyGame().getGameTurn()'

And so, we have various options ...
  • leave it as is
  • change NJAGC to show the same as the default
  • show both

Do you have a preference?

If we were to show both, it would look something like this ...

'127 (0) / 550'

where
127 = current game turn
0 = elapsed game turn
550 = max turns
 
Showing both will most likely be too wide when other options are displayed, especially during golden ages. How about having an option to choose which to show (simple checkbox).

On a related note, what does Autolog show for its turn #?
 
On a related note, what does Autolog show for its turn #?
Code:
	zcurrturn = gc.getGame().getElapsedGameTurns() + AutologOpt.get4000BCTurn()
 
Back
Top Bottom