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: Origins/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® Origins")
.editor("Ubisoft")
.author("KREYREN")
.appId(582160)
.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);
13 changes: 13 additions & 0 deletions Applications/Games/Assassin's Creed: Origins/Steam/script.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"scriptName" : "Steam",
"id" : "applications.games.assassins_creed_origins.steam",
"compatibleOperatingSystems" : [
"MACOSX",
"LINUX"
],
"testingOperatingSystems" : [
"MACOSX"
],
"free" : false,
"requiresPatch" : false
}
19 changes: 19 additions & 0 deletions Applications/Games/Assassin's Creed: Origins/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 Origins")
.editor("Ubisoft, Gameloft, Ubisoft Montreal, Blue Byte, MORE")
.applicationHomepage("https://www.ubisoft.com/en-us/game/assassins-creed")
.author("KREYREN")
.appId(3539)
.preInstall(function (wine/*, wizard*/) {
wine.DXVK();
})
.go();
};

/* exported Installer */
var Installer = Java.extend(org.phoenicis.scripts.Installer, installerImplementation);
13 changes: 13 additions & 0 deletions Applications/Games/Assassin's Creed: Origins/Uplay/script.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"scriptName" : "Uplay",
"id" : "applications.games.assassins_creed_origins.uplay",
"compatibleOperatingSystems" : [
"MACOSX",
"LINUX"
],
"testingOperatingSystems" : [
"MACOSX"
],
"free" : false,
"requiresPatch" : false
}
5 changes: 5 additions & 0 deletions Applications/Games/Assassin's Creed: Origins/application.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"name" : "Assassin’s Creed® Origins",
"id" : "applications.games.assassins_creed_brotherhood",
"description" : "Assassin's Creed Origins is an action-adventure video game developed by Ubisoft Montreal and published by Ubisoft. It is the tenth major installment in the Assassin's Creed series and the successor to 2015's Assassin's Creed Syndicate. (Wikipedia)"
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.