[Fix] for crash when clicking scenarios in the menu

  • 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.

stevebone

Captain
20 Badges
Feb 11, 2011
421
1
  • Cities in Motion 2
  • Cities: Skylines Deluxe Edition
  • Heir to the Throne
  • Divine Wind
  • Europa Universalis III Complete
  • Cities in Motion
  • Crusader Kings II
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • 500k Club
  • Cities: Skylines
  • Cities: Skylines - Snowfall
  • Cities: Skylines - Mass Transit
  • Surviving Mars
  • Surviving Mars: Digital Deluxe Edition
  • Cities: Skylines - Parklife Pre-Order
  • Cities: Skylines - Parklife
  • Surviving Mars: First Colony Edition
  • Surviving Mars: First Colony Edition
  • Cities: Skylines - Campus
After you set
Code:
$beta = false;
in your build.script, to unlock save/loading the game will crash when you want to play the only scenario that is in the beta Part with Petrol. I have found a workaround it so the game will not crash anymore and you can actually play that scenario

go into Cities in Motion\metro\ui\menus\ and find scenarios.script open with notepad and look for this:
Code:
if (MAIN.$build.$beta)
and replace with
Code:
if (MAIN.$build.$beta == false)
and save the file. Go play the scenario that was crashing the game ;)