Salve a tutti,
in questi giorni ho fatto un aggiornamento su the sims 4, ho comprato "Vita universitaria" e l'ho scaricata. Dopo di che mi è comparsa questa scritta...
Unable to start: Initialization error at start up.[135dec40:90f690cf:00000075:495f32a0]
Ho letto vari forum e ho modificato la mia lingua dall'italiano dall'inglese, dopo di che ho riconvertito la lingua, ma, entrando nel gioco, ho notato che non solo era rimasto in inglese, ma che the sims era diventato lentissimo. Ho continuato a leggere sui forum per capire come risolvere la situazione... ho disinstallato tutto e riscaricato il gioco, ho riparato, aggiornato, addirittura ho scaricato the sims Legacy, ma niente. Anzi, ora che l'ho installato e ho impostato la lingua italiana mi è ritornato lo stesso problema della scritta e non riesco neanche a entrare a the sims. Ho visto che questo problema l'avevano avuto i Mac (anche io ce l'ho) a Novembre e che avevano anche chiamato assistenza e gli avevano detto che dovevano aspettare. Stamani ho trovato anche una ragazza che ha risolto il problema, ma non ho capito come "-.-
Questa è la spiegazione di Maxisjoe...
I've got something for you to try. It might look a little frightening, but I'll explain what every part does.
First the whole command (this is a single line):
cd ~/Applications/The\ Sims\ 4.app/Contents/__Installer/customcomponent/setLocale ; mv -f setLocale.zsh setLocale.zsh_bkp ; cat setLocale.zsh_bkp | sed 's+/Users/\$USER+$HOME+g' > setLocale.zsh ; chmod +x setLocale.zsh
After you do this try to start The Sims 4 again. If it doesn't work at first try to do a repair. Let me know what happens.
What this command is doing: It's actually several commands strung together to make it easier to copy/paste. Each individual command explained:
cd ~/Applications/The\ Sims\ 4.app/Contents/__Installer/customcomponent/setLocale
This command tells Terminal to move the "active" directory to the "setLocale" directory inside The Sims 4's application bundle. If you have moved The Sims 4 to some other location then this path will need to be adjusted to reflect the new location. The semi-colon ( ; ) in the original command above means "once the last command is done do this next command."
mv -f setLocale.zsh setLocale.zsh_bkp
This command renames (or moves, hence "mv") the original script to a new name so that we keep it as a backup. Backups are always a good idea in case we need to undo our changes. 🙂
cat setLocale.zsh_bkp | sed 's+/Users/\$USER+$HOME+g' > setLocale.zsh
This command strings together two commands into one. The "cat" command means "print the contents of the specified files". The Bar character (actually called a "pipe" (|)) means "take the output from the prior command and run that output into the next command.
The "sed" command allows us to replace one string of letters characters (letters, numbers, etc) with a different string. The mashup of letters there means "find the string '/Users/$USER' and replace it with '$HOME'", and finally the ">" means "take the output from the prior command and write it out to a file."
And finally the "chmod" command. This simply makes sure that the modified script is able to be run.
You can check that the change happened as expected by doing something like this:
diff setLocale.zsh_bkp setLocale.zsh
This will output this text:
4c4
< plistDestDir="/Users/$USER/Library/Application Support/Origin/Installer Data"
---
> plistDestDir="$HOME/Library/Application Support/Origin/Installer Data"
What that means is "the first file I looked had this line that is different from the next file I looked at." You can see that the only line that was changed is this one line, and that the change is that "/Users/$USER" has been replaced with "$HOME".
Premetto di non essere un'esperta in informatica... quello che non capisco è se quel "command" lo devo scrivere da qualche parte (e non so dove) o se sono passaggi da seguire uno per uno... perché fino a
cd ~/Applications/The\ Sims\ 4.app/Contents/__Installer/customcomponent/setLocale
ci sono anche arrivata, ma dopo non so come fare.
Ringrazio chi ha letto fino alla fine e...
VI PREGO AIUTATE UNA SIMMINA COME VOI