61
Products
reviewed
2278
Products
in account

Recent reviews by Mixxiphoid

< 1  2  3  4  5  6  7 >
Showing 1-10 of 61 entries
No one has rated this review as helpful yet
0.4 hrs on record
At least half of the achievements are broken.
Posted 19 January.
Was this review helpful? Yes No Funny Award
No one has rated this review as helpful yet
4.8 hrs on record
Controls are the absolute worst. The ball seems to move in a limited amount of angles when you want to move it. It rarely aligns to where you click and because of that, a lot of luck is involved instead of skill.
Be prepared to be frustrated, raging and annoyed to tears.

To level 44, I hate you.
Posted 30 December, 2024. Last edited 30 December, 2024.
Was this review helpful? Yes No Funny Award
16 people found this review helpful
22.7 hrs on record (22.2 hrs at review time)
The latest achievement regarding air drops requires you to create an account with a third party that will sell your information. This is clearly stated in the texts you need to consent too.
'Your infromation' includes bank account info, family members names, your signature, etc... Everything that is needed for a solid identity theft.
Posted 1 September, 2024.
Was this review helpful? Yes No Funny Award
No one has rated this review as helpful yet
6.1 hrs on record
Shortest Prince of Persia game since Sands of Time, took me a bit less than 6 hours. I felt the controls very slighly better compared to the previous ones, which was a relief. I didn't experience any glitches or bugs, so I'm not sure what the negative reviews are talking about.

The story was worse than the sands trilogy and it felt like they cut corners on the abilities. I didn't even use abilities until well over half way through the game because I didn't know it was bound to the keys 1-4, as if it was designed for consoles first and then reminded themselves it needed to run on PC too.

If you are a fan, get it on sale.
Posted 21 July, 2024.
Was this review helpful? Yes No Funny Award
No one has rated this review as helpful yet
56.9 hrs on record (52.5 hrs at review time)
With each new level being added I hate the game more and more. Every few months the game gets an update and I discover I no longer finished the game and got 4 new achievements to get. Yes, I'm a completionist! (And I'm proud of it!)

The game mechanics are purposefully clunky, which is fun for ragdoll effects and for a few levels. But when you simply try to finish the level it gets highly irritating and annoying. Especially when combined with glitches, such as getting stuck to the point you have to reload the last checkpoint.
The puzzles aren't that hard, it is the controls that make you lose your mind because you already tried this swing for 15 times or this precision jump with a blob of a character.

The point is, it sure starts out fun, but right now the gameplay is equal to suffering if you aim for 100% completion.
Posted 8 June, 2024. Last edited 12 June, 2024.
Was this review helpful? Yes No Funny Award
No one has rated this review as helpful yet
6.9 hrs on record (3.4 hrs at review time)
This is the type of game where you stare at the credits rethinking your life after finishing the game.
I doesn't take long to finish, about 3 to 4 hours. I would recommend playing the whole thing in one go for the best experience.

Pros:
- Awesome story
- Nice graphics

Cons:
- Controls can feel a bit cluncky at times
- 32bit game that doesn't have that many options to tweak graphical settings
Posted 2 May, 2024.
Was this review helpful? Yes No Funny Award
2 people found this review helpful
0.8 hrs on record (0.6 hrs at review time)
Had to write my own software to find out that often the puzzle is generated unsolvable.
Here is some code for the dev to fix that:

// nums is a matrix representation of the puzzle, e.g.
// { 4, 1, 8}
// { 3, 5, 6}
// { 7, 2, 0 }
static bool IsSolvable(int[] nums)
{
int inversions = CountInversions(nums);
if (Size % 2 == 1) // For odd grid size
{
return inversions % 2 == 0; // Solvable if even number of inversions
}
else // For even grid size
{
int blankRow = EmptyRow + 1; // 1-based row index of the blank tile
return (inversions + blankRow) % 2 == 1; // Solvable if sum of inversions and row number of blank tile is odd
}
}

static int CountInversions(int[] nums)
{
int inversions = 0;
for (int i = 0; i < nums.Length - 1; i++)
{
for (int j = i + 1; j < nums.Length; j++)
{
if (nums > nums[j] && nums != 0 && nums[j] != 0) // Exclude the blank tile (0) from inversions count
{
inversions++;
}
}
}
return inversions;
}
Posted 2 February, 2024. Last edited 2 February, 2024.
Was this review helpful? Yes No Funny Award
27 people found this review helpful
4 people found this review funny
0.1 hrs on record
Absolute garbage. Unplayable if you use a controller. If you don't touch the controlls, the car leans to the right. The handling is straight nightmare material. Also, 'Finding players...' when starting a single player game?
I have played many NFS games and this is one of the worst.

I got almost 2000 games in my library and this is my first refund ever since I created my steam account 8 years ago. What a shame.
Posted 22 November, 2023.
Was this review helpful? Yes No Funny Award
No one has rated this review as helpful yet
24.9 hrs on record
This ranks among the Dark Souls of platformers. I probably died over 4000 times before I finally completed the game.

This game has some unique twists to its gameplay which makes it challenging and more fun than your standard platform game. It challenges you to think ahead, plan and try a lot of different approaches.
Posted 16 September, 2023.
Was this review helpful? Yes No Funny Award
1 person found this review helpful
11,874.1 hrs on record
It took 4 years for the last area to be released so I could get the final achievement.
It was worth it.
Posted 15 July, 2023.
Was this review helpful? Yes No Funny Award
< 1  2  3  4  5  6  7 >
Showing 1-10 of 61 entries