Skip to content

Commit a5bfe17

Browse files
author
Jacob Hrbek
committed
Add Uplay option for AC1
1 parent 26bda82 commit a5bfe17

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
include("engines.wine.quick_script.uplay_script");
2+
3+
var installerImplementation = {
4+
run: function () {
5+
new UplayScript()
6+
.name("Assassin's Creed")
7+
.editor("Ubisoft, Gameloft, Ubisoft Montreal, Blue Byte, MORE")
8+
.applicationHomepage("https://www.ubisoft.com/en-us/game/assassins-creed")
9+
.author("KREYREN")
10+
.appId(82)
11+
.go();
12+
};
13+
14+
/* exported Installer */
15+
var Installer = Java.extend(org.phoenicis.scripts.Installer, installerImplementation);
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"scriptName" : "Uplay",
3+
"id" : "applications.games.assassins_creed.uplay",
4+
"compatibleOperatingSystems" : [
5+
"MACOSX",
6+
"LINUX"
7+
],
8+
"testingOperatingSystems" : [
9+
"MACOSX",
10+
"LINUX"
11+
],
12+
"free" : false,
13+
"requiresPatch" : false
14+
}

0 commit comments

Comments
 (0)