Surgeon Simulator 2
30 Achievements
1,000
60-80h
Xbox One
Xbox Series
Surgical Champion
Reach level 50 Details for this achievement will be revealed once unlocked
100
0.03%
How to unlock the Surgical Champion achievement in Surgeon Simulator 2 - Definitive Guide
Easy, just time consuming.... Sort of.
From the main room with the tubes in, go to the control panel and select the option to play user made levels. Sorting by top rated, search for XP Grindr.
This is a level which auto completes as soon as you start it, and gives you 50xp (or 75xp if you vote for the level after every game).
Add ten copies of the level to your custom queue, let it run through then repeat.
If you monitor it, you get 25% more XP every game by voting for the level after it's completed.
Otherwise, leave it, then rerun the queue every ten minutes or so.
It took me a good two days of grinding to hit level 50.
From the main room with the tubes in, go to the control panel and select the option to play user made levels. Sorting by top rated, search for XP Grindr.
This is a level which auto completes as soon as you start it, and gives you 50xp (or 75xp if you vote for the level after every game).
Add ten copies of the level to your custom queue, let it run through then repeat.
If you monitor it, you get 25% more XP every game by voting for the level after it's completed.
Otherwise, leave it, then rerun the queue every ten minutes or so.
It took me a good two days of grinding to hit level 50.
7 Comments
After obtaining this achievment in the way mentioned above by C64 Mat, and discussing how annoying it was with Larvi1 and SaP RaZzor, I decided to improve the AHK-script (https://www.autohotkey.com/) I wrote to get me this achievement to automate the process of the ten copies mentioned in the solution. I tested this script during dinner (about 30/40 minutes) and it kept on running without any issues!
The script pressed the E-button on your keyboard for a second, then waits a second. Then the script clicks on the coordinates 1200:600 on your screen. With a 1960 x 1080 resolution that is on the happy face to give a positive rating to the XP GRINDR-level. If you use another screenresolution, feel free to change these coordinates (or make a window out of your game and position it in a way that places the green happy face underneath your cursor). Then, the script pressed the E-button on your keyboard once more for a second, then waits a second and repeats.
Note to user, you have to keep your Surgeon Simulator.exe file on the foreground of your computer. No watching YouTube in the meantime! :)
Esc::Reload
^Esc::ExitApp
^q::
Loop
{
SendInput {E down}
Sleep 1000
SendInput {E up}
Sleep 1000
Click 1200, 600
Sleep 1000
SendInput {E down}
Sleep 1000
SendInput {E up}
Sleep 1000
}
Start the script by pressing Left Control + Q, pause the script by pressing Escape and stop the script entirely by pressing Left Control + Escape. Feel free to change these inputs.^Esc::ExitApp
^q::
Loop
{
SendInput {E down}
Sleep 1000
SendInput {E up}
Sleep 1000
Click 1200, 600
Sleep 1000
SendInput {E down}
Sleep 1000
SendInput {E up}
Sleep 1000
}
The script pressed the E-button on your keyboard for a second, then waits a second. Then the script clicks on the coordinates 1200:600 on your screen. With a 1960 x 1080 resolution that is on the happy face to give a positive rating to the XP GRINDR-level. If you use another screenresolution, feel free to change these coordinates (or make a window out of your game and position it in a way that places the green happy face underneath your cursor). Then, the script pressed the E-button on your keyboard once more for a second, then waits a second and repeats.
Note to user, you have to keep your Surgeon Simulator.exe file on the foreground of your computer. No watching YouTube in the meantime! :)
By EaSkateVideo on 11 Jan 2022 19:15
Script works fine am running into sometimes it doesn't rate, but it's not your script fault I see it make the clicking motion and the game is just stupid and doesn't register sometimes.
By anthonyd46 on 06 Mar 2023 23:39