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
23 changes: 23 additions & 0 deletions Applications/Games/Assassin's Creed: Liberation HD/Steam/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
include("engines.wine.quick_script.steam_script");
include("engines.wine.verbs.uplay");
include("engines.wine.verbs.dxvk");

var installerImplementation = {
run: function () {
new SteamScript()
.name("Assassin’s Creed Liberation")
.editor("Ubisoft")
.author("KREYREN")
.appId(260210)
.wineVersion(LATEST_STAGING_VERSION)
.wineDistribution("staging")
.postInstall(function (wine/*, wizard*/) {
wine.uplay();
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,13 @@
{
"scriptName" : "Steam",
"id" : "applications.games.assassins_creed_liberation.steam",
"compatibleOperatingSystems" : [
"MACOSX",
"LINUX"
],
"testingOperatingSystems" : [
"MACOSX"
],
"free" : false,
"requiresPatch" : false
}
19 changes: 19 additions & 0 deletions Applications/Games/Assassin's Creed: Liberation HD/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 Liberation")
.editor("Ubisoft, Gameloft, Ubisoft Montreal, Blue Byte, MORE")
.applicationHomepage("https://www.ubisoft.com/en-us/game/assassins-creed")
.author("KREYREN")
.appId(0) // Wrong APPID
.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,13 @@
{
"scriptName" : "Uplay",
"id" : "applications.games.assassins_creed_liberation.uplay",
"compatibleOperatingSystems" : [
"MACOSX",
"LINUX"
],
"testingOperatingSystems" : [
"MACOSX"
],
"free" : false,
"requiresPatch" : false
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"name" : "Assassin’s Creed® Liberation",
"id" : "applications.games.assassins_creed_liberation",
"description" : "Assassin's Creed III: Liberation is a 2012 action-adventure video game developed and published by Ubisoft, and released on October 30, 2012 in North America, with a worldwide launch the following day, on PlayStation Vita. (Wikipedia)"
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.