happyv
Member
- Feb 26, 2020
- 186
- 331
- 218
This could have been the best game, but it took him five years to make a beautiful slide show. (2019-2023) What a pity!
Thank you for the lecture. Being a dinosaur, computing is not my strong point. I appreciate you taking the time to explain what was required. Thanks again.I wish Mac users would spend a minimum of time to learn how their computers actually work
An app on Mac is nothing but a folder masquerading as a file. See for yourself: right click on any app and pick "Show package contents" and you'll see the folder structure hidden inside.
The key is in the folder name: an app has .app hidden at the end. Remove that, and the app becomes an ordinary folder. The reverse is true as well. So all you need to do here is to change the name from Apocalust.app 0.05 Mac to Apocalust.app 0.05 Mac.app and presto, there is your app.
Advanced course: if you navigate in said folder structure to /Contents/MacOs and open the file Apocalust0.05 (an Unix executable), the game will start as well.
This ends the lecture. Class dismissed.
There you go! Explain it to them as if they're iPhone users.I wish Mac users would spend a minimum of time to learn how their computers actually work
An app on Mac is nothing but a folder masquerading as a file. See for yourself: right click on any app and pick "Show package contents" and you'll see the folder structure hidden inside.
The key is in the folder name: an app has .app hidden at the end. Remove that, and the app becomes an ordinary folder. The reverse is true as well. So all you need to do here is to change the name from Apocalust.app 0.05 Mac to Apocalust.app 0.05 Mac.app and presto, there is your app.
Advanced course: if you navigate in said folder structure to /Contents/MacOs and open the file Apocalust0.05 (an Unix executable), the game will start as well.
This ends the lecture. Class dismissed.
Next step, do thisi changed the end to .app and it says that the file cannot open
Ren'Py is platform agnostic. Installing Windows in a VM just for running Ren'Py games is completely unnecessary.I have no idea. Most people suggest just using bootcamp in Mac and run Windows on it.
I have a VM that runs Windows 10. I'm just lazy but if I really wanted to I could just power that up and download the game to that and play it. I won't bother as people are saying it's BJs and rubbing. The usual slow burn, blue ball thing which is ironically looking at giant shlong most of the time.
I don't know how it is now, but I could buy legit Windows 10 licenses on Ebay from guys in the UK for 5 bucks if the price is a problem. They would email it pretty much immediately and then you just get an image online and use the key for it.
you are right but Dark Neighborhood and Apocalust is not same levelHe completed the previous game in 2 years. It's been 2 years since the first release of Apocalust, and the game has barely started. It is obvious that he will create it for at least the next 3-4 years. Business is business![]()
thank you so muchhey, i uploaded my mod update for the v0.05 version
What’s name of this game? Or it’s a part of 0.05? I haven’t played yet
Brave chrome and duckduck do not open mixdrop and just timeoutApocalust [v0.05] Unofficial Android Port + Incest Patch
You don't have permission to view the spoiler content. Log in or register now.
You must be registered to see the links- 443mb
My Android Ports have a 2nd Persistent save location. So, even if you uninstall the game, the saves will remain Intact.
Saves location: Storage/0011/Game-name
You can also join my discord server for more and support me.
You must be registered to see the links
You can also join 0011 discord server
You must be registered to see the links
If you like my works please support me.
You must be registered to see the links
Animations and images were compressed way much than needed, i think this just makes this game uninjoyableApocalust [v0.05] Unofficial Android Port + Incest Patch
You don't have permission to view the spoiler content. Log in or register now.
You must be registered to see the links- 443mb
My Android Ports have a 2nd Persistent save location. So, even if you uninstall the game, the saves will remain Intact.
Saves location: Storage/0011/Game-name
You can also join my discord server for more and support me.
You must be registered to see the links
You can also join 0011 discord server
You must be registered to see the links
If you like my works please support me.
You must be registered to see the links
Legend, thank you!!Next step, do this
Two things might have gone wrong:
To check quarantine, start Terminal and type "xattr " without the quotes at the prompt and drag the app you just created into the Terminal window. Terminal will fill out the path for you. Mind there is a space between the command and said path. Hit enter. If you see com.apple.quarantine in the results, the app is quarantined.
- the app is quarantined by Gatekeeper because it's from an unknown developer;
- the executable inside the app might have lost its execute permission during unzipping
To remove the quarantine, type "xattr -d com.apple.quarantine " and drag the app again into the window. Hit enter. Quarantine should now be removed.
To check the second case, you need to look into the contents of the app: right click on the app, pick Show package contents. Navigate to /Contents/MacOS/. Inside that folder you'll see a file called Apocalust0.05. That file should be a Unix executable. If it's anything else, it has lost its execute permission.
To fix this, start Terminal and type "chmod a+x " without the quotes at the prompt and drag the file inside the Terminal window. Terminal will fill out the path for you. Again mind there is a space between the command and the path. Hit enter. The file should now be executable.
As a general precaution, make a duplicate of the app first before changing its attributes or permissions.