Lockpicking Guide
Gothic 1 Remake Lockpicking, Explained
The reworked lockpicking puzzle in the Gothic 1 Remake throws out the old left/right tumbler combination and replaces it with a sliding plate-and-pin mechanic that catches almost everyone off guard. This guide explains exactly how it works, why it feels so confusing at first, and how to crack any chest โ whether you want to reason it out yourself or let the solver do the heavy lifting.
If you came from the original 2001 Gothic, forget what you knew. The classic lock was a memory game: a hidden sequence of left and right turns that you brute forced one tumbler at a time. The remake replaces it with something closer to a sliding logic puzzle, where every plate you move can drag other plates with it. That single change is the reason so many players get stuck on chests they could have opened in seconds in the old game.
The goal: every pin on slot 4
A lock is a row of vertical plates. Each plate has a single pin resting in one of seven slots, numbered 1 to 7 from left to right. The lock opens only when every pin sits on the centre slot, slot 4. When a pin reaches slot 4 it visibly pops up instead of hanging down โ that is your confirmation that the plate is solved.
So the entire puzzle reduces to one sentence: move the pins until all of them rest on slot 4 at the same time. Easy to state, deceptively hard to do, because the plates do not move independently.
The twist: plates are connected
When you slide a plate, it never moves alone. Each plate is linked to one or more of its neighbours, and sliding it drags every linked plate along with it. The links are directional and asymmetric:
- Sliding a plate one way shifts its connected plates in a fixed direction (some go left, some go right โ it depends on the link).
- Sliding the same plate the other way does the exact opposite to every connected plate.
This is why nudging the plate that looks wrong so often breaks two plates that were already correct. You are not moving a pin; you are moving a whole web of pins. Solving the lock means finding a sequence of moves where the side effects cancel out and all seven pins land on slot 4 together.

Custom web development in Montreal
React ยท Next.js ยท TypeScript
How to read the connections in-game
You cannot solve a lock until you know which plates are linked to which. The game does not label them, so you have to map them yourself. It takes about a minute:
- Open the chest and look at the starting position of every pin. Note each plate's slot number (1โ7), left to right.
- Slide one plate a single step and watch the whole row. Some plates will shift with it. Record, for that plate, which other plates moved and in which direction (โถ for right, โ for left).
- Slide it back to undo, then repeat for the next plate. You only need to test each plate in one direction โ the other direction is always the mirror image, so testing it adds no information.
When you have done this for every plate you have a complete connection map. That map, plus the starting pin positions, is everything needed to compute a solution.
Tip: write the connections down (or enter them straight into the solver). Holding a seven-plate dependency graph in your head while you experiment is exactly the part the puzzle is designed to overload.
Solving it by hand
Once you understand the structure you can solve simpler locks manually. A few strategies that work:
- Solve from the most-connected plate outward. The plate that drags the most others is the one with the biggest side effects. Get it roughly right first, then clean up the plates that only affect themselves.
- Count distance to slot 4, not raw position. A pin on slot 2 is two steps away; a pin on slot 6 is two steps away in the other direction. You are trying to zero out every distance simultaneously.
- Look for a plate with no incoming links. If a plate is only moved by sliding itself, fix it last โ nothing else will disturb it.
- Undo freely. There is no penalty for sliding a plate back, so experiment. The puzzle is deterministic: the same move always has the same effect.
For tightly interlinked locks, hand-solving turns into trial and error fast, because the number of possible move sequences grows explosively with each added connection. That is exactly where a solver helps.
Solving it instantly with the solver
The Gothic Lockpicker solver does the search for you. You enter the starting pin positions and the connection map you read off in-game, and it runs a breadth-first search over every reachable lock state to return the shortest possible sequence of moves that aligns all seven pins to slot 4. Because it explores states in order of distance, the first solution it finds is guaranteed to be the fewest moves โ no wasted clicks in front of an enemy or a closing window.
You then just mirror the listed moves in-game, one slide at a time, and the lock opens. If you would rather skip data entry entirely, the community chest map lets you pick a known chest by location and grab a solution other players have already verified.
Common mistakes
- Treating each plate as independent. The whole difficulty is the linkage. If you ignore it you will loop forever.
- Mis-recording a connection direction. One flipped arrow makes the whole solution wrong. Re-check any plate whose result surprises you.
- Forgetting that slot 4 is the target, not slot 1 or 7. The centre slot is the solved state for every plate.
- Pushing a pin past the edge. This is what actually snaps your lockpick. The moment a pin is already on the outermost hole (slot 1 or slot 7), sliding it one more step in the same direction breaks the pick instantly โ and because plates are connected, a move that looks safe can shove a linkedpin off the edge without you noticing. Carry spare picks, and plan moves that keep every pin inside slots 1โ7. (The solver only ever returns sequences that never touch an edge, so a computed solution can't cost you a pick.)
Frequently asked questions
Do I need a high lockpicking skill?
The alignment puzzle itself is the same for everyone โ there is always a sequence that brings every pin to slot 4. What your lockpicking skill changes is how forgivingthe attempt is: a higher skill lets a pick survive more strains before it snaps, and at the highest tier a broken pick removes one of the lock's connections, simplifying it rather than just costing you the pick. So skill does not change the answer, only how much margin you have while entering it. See the lockpicks & skill guide for the details.
Can a lock be impossible?
No. Every in-game lock has at least one valid sequence that brings all pins to slot 4. If the solver reports no solution, double-check your connection map โ an impossible map almost always means a mis-recorded link.
Why does fixing one plate break another?
Because they are connected. That is the core mechanic, not a bug. The art of the puzzle is ordering your moves so the side effects line up instead of fighting each other.
Ready to open that chest?
Enter your lock and get the shortest step-by-step solution in seconds.
Open the solver โ