- Oct 20, 2017
- 638
- 708
Maybe, if you state more clearly what you did and what error you get.Does anyone know how to fix the "this application cannot be open" issue?
Maybe, if you state more clearly what you did and what error you get.Does anyone know how to fix the "this application cannot be open" issue?
I downloaded Zombie's Retreat on Mac then opened the file and double clicked it standard route as usual and got the error message. From what I found it's a Catalina Error but all the solutions I found don't resolve the issue so I was hoping someone knew how to fix here.Maybe, if you state more clearly what you did and what error you get.
Without seeing the exact wording of the error message, it's hard to say. It could be a 32-bit problem, could be permissions, could be corrupted files. Not familiar with that game, but if it's RenPy you can fix just about anything (other than the game content itself being fucked) by re-exporting the game with the RenPy SDK (see https://f95zone.to/threads/how-to-create-a-mac-version-of-any-renpy-game.3289/).I downloaded Zombie's Retreat on Mac then opened the file and double clicked it standard route as usual and got the error message. From what I found it's a Catalina Error but all the solutions I found don't resolve the issue so I was hoping someone knew how to fix here.
Sorry, but that is a confusing one. Older (32-bit) games won't run, but the error is generally not a permissions one.I know I am late to the party here and I hate being the asshole holding-up the line, but could someone please explain this process step-by-step? I have a 2015 Mac and have upgraded to the most resent OS. Since I have done so, I cannot play any of the older Mac Games. It just keeps saying, "Do not have administrative permissions." Newer games and updated games work without any issues, but not the older games. My understanding of using the terminal and adding code is at a -5 level.
I am the only one who uses my computer. HAHA. That's what is confusing about all of this to me. I am the admin of my own computer. HAHA.Sorry, but that is a confusing one. Older (32-bit) games won't run, but the error is generally not a permissions one.
Have you tried giving yourself admin permissions, since that seems to be what it wants for some reason?
ARG1="$1"
instead of ARG1=$1
appdir="$ARG1"
instead of appdir=$ARG1
for i in "$scriptfiles"; do
instead of for i in $scriptfiles; do
chmod +x "$i"
instead of chmod +x $i
Is this for Mac? Where do I enter these codes? Into the games themself, or my computer?If the version in the OP will ever be updated:
version 0.01 doesn't like unescaped spaces in the dir name under linux (Debian) which can be fixed by adding four pairs of " :
Line 19:ARG1="$1"
instead ofARG1=$1
Line 49:appdir="$ARG1"
instead ofappdir=$ARG1
Line 72:for i in "$scriptfiles"; do
instead offor i in $scriptfiles; do
Line 73:chmod +x "$i"
instead ofchmod +x $i
after that it doesn't throw those annoying errors anymore.
Fixed that for me a time ago but forgot to mention it here
1. It should run on MacOS as the original file is written to work under linux and macIs this for Mac? Where do I enter these codes? Into the games themself, or my computer?