• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.

Raventhefuhrer

Colonel
110 Badges
Feb 1, 2009
813
215
  • Victoria 2: Heart of Darkness
  • Magicka
  • Arsenal of Democracy
  • Stellaris - Path to Destruction bundle
  • Europa Universalis IV: Res Publica
  • Semper Fi
  • Sengoku
  • Sword of the Stars
  • Sword of the Stars II
  • Crusader Kings II: Monks and Mystics
  • Crusader Kings II: Reapers Due
  • Victoria 2: A House Divided
  • March of the Eagles
  • Stellaris: Galaxy Edition
  • Tyranny - Tales from the Tiers
  • Europa Universalis IV: Mare Nostrum
  • Stellaris: Synthetic Dawn
  • Europa Universalis IV: Pre-order
  • Hearts of Iron IV: Expansion Pass
  • Europa Universalis IV: Third Rome
  • Stellaris
  • Cities: Skylines - After Dark
  • Europa Universalis IV: Cossacks
  • Cities: Skylines - Snowfall
  • Darkest Hour
  • Crusader Kings II
  • Crusader Kings II: Charlemagne
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Republic
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Sword of Islam
  • Europa Universalis III
  • Europa Universalis III Complete
  • Divine Wind
  • Europa Universalis IV
  • Europa Universalis IV: Art of War
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Call to arms event
  • For the Motherland
  • Hearts of Iron III
  • Hearts of Iron III: Their Finest Hour
  • Heir to the Throne
  • Europa Universalis III Complete
  • Crusader Kings III
  • Pride of Nations
  • Crusader Kings II: Way of Life
Hello,

I often play on the faster game speeds during the interwar years. By default it appears that there is not hotkey to pause the game that I am aware of. This can be pretty annoying because it means I need to try and click the little date-bar to pause the game when something pops up that requires my attention. So I was wondering if there was any way to make it so the space bar pauses the game, or if there was some other hotkey to pause that I didn't know of, or some other solution?
 
Press "pause break" on the top right hand corner of your keyboard.
 
Go to your Darkest Hour folder, go to config, then open the buttons folder in notepad or something. Use control-f and then type in "pause" and you'll find the correct paragraph, I suppose you could call it. It looks like this:

Code:
press = {
	id = "BUTTON_PAUSE"
	bitmap = "empty.bmp"
	background = "pause_button.bmp"
	lower = "BUTTON_0050"
	upper = ""
	}

You're going to want to put in
Code:
shortcut = "space"
Just like that in between background and lower. It should look like this:

Code:
press = {
	id = "BUTTON_PAUSE"
	bitmap = "empty.bmp"
	background = "pause_button.bmp"
	shortcut = "space"
	lower = "BUTTON_0050"
	upper = ""
	}

Be warned, if want to type anything in game, such as changing a unit name or talking in multiplayer, pressing the space button will pause/unpause the game. Also, be sure to make a copy of your buttons file before you touch anything, in case something goes wrong.
 
Thanks for the responses, they are a great help. I was able to find the required text document and edit it. I've taken the warning to heart though, so I won't use 'space' as my pause button.

I tried to set it instead to my middle mouse button, using 'shortcut = "middle_mouse" ' but that didn't work, do you have any ideas for what the correct input would be?
 
I always use space to pause. Fortunately it's simple to mod.
 
Thanks for the responses, they are a great help. I was able to find the required text document and edit it. I've taken the warning to heart though, so I won't use 'space' as my pause button.

I tried to set it instead to my middle mouse button, using 'shortcut = "middle_mouse" ' but that didn't work, do you have any ideas for what the correct input would be?

Try MButton