You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,15 @@
1
-
<palign="center"><imgsrc="media/cclmc-icon.png"alt="Legacy Mod Converter icon"></p>
1
+
<palign="center"><imgsrc="Media/cclmc-icon.png"alt="Legacy Mod Converter icon"></p>
2
2
<h1align="center">Cortex Command Legacy Mod Converter</h1>
3
3
4
4
## Introduction
5
5
This project automates ***most*** of the conversion work required to convert the legacy (old) `Cortex Command` mods into `Cortex Command Community Project` compatible mods.
6
6
7
7
## Getting started
8
-
Download the [***Legacy Mod Converter***](http://www.mediafire.com/file/1ncoydmaehf4nyn/Legacy_Mod_Converter.exe/file) program. Create a new folder and put your legacy mods that you want to convert in it. Run the Legacy Mod Converter program.
8
+
Download the [***Legacy Mod Converter***](http://www.mediafire.com/file/ldp5p3l8pzocz3a/Legacy_Mod_Converter.exe/file) program. Create a new folder and put your legacy mods that you want to convert in it. Run the Legacy Mod Converter program.
9
9
10
10
If you get a "`Microsoft Defender SmartScreen prevented an unrecognized app from starting. Running this app might put your PC at risk.`" popup message when trying to run the program you should press `More info` and then `Run anyway`.
11
11
12
-
<palign="center"><imgsrc="media/cclmc-screenshot.png"alt="Legacy Mod Converter screenshot"></p>
12
+
<palign="center"><imgsrc="Media/cclmc-screenshot.png"alt="Legacy Mod Converter screenshot"></p>
13
13
14
14
## Disclaimer
15
15
This program will do most of the conversion work for you, but some conversion steps are too hard to automate, so it's likely that `CCCP` will still crash or print errors in the console. If this happens you'll have to manually fix these issues in the legacy mod folder. If you want to properly fix these errors then you should download this repository and follow the instructions below so you can add your own conversion cases to `conversion_rules.py`.
sg.Popup("The folder 'ConversionRules' wasn't found next to this executable. You can get the missing folder from the Legacy Mod Converter GitHub repo:", github_url)
44
-
sys.exit()
40
+
check_github_button_clicked_and_exit(cfg.sg.Popup("The 'ConversionRules' folder wasn't found next to this executable. You can get the missing folder from the Legacy Mod Converter GitHub repo.", title="Missing ConversionRules folder", custom_text="Go to GitHub"))
45
41
46
42
ifjson_files_found==0:
47
-
sg.Popup("The folder 'ConversionRules' didn't contain any JSON files. You can get the JSON files from the Legacy Mod Converter GitHub repo:", github_url)
48
-
sys.exit()
43
+
check_github_button_clicked_and_exit(cfg.sg.Popup("The 'ConversionRules' folder didn't contain any JSON files. You can get the JSON files from the Legacy Mod Converter GitHub repo.", title="Missing JSON files", custom_text="Go to GitHub"))
sg.Image(resource_path("media/discord-icon.png"), enable_events=True, key="-DISCORD-", tooltip=" Visit the CCCP Discord server for help ", size=(0, 30))
sg.Image(resource_path("Media/discord-icon.png"), enable_events=True, key="-DISCORD-", tooltip=" Visit the CCCP Discord server for help ", size=(0, 30))
64
67
]
65
68
], title="", pad=((9, 0), (8, 0)))]
66
69
]
@@ -76,7 +79,9 @@ def init_window():
76
79
]
77
80
78
81
cfg.sg=sg
79
-
window=sg.Window("Legacy Mod Converter - v1.0", layout, icon=resource_path("media/cclmc-icon.ico"), button_color=(sg.theme_text_color(), "#2a3948"))
82
+
convert.load_conversion_rules()
83
+
84
+
window=sg.Window("Legacy Mod Converter - v1.0", layout, icon=resource_path("Media/cclmc-icon.ico"), button_color=(sg.theme_text_color(), "#2a3948"))
0 commit comments