There was an error while loading. Please reload this page.
1 parent 4f653a1 commit bea1c4aCopy full SHA for bea1c4a
1 file changed
Applications/Games/Assassin's Creed III/Steam/script.js
@@ -1,17 +1,24 @@
1
include("engines.wine.quick_script.steam_script");
2
include("engines.wine.verbs.dxvk");
3
+include("engines.wine.verbs.corefonts");
4
+include("engines.wine.verbs.vcrun2008");
5
+
6
+// Doesn't work! - https://github.com/PhoenicisOrg/scripts/pull/967#issuecomment-499492492
7
8
var installerImplementation = {
9
run: function () {
10
new SteamScript()
11
.name("Assassin’s Creed III")
12
.editor("Ubisoft Montreal")
- .author("Plata")
13
+ .author("Plata, KREYREN")
14
.appId(208480)
15
.wineVersion(LATEST_STAGING_VERSION)
16
.wineDistribution("staging")
17
.preInstall(function (wine/*, wizard*/) {
18
wine.DXVK();
19
+ wine.corefonts();
20
+ wine.vcrun2008();
21
22
})
23
.go();
24
}
0 commit comments