Are you looking to complete all the achievements in Purple Place – Classic Games? Look no further! This guide will provide you with all the information you need to earn a 100% achievement score in Purple Place. From tips and tricks to step-by-step instructions, this guide has got you covered. Let’s dive in and conquer Purple Place!
Miscellaneous Achievements
I’ve already seen this somewhere
Just start the game
It could be worse…
Lose 1 game
Lose any game. Can be completed by doing Time is over.
Memory Match
Find all the pairs on easy difficulty
Student
Find all the pairs on medium difficulty
Professor
Find all the pairs on hard difficulty
Beat Memory Match on each difficulty.
Puzzle Master
Find all the pairs on a difficult level without using clues from the aquarium
Beat the hard difficulty without using a hint by clicking on the golden coin in the bottom left. Completes the Professor achievement as well.
Luck?
Open 5 pairs in a row
Match 5 pairs in a row without failing one. Easily done on the easiest difficulty by using hints and memorizing 5 pairs.
Baking cakes
Use the pastry chef card 10 times
Joker trap
Use the Joker card 10 times
I love the mixer
Use the mixer card 10 times
Use each special card 10 times. Done by playing the hard difficulty a few times.
I love the mixer
Use the mixer card 10 times
Use the hint by click the coins in the bottom left 10 times.
Time is over
Play the matchmaking game against the clock
play a game on medium or hard difficulty, click on one card once and let the timer run out. completes the It could be worse and also either the Student or Professor achievement.
Cake Master
Bake a cake without errors on the highest difficulty level
Bake one cake on the hardest difficulty without making a mistake.
Valentine’s Day
Bake a heart shaped triple cake with red topping and heart decoration
Spam incomplete cakes until you see a heart shaped triple cake with pink glaze and a heart decoration in the top left. This cake has a 1/36 Chance to appear. All the other colors do not matter. Recreate the cake on the TV.
Milky way
Use cream 10 times
Chocolate lover
Use chocolate glaze 10 times
For good luck
Use clover cake decoration 10 times
Grill
Use fry 10 times
Use each ingredient 10 times. You can switch between different creams, glazes and decorations repeatedly on the same cake. The ingredients do not have to match with the ones on the TV. For the grill achievement, change the glaze to a different one and burn it again.
Novice pastry chef
Bake your first cake
Master pastry chef
Bake 50 cakes
Pastry chef
Bake 100 cakes
The world’s best baker
Bake 300 cakes
Spam incomplete cakes until you have 300, they don’t have to be correct. This takes a very long time and is quite annoying to do by hand. This can be automated with a script.
A python example for a 1440p monitor would be:
import keyboard
from pynput.mouse import Button, Controller
mouse = Controller()
def bakeCake():
for i in range(0,5):
mouse.click(Button.left)
time.sleep(0.35)
mouse.click(Button.left)
def bakeCakes():
for i in range (0,6):
bakeCake()
time.sleep(1.45)
loop = True
keyboard.wait(“g”)
print(“go”)
while loop:
time.sleep(0.1)
mouse.position = (820, 1220)
bakeCakes()
time.sleep(0.1)
mouse.position = (1440, 1100)
mouse.click(Button.left)
if(keyboard.is_pressed(“s”)):
loop = False
Fashion Frenzy
Win a dress up game on easy difficulty
Fashion designer
Win a dress up game on medium difficulty
Style star
Win a dress up game on hard difficulty
Beat Fashion Frenzy on each difficulty.
Very sharp eye
Find the right clothes on the first try on Hard difficulty
You have to guess the right clothes on the hardest difficulty in one try. This is also quite annoying, the chance of that happening is 1/3125.
This can also be automated via script, here is a python example for a 1440p monitor:
import keyboard
from pynput.mouse import Button, Controller
mouse = Controller()
def click(x,y):
mouse.position = (x,y)
mouse.click(Button.left)
time.sleep(0.02)
loop = True
keyboard.wait(“g”)
print(“go”)
while loop:
click(1590,240)
click(1590,430)
click(1590,590)
click(1590,760)
click(1590,920)
click(1150,1000)
click(70,190)
click(1960,690)
if(keyboard.is_pressed(“s”)):
loop = False
you can use the scripts by installing all the required libraries, running the code and pressing g. can be interrupted by pressing s.
And that wraps up our share on Purple Place – Classic Games: Purple Place 100% Achievement Guide. If you have any additional insights or tips to contribute, don’t hesitate to drop a comment below. For a more in-depth read, you can refer to the original article here by Christoshin, who deserves all the credit. Happy gaming!