Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add The Sims 4 #944

Open
wants to merge 51 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
254649c
Merge pull request #1 from PhoenicisOrg/master
Zemogiter Mar 27, 2018
63f898c
Merge pull request #3 from PhoenicisOrg/master
Zemogiter Mar 29, 2018
71cd3d8
Merge pull request #4 from PhoenicisOrg/master
Zemogiter Apr 1, 2018
60c3cb5
Merge pull request #5 from PhoenicisOrg/master
Zemogiter Apr 10, 2018
69e7bf2
Merge pull request #6 from PhoenicisOrg/master
Zemogiter Apr 23, 2018
5bf56fe
Merge pull request #7 from PhoenicisOrg/master
Zemogiter May 16, 2018
1c4fe31
Merge pull request #8 from PhoenicisOrg/master
Zemogiter Jun 1, 2018
66bd276
Merge pull request #9 from PhoenicisOrg/master
Zemogiter Jul 11, 2018
1791c28
Add files via upload
Zemogiter May 1, 2019
1b29e02
Add files via upload
Zemogiter May 15, 2019
c0dcd4f
Delete script.js
Zemogiter May 15, 2019
3394614
Delete script.json
Zemogiter May 15, 2019
039d8a3
Update script.js
Zemogiter May 21, 2019
a517263
Update script.js
Zemogiter May 21, 2019
ce8c955
Add files via upload
Zemogiter May 21, 2019
ea9fb7a
Update registry.reg
Zemogiter May 23, 2019
77fecb0
Update script.js
Zemogiter May 23, 2019
3d475d3
Update script.js
Zemogiter May 23, 2019
44537ea
Merge pull request #20 from PhoenicisOrg/master
Zemogiter May 23, 2019
e905185
Update script.js
Zemogiter May 28, 2019
a436bb4
Update script.js
Zemogiter May 28, 2019
2d5d942
Update script.js
Zemogiter Aug 19, 2019
c13cf0d
Update script.js
Zemogiter Aug 19, 2019
1c89c13
Update script.js
Zemogiter Aug 19, 2019
0d1a771
Update script.js
Zemogiter Aug 19, 2019
c367dfe
Update script.js
Zemogiter Aug 20, 2019
8e8e9f8
Update script.js
Zemogiter Aug 20, 2019
c885abe
Update script.js
Zemogiter Aug 20, 2019
a210806
Update script.js
Zemogiter Aug 23, 2019
dda1f66
Update script.js
Zemogiter Aug 23, 2019
62b1e71
Update script.js
Zemogiter Aug 25, 2019
ddab905
Update script.js
Zemogiter Aug 25, 2019
c33e3dd
Update script.js
Zemogiter Aug 25, 2019
db06cc7
Merge pull request #26 from PhoenicisOrg/master
Zemogiter Sep 13, 2019
d8bc50d
Update script.js
Zemogiter Sep 13, 2019
71d9c47
Update script.js
Zemogiter Sep 14, 2019
371b32a
Update script.js
Zemogiter Sep 14, 2019
81d1ffb
Update script.js
Zemogiter Sep 15, 2019
3c32172
Update script.js
Zemogiter Sep 15, 2019
fd01635
Update script.js
Zemogiter Sep 15, 2019
8fb3faf
Update script.js
Zemogiter Oct 30, 2019
7649168
Update script.js
Zemogiter Oct 30, 2019
c8ee9c7
Update script.js
Zemogiter Oct 30, 2019
3589722
Merge pull request #28 from PhoenicisOrg/master
Zemogiter Nov 25, 2019
b681373
Update script.js
Zemogiter Nov 26, 2019
556bc19
Update script.js
Zemogiter Nov 27, 2019
d9cf1bb
Update script.js
Zemogiter Dec 9, 2019
73362e1
Update script.js
Zemogiter Dec 9, 2019
1283632
Update script.js
Zemogiter Dec 9, 2019
e43bbbc
Update script.js
Zemogiter Dec 20, 2019
eb3a401
Update script.js
Zemogiter Jan 3, 2020
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
37 changes: 37 additions & 0 deletions Applications/Games/The Sims 4/Local/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
include("engines.wine.quick_script.local_installer_script");
include("engines.wine.verbs.vcrun6sp6");
include("engines.wine.verbs.mfc42");
include("engines.wine.verbs.dotnet20sp2");
include("utils.functions.net.download");
include("utils.functions.filesystem.files");

var installerImplementation = {
run: function () {
new LocalInstallerScript()
.name("The Sims 4")
.editor("Electronic Arts")
.applicationHomepage("https://www.ea.com/games/the-sims/the-sims-4/pc")
.author("ZemoScripter")
.category("Games")
.executable("TS4_x64.exe")
.wineArchitecture("amd64")
.wineVersion(4.7)
.wineDistribution("staging")
.preInstall(function(wine, wizard) {
new Downloader()
.wizard(wizard)
.url("http://www.dll-found.com/dll-8d/u/unarc.dll")
.checksum("5faa19aa1629e401915001a3392e3d916be38578")
.to(wine.system32directory() + "/unarc.dll")
.get();
wine.dotnet20sp2();
wine.vcrun6sp6();
wine.mfc42();
})
.go();
}
};

/* exported Installer */
var Installer = Java.extend(org.phoenicis.scripts.Installer, installerImplementation);
Zemogiter marked this conversation as resolved.
Show resolved Hide resolved

11 changes: 11 additions & 0 deletions Applications/Games/The Sims 4/Local/script.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"scriptName" : "Local",
"id" : "applications.games.the_sims_4.local",
"compatibleOperatingSystems" : [
"MACOSX",
"LINUX"
],
"testingOperatingSystems" : [],
"free" : false,
"requiresPatch" : false
}
42 changes: 42 additions & 0 deletions Applications/Games/The Sims 4/Origin/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
include("engines.wine.quick_script.origin_script");
include("engines.wine.verbs.vcrun6sp6");
include("engines.wine.verbs.mfc42");
include("engines.wine.verbs.dotnet20sp2");
include("engines.wine.verbs.vcrun2010");
include("engines.wine.verbs.vcrun2013");
include("engines.wine.verbs.d9vk");
include("utils.functions.net.download");
include("utils.functions.filesystem.files");

var installerImplementation = {
run: function () {
new OriginScript()
.name("The Sims 4")
.editor("Electronic Arts")
.applicationHomepage("https://www.ea.com/games/the-sims/the-sims-4/pc")
.author("ZemoScripter")
.category("Games")
.wineVersion("4.0")
Zemogiter marked this conversation as resolved.
Show resolved Hide resolved
.wineDistribution("staging")
.wineArchitecture("amd64")
.appId("1011164,1015875,1015876,1015793,1015794,1015795,1015806,1015807,1015808,1018025,1018023,1015236,1015235,1015224")
.preInstall(function(wine, wizard) {
new Downloader()
.wizard(wizard)
.url("http://www.dll-found.com/dll-8d/u/unarc.dll")
.checksum("5faa19aa1629e401915001a3392e3d916be38578")
.to(wine.system32directory() + "/unarc.dll")
.get();
wine.dotnet20sp2();
wine.vcrun6sp6();
wine.mfc42();
wine.vcrun2010();
wine.vcrun2013();
wine.D9VK();
})
.go();
}
};

/* exported Installer */
var Installer = Java.extend(org.phoenicis.scripts.Installer, installerImplementation);
11 changes: 11 additions & 0 deletions Applications/Games/The Sims 4/Origin/script.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"scriptName" : "Origin",
"id" : "applications.games.the_sims_4.origin",
"compatibleOperatingSystems" : [
"MACOSX",
"LINUX"
],
"testingOperatingSystems" : [],
"free" : false,
"requiresPatch" : false
}
5 changes: 5 additions & 0 deletions Applications/Games/The Sims 4/application.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"name" : "The Sims 4",
"id" : "applications.games.the_sims_4",
"description" : "Enjoy the power to create and control people in a virtual world where there are no rules. Express your creativity as you customize your Sims distinct appearances and unique personalities. Choose their fashions, select their hairstyles, and give them life aspirations. Effortlessly build your Sims the perfect homes with the all-new room-based Build Mode, choosing your favorite designs and décor. Develop your Sims’ relationships, pursue new careers, and shape the rich and entertaining moments of their lives. Explore beautiful worlds with unique environments and travel to neighborhoods where you can visit venues and meet other interesting Sims. Be powerful and free, have fun, and play with life!<br/>Create Unique Sims Create a variety of unique Sims with distinct appearances, big personalities, and all-new emotions. Sculpt your Sims’ body shape using the powerful new Create A Sim tool then choose their hairstyles, walk-styles, and fashions. Give their lives purpose by selecting their traits and aspirations that give you control over their mind, body, and heart.<br/>Build the Perfect Home Effortlessly build and design homes for your Sims using the new room-based Build Mode. Construct the home of your dreams by designing its layout, choosing its furnishings, and altering the landscape.<br/>Explore Vibrant Worlds Travel between worlds, explore unique neighborhoods, and discover interesting venues. Your Sims can visit new communities to expand their social circle, hangout with friends in parks, or find and collect fun new objects.<br/>Add New Experiences The all-new Gallery gives you the power to discover amazing community content to add to your game, or share your own creations with the world. Download, like, and comment on your favorite Sims, complete homes, and fully designed rooms."
}
Binary file added Applications/Games/The Sims 4/miniatures/main.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.