Instalar Steam
iniciar sesión
|
idioma
简体中文 (Chino simplificado)
繁體中文 (Chino tradicional)
日本語 (Japonés)
한국어 (Coreano)
ไทย (Tailandés)
български (Búlgaro)
Čeština (Checo)
Dansk (Danés)
Deutsch (Alemán)
English (Inglés)
Español - España
Ελληνικά (Griego)
Français (Francés)
Italiano
Bahasa Indonesia (indonesio)
Magyar (Húngaro)
Nederlands (Holandés)
Norsk (Noruego)
Polski (Polaco)
Português (Portugués de Portugal)
Português - Brasil (Portugués - Brasil)
Română (Rumano)
Русский (Ruso)
Suomi (Finés)
Svenska (Sueco)
Türkçe (Turco)
Tiếng Việt (Vietnamita)
Українська (Ucraniano)
Informar de un error de traducción
Incidentally, I think I was messing around with it and I created a brute force key like this:
It felt a little sloppy but I'm proud that I figured that out. It's slow as hell looping through those numbers and literally almost takes an entire day. Another thing is that it doesn't stop when it gets to the right number so that's something I'll have to keep working on.
Edit: I imagine writing a bruteforce key that stops on the right number would look something like this:
I mean, if you just hack a bunch of random objects you're bound to find something that looks like a loop. Then you can just copy it. I think the gardener might also have a lesson on loops, if you happen to have triggered his storyline.
Regarding speed, as far as I'm aware, every door except one (?) in the game can be opened with a three digit code. Of course, you'll still want to figure out how to break out of loops, but for that experimentation might suffice.
Spoilers ahead
You still have to append keys to the array manually, as I believe it isn't possible to store it with just the key and I couldn't figure out a way to connect it with a drive to store the data. It still will safe some time after you learned the code for the door and also stops once it unlocks it.
First, I keep the SPRAK manual and the SPRAK command reference page up in a browser while I'm playing to double check my code. The SRAK manual is available in game, but useful to have open in another window. Use both at your own discretion.
You might want to look at the documentation specifically on "loop" and "break" in the manual to make your code stop on the correct number.
I'm not sure about decreasing the time to find the key code. I would bet there's a way to connect to another item that is able to read the exact array off the door that holds the key code, and copy it for you. You could also try and incorporate the effects of drugs that speed up time, so you wouldn't be waiting as long. But since you're asking about brute forcing it, I'll include a skeleton key which can take a while if the key code is in the high digits.
*SPOILER*
Skeleton key:
if Unlock(x)
Unlock(x + 1)
break
end
end
This code unlocks the door when it reaches the right key code, but also increases one more time. If you want to copy the code for another item, just copy the last number -1 to your clipboard. I do have to wait a long time if the key code is in the 9xxx range, but I don't think it's an entire day.
If you hack certain APIs to certain objects with the modifier and a screwdriver, you could - conceivably - just unlock a target. At worst, you'd have to connect to a machine that can unlock other objects and then pass it the object's name you want to unlock.
https://youtu.be/PK7rCEkByY4
Just use the functions down below to either unlock all doors in your room or in the whole world. Or use the door name to individually unlock doors.
Edit: If you have tested it and it isn't, please tell me explicitly that. I'll dive in and fix it.