Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions Applications/Games/Assassin's Creed III/Uplay/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
include("engines.wine.quick_script.uplay_script");

var installerImplementation = {
run: function () {
new UplayScript()
.name("Assassin's Creed")
.editor("Ubisoft, Gameloft, Ubisoft Montreal, Blue Byte, MORE")
.applicationHomepage("https://www.ubisoft.com/en-us/game/assassins-creed")
.author("KREYREN")
.appId(273)
.go();
};

/* exported Installer */
var Installer = Java.extend(org.phoenicis.scripts.Installer, installerImplementation);
10 changes: 10 additions & 0 deletions Applications/Games/Assassin's Creed III/Uplay/script.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"scriptName" : "Uplay",
"id" : "applications.games.assassins_creed_3.uplay",
"compatibleOperatingSystems" : [
"LINUX"
],
"testingOperatingSystems" : [],
"free" : false,
"requiresPatch" : false
}
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
include("engines.wine.quick_script.steam_script");
include("engines.wine.verbs.dxvk");

var installerImplementation = {
run: function () {
new SteamScript()
.name("Assassin’s Creed® IV Black Flag")
.name("Assassin’s Creed IV Black Flag")
.editor("Ubisoft Montreal")
.author("Plata")
.appId(242050)
Expand All @@ -12,6 +13,7 @@ var installerImplementation = {
.postInstall(function (wine/*, wizard*/) {
// the automatically installed Uplay version does not update properly
wine.uplay();
wine.DXVK();
})
.go();
}
Expand Down
19 changes: 19 additions & 0 deletions Applications/Games/Assassin's Creed IV Black Flag/Uplay/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
include("engines.wine.quick_script.uplay_script");
include("engines.wine.verbs.dxvk");

var installerImplementation = {
run: function () {
new UplayScript()
.name("Assassin’s Creed IV Black Flag")
.editor("Ubisoft, Gameloft, Ubisoft Montreal, Blue Byte, MORE")
.applicationHomepage("https://www.ubisoft.com/en-us/game/assassins-creed")
.author("KREYREN")
.appId(273)
.preInstall(function (wine/*, wizard*/) {
wine.DXVK();
})
.go();
};

/* exported Installer */
var Installer = Java.extend(org.phoenicis.scripts.Installer, installerImplementation);
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"scriptName" : "Uplay",
"id" : "applications.games.assassins_creed_4_black_flag.uplay",
"compatibleOperatingSystems" : [
"LINUX"
],
"testingOperatingSystems" : [],
"free" : false,
"requiresPatch" : false
}