ApkIos

Newbie
Sep 28, 2019
31
19
103
If anyone having issue with GPU hitting 100% & going over 70C leading to crash or hang. just limit the fps to 30 in options ( its in same location of load save ).

1080p 30fps . now my gpu rarely hitting 90% and stays around 60C.
 

Doruno

Member
Feb 11, 2018
308
849
258

Seaside Mystery
Next update will bring many improvements for MC:
-New walk/run animations
-Footstep sounds corresponding the surface
-Customization system similar to the new ladies customization system.
-Wardrobe will become functional, it will allow to customize MC's appearance during the game.
Besides MC, sea also will be improved. Now it will look more realistic, it will have dynamic waves, caustics.

The Twist 0.51
The Twist update is really close. Now I am finishing the last animations and setting up the last two scenes. After that the testing will follow, so if everything goes smooth the update should be done in ~1 week.
 

sskcod

Member
Aug 6, 2017
263
384
180
Ah yes, footsteps
Siruoius i not undestedn why this Dev waste time on another usulees project...
The RTwist start be fap-able only from a lot of uppdates,
why he can not just work only on The Twist.... We no need another game....
I think the opposite.

Why waste time with The Twist? It's time to move to superior technology. First steps in The Twist.
 

Archaon11111

Engaged Member
Aug 14, 2020
2,147
3,581
364
I think the opposite.

Why waste time with The Twist? It's time to move to superior technology. First steps in The Twist.
Agreed, everything is outdated and there is zero sing of it ever getting completed in the next few years plus the dev can fix the ton of mistakes he made with this project like the insanely high demand of computer power for such low res models and shitty mechanics.
 

YaBoy

Member
Jan 2, 2017
282
446
325
Two things might have gone wrong:
  • 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 check quarantine, start Terminal and type "xattr " without the quotes at the prompt and drag the TheTwist049MAC app 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.
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 TheTwist049MAC app, pick Show package contents. Navigate to /Contents/MacOS/. Inside that folder you'll see a file TheTwist049MAC. 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.
This worked beautifully, and seems like it'll also help with problems I've had with other games. Thank you.
 
  • Like
Reactions: PBS666

jan^s

Active Member
Dec 19, 2019
951
824
217
PBS666 said:


Two things might have gone wrong:
  • 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 check quarantine, start Terminal and type "xattr " without the quotes at the prompt and drag the TheTwist049MAC app 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.
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 TheTwist049MAC app, pick Show package contents. Navigate to /Contents/MacOS/. Inside that folder you'll see a file TheTwist049MAC. 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.


This worked beautifully, and seems like it'll also help with problems I've had with other games. Thank you.
Man that is some hoops to jump through. Almost easier to use an android version.
 

YaBoy

Member
Jan 2, 2017
282
446
325
PBS666 said:


Two things might have gone wrong:
  • 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 check quarantine, start Terminal and type "xattr " without the quotes at the prompt and drag the TheTwist049MAC app 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.
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 TheTwist049MAC app, pick Show package contents. Navigate to /Contents/MacOS/. Inside that folder you'll see a file TheTwist049MAC. 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.




Man that is some hoops to jump through. Almost easier to use an android version.
It really just took 1-2 minutes.
 

PBS666

Engaged Member
Feb 19, 2019
3,583
3,389
448
PBS666 said:


Two things might have gone wrong:
  • 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 check quarantine, start Terminal and type "xattr " without the quotes at the prompt and drag the TheTwist049MAC app 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.
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 TheTwist049MAC app, pick Show package contents. Navigate to /Contents/MacOS/. Inside that folder you'll see a file TheTwist049MAC. 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.




Man that is some hoops to jump through. Almost easier to use an android version.
Unless you want to be confined to apps from the app store, you better learn how to do this stuff. And if you know how to right click and you can type without errors, it's child's play actually.
 

Mokume

Newbie
Oct 27, 2019
18
26
130
PBS666 said:


Two things might have gone wrong:
  • 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 check quarantine, start Terminal and type "xattr " without the quotes at the prompt and drag the TheTwist049MAC app 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.
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 TheTwist049MAC app, pick Show package contents. Navigate to /Contents/MacOS/. Inside that folder you'll see a file TheTwist049MAC. 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.




Man that is some hoops to jump through. Almost easier to use an android version.
This take had me laughing. How are 60 seconds of work "a lot of hoops to jump through"? The "use android," though, got me... No, just a big fat No. Bad, bad, bad advice and you should be ashamed for even uttering it.
 
  • Haha
Reactions: PBS666

sskcod

Member
Aug 6, 2017
263
384
180
I wish we can get the android version
Told you already that in 2034, you will have 2022 PC emulators on your android devices and you will be able to run vintage games like The Twist very smoothly... Okay, it may hang a little during loading. But it will be awesome. You will have VR support and 4D screens with smell and heat generation.

Amazing stuff... Just hang in there.

ANY TIME NOW!!!
 

Snugglepuff

Devoted Member
Apr 27, 2017
8,497
9,434
786
Do you know how to make the loading speed faster?
Or how to optimization?
It depends on what you're running it on.
Without telling us about the system you're using, you're not giving us much to go on since the only help people can give is hardware related advice.
 
3.40 star(s) 171 Votes