Skip to content
Merged
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
include(["Engines", "Wine", "QuickScript", "LocalInstallerScript"]);

new LocalInstallerScript()
.name("Tom Clancy's Rainbow Six 3 : Raven Shield")
.editor("Red Storm Entertainment")
.author("ImperatorS79")
.category("Games")
.executable("ravenshield.exe")
.postInstall(function(wine, wizard) {
var regions=[ "France", "England"];
var selectedRegion = wizard.menu(tr("Select your region for the patch (1.0 to 1.60)."), regions);
var exeName, url, sha1;
var originDirectory = wine.prefixDirectory + "drive_c/users/Public/Documents/";

switch(selectedRegion.text){
case "France":
exeName = "RVSPatch_1.0_To_1.60_FRA.exe";
url = "http://ftp.ubi.com/us/games/ravenshield/RVSPatch_1.0_To_1.60_FRA.exe";
sha1 = "c7eb2c67af17faa29a7f6a0e9b78629365d3e85c";
break;

case "England":
exeName = "raven_shield_v1.00_to_v1.60_uk.exe";
url = "http://patches.ubi.com/rainbow_six_3_raven_shield/raven_shield_v1.00_to_v1.60_uk.exe";
sha1 = "9619c735968cd5f79226a972815127813434b8fb";
break;
}

new Downloader()
.wizard(wizard)
.url(url)
.checksum(sha1)
.to(originDirectory + exeName)
.get();

wine.run(originDirectory + exeName);

wine.setVirtualDesktop(1280, 1024);

})
.go();
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"scriptName": "Local (1.0->1.6)",
"compatibleOperatingSystems": ["LINUX"],
"testingOperatingSystems": [],
"free": false,
"requiresPatch": false
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
include(["Engines", "Wine", "QuickScript", "SteamScript"]);

new SteamScript()
.name("Tom Clancy's Rainbow Six® 3 Gold")
.editor("Red Storm Entertainment")
.author("ImperatorS79")
.appId(19830)
.postInstall(function(wine, wizard) {
wine.setVirtualDesktop(1280, 1024);
})
.go();
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"scriptName": "Steam (Gold)",
"compatibleOperatingSystems": ["LINUX"],
"testingOperatingSystems": [],
"free": false,
"requiresPatch": false
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"name": "Tom Clancy's Rainbow Six 3 : Raven Shield",
"description": "Raven Shield: Command an elite multinational squad of special operatives against hidden terrorist forces. In Tom Clancy's Rainbow Six 3: Raven Shield, the third installment to the wildly popular Rainbow Six series, Team Rainbow faces the hidden global forces of a new and secretive foe."
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.