[SPOILERS] HRM OCD Guide / Records
- Login to post comments
EDIT: See HERE for a better-maintained list of records and solutions.
Here's the current list of Human Resource Machine OCD programs / records. Post if you know one of them that's missing or if you have a program that can beat one of these records! (Records are mine or obvious unless otherwise noted)
(ZIP download link if you just want all my solutions; missing two OCDs)

Nice, ill wait till the game is released then make a series on it on youtube
The game... is released already. Hence the post.
IRC | Chapter Tutorial | Reference Guide
oh ^^ k, sry
24 - 11, 53
35 - 16, 186
36 - 36, 81
41 - 31, 795
I'm just here to claim some record. I did these on my first try. I haven't got everything perfect yet since I don't have that much time. I'm just really curious about the story behind the game.
Maybe I'll upload my solution later. Going to sleep for now.
| Things I made | And even more |
Btw have you realized what fun it is to watch the solution? Maybe we should make videos for solutions.
Okay really going to sleep now.
EDIT:
Those are marked with HACK means that they won't work with every possible input but the game didn't figure it out.
7 - 9, 19HACK9 - 8, 21 HACK
13 - 13, 25 HACK
14 - 10, 34 Proper solution but not a record
14 - 41, 27 HACK
16 - 13, 30 HACK
17 - 12, 27
EDIT:
7 - 8, 19 HACK
14 - 10, 31
17 - 35, 25 HACK
19 - 14, 80
EDIT:
20 - 34, 95
21 - 10, 68
22 - 18, 170
22 - 31, 81 Kinda hacked
23 - 12, 71
24 - 11, 50
25 - 11, 79
26 - 15, 73
EDIT:

29 - 20, 20 HACK
30 - 22, 170 considering what's on the floor, this can't be considered a HACK
31 - 13, 109
32 - 16, 377
34 - 13, 316
35 - 14, 180
35 - 19, 161
36 - 35, 79
37 - 35, 54 not very hackish, same reason
41 - 31, 795
Leaving the last 4 levels for tomorrow (or later).
More coming soon.
| Things I made | And even more |
Don't worry, several of mine are hacks as well! Updating list...
Oh, and please post HRM programs that can be directly pasted into the game. It saves a lot of time.
EDIT: Your solution for #9 does not work (Make sure you're using the latest version of the game, they tightened up the requirements for quite a few OCDs)
Your 25 speed for #17 does not work
IRC | Chapter Tutorial | Reference Guide
I mean if it's a hack, it should be treated separately since they're not actually real solutions... (unless the game meant to do this, like for year 2)
Okay I guess I made some typo... I'm using the latest version. I will recopy them tomorrow... Going to sleep for now.
| Things I made | And even more |
That's my point; it's not a hack if the game accepts it as a real solution. The purpose of this thread is to show records for size/speed, in which case whether or not the solution works in the real world is unimportant. All it needs to do is work ingame.
IRC | Chapter Tutorial | Reference Guide
Reuploading...
9 - 8, 21 HACK
17 - 35, 25 HACK
Have you realized it takes A LOT MORE to produce a minimal working hack from a normal program, especially when a normal program is really looooooong? See 17 - 35, 25 I just posted. Have you seen ALL THOSE JUMPNs I copied to prevent a useless JUMP? Maybe we should have a record for normal programs as well...
Some of those hacks can be heavily optimized for the given input. For example I could determine the rest of the input with only a few INBOXs since there're only a limited number of possible inputs and then I will just OUTBOX the corresponding output. These hacks work but can't be considered useful at all.
| Things I made | And even more |
Added.
Yeah, I like this a lot, because it shows the huge discrepancy between optimizing for size and speed. And it's really low-level, so it shows a lot of what compilers do behind the hood if they're super-optimizing for speed. A lot of it is really unintuitive!
A lot of my programs are heavily optimized for a certain input, too. For example, my speed optimization for level 41, which notes that the first three inputs are high-low-middle, and the last input is just one number. This saves a crazy number of steps sorting the first set, testing every set for just being one number, at the cost of having duplicate code for sets 2 and 3. These probably have the same size every run, so I probably could unravel the loops for those... but that's just too much work (as you likely noticed with a lot of levels, I didn't spend too much time on that
).
IRC | Chapter Tutorial | Reference Guide
38 - 24, 817
Notes:
1. I've optimized the speed while keeping the size, but this will still get you an achievement: Queen of Inefficiency.
2. But it's pretty beautiful.
3. This program will output nothing for zero which isn't correct imo. But it passes the test anyway.
4. This program works for everything between 1 to 9999999. It's just slooooow.
And now... it's time for the hard part.
| Things I made | And even more |
I'm finally back online after I moved.
I got size 10 in year 31
https://www.dropbox.com/s/bq6liet9ro7ry0l/Screenshot%202015-10-31%2012.2...
https://www.dropbox.com/s/9xvhabc2n0b0oqf/Screenshot%202015-10-31%2012.2...
-- HUMAN RESOURCE MACHINE PROGRAM -- a: b: BUMPUP 14 INBOX JUMPZ c COPYTO [14] JUMP b c: d: BUMPDN 14 JUMPZ a COPYFROM [14] OUTBOX JUMP dIn year 20 I got speed 88:
-- HUMAN RESOURCE MACHINE PROGRAM -- a: b: c: d: e: f: g: h: i: j: INBOX JUMPZ ab COPYTO 0 BUMPDN 0 JUMPZ k BUMPDN 0 JUMPZ l BUMPDN 0 JUMPZ n BUMPDN 0 JUMPZ p BUMPDN 0 JUMPZ r BUMPDN 0 JUMPZ t BUMPDN 0 JUMPZ v BUMPDN 0 JUMPZ x BUMPDN 0 JUMPZ z k: INBOX OUTBOX JUMP i l: INBOX JUMPZ m COPYTO 6 ADD 6 m: OUTBOX JUMP j n: INBOX JUMPZ o COPYTO 6 ADD 6 ADD 6 o: OUTBOX JUMP h p: INBOX JUMPZ q COPYTO 6 ADD 6 ADD 6 ADD 6 q: OUTBOX JUMP g r: INBOX JUMPZ s COPYTO 6 ADD 6 ADD 6 ADD 6 ADD 6 s: OUTBOX JUMP f t: INBOX JUMPZ u COPYTO 6 ADD 6 ADD 6 ADD 6 ADD 6 ADD 6 u: OUTBOX JUMP e v: INBOX JUMPZ w COPYTO 6 ADD 6 ADD 6 ADD 6 ADD 6 ADD 6 ADD 6 w: OUTBOX JUMP d x: INBOX JUMPZ y COPYTO 6 ADD 6 ADD 6 ADD 6 ADD 6 ADD 6 ADD 6 ADD 6 y: OUTBOX JUMP c z: INBOX JUMPZ aa COPYTO 6 ADD 6 ADD 6 ADD 6 ADD 6 ADD 6 ADD 6 ADD 6 ADD 6 aa: OUTBOX JUMP b ab: OUTBOX INBOX JUMP a DEFINE LABEL 6 eJxzYWBg4NcVtfikfdLtkzZDq4l2wITJ2oIrNug8375Bp+ooUJohT3fL5P9Gev337fT6QfxdDv17dzm8 7jFz2lB53ZHBYapTrhFI3D5sb1NjaFVDV1BVwxU/5/ZZPj+m/vRxXyjmd27pR/+QVV1B09coh05fIxVh tNI88tzSzVHzZ3+N5O2TikjtAOmfBmQLRVvPKIx2X7g6tmkLSOxTWq7R5LT5YXkZGyrzMhI3n834fKA7 M+IISG5tyWLttSVrlmSX7lybXTr7GEhse8eGyoTW/oqMpktVgvWzG7/UOrcH10lO7214v8y5pWnL9o7E zV29patT+98va5pwcE7TBL1+tn7n9tyeqgaxTtFahlEwCkYYAAASxXRZ; DEFINE LABEL 9 eJzzY2BgkDG5ZLrXONW52kQySMZEdmOcseihBUY+u4FSDN9NtQy2muUaZVtJBrHYvk8Mdo6on+VzdJux /4Z9IHkQfcXv+fZJ/jvXTvLPXHTFb8vkK36zGyf5b6ic5H/NPyAg1wikzif2s1lh9Jr4C9HXpqyONVop n9S/91ey6KGrqaKH+DNy93hm3VrHnl03iz1bMFklpy5UJafKGqRvabm3oVv5a3fNMpYozTKjlOzSP1nZ pVq7Osr2HncrZzglWM9wqrV573GQ2klduUaTuib7vuw1q+vqnTzpZe/0Ncv7mrYc6e/fGzvp0v5ns/r3 gtTFrczd47gidw/7sqYtKstlN/5fIbuxelXTllurnm/fu1Jr16PlR7eB1KksZ2g9umyHctzKWyr/Vzwv clxxqcpxxezG/yvuNTOMglEwTAAAroOJ3g;on the run | keep on running | two-stroke-engine
@goomatz
Nice! Now we have King of Verbosity.
(that one is SOOOO full of hacks though)
| Things I made | And even more |
39 - 14, 73
And the best thing is that this program isn't even a hack
39 - 31, 48 thanks to @goomatz's idea.
| Things I made | And even more |
Great work, you two! And good luck on figuring out speed on 38 and 40... those have me properly stumped.
IRC | Chapter Tutorial | Reference Guide
Year 38 speed 153:
-- HUMAN RESOURCE MACHINE PROGRAM -- a: COPYFROM 9 COPYTO 6 COPYTO 7 INBOX SUB 11 JUMPN al SUB 11 JUMPN p SUB 11 JUMPN n SUB 11 JUMPN l SUB 11 JUMPN j SUB 11 JUMPN h SUB 11 JUMPN f SUB 11 JUMPN d SUB 11 JUMPN b COPYTO 0 BUMPUP 7 JUMP c b: ADD 11 COPYTO 0 c: BUMPUP 7 JUMP e d: ADD 11 COPYTO 0 e: BUMPUP 7 JUMP g f: ADD 11 COPYTO 0 g: BUMPUP 7 JUMP i h: ADD 11 COPYTO 0 i: BUMPUP 7 JUMP k j: ADD 11 COPYTO 0 k: BUMPUP 7 JUMP m l: ADD 11 COPYTO 0 m: BUMPUP 7 JUMP o n: ADD 11 COPYTO 0 o: BUMPUP 7 JUMP q p: ADD 11 COPYTO 0 q: BUMPUP 7 OUTBOX COPYFROM 0 SUB 10 JUMPN ai r: SUB 10 JUMPN ag SUB 10 JUMPN ae SUB 10 JUMPN ac SUB 10 JUMPN aa SUB 10 JUMPN y SUB 10 JUMPN w SUB 10 JUMPN u SUB 10 JUMPN s COPYTO 0 BUMPUP 6 JUMP t s: ADD 10 COPYTO 0 t: BUMPUP 6 JUMP v u: ADD 10 COPYTO 0 v: BUMPUP 6 JUMP x w: ADD 10 COPYTO 0 x: BUMPUP 6 JUMP z y: ADD 10 COPYTO 0 z: BUMPUP 6 JUMP ab aa: ADD 10 COPYTO 0 ab: BUMPUP 6 JUMP ad ac: ADD 10 COPYTO 0 ad: BUMPUP 6 JUMP af ae: ADD 10 COPYTO 0 af: BUMPUP 6 JUMP ah ag: ADD 10 COPYTO 0 ah: BUMPUP 6 JUMP aj ai: ADD 10 COPYTO 0 COPYFROM 6 aj: OUTBOX COPYFROM 0 ak: OUTBOX JUMP a al: ADD 11 SUB 10 JUMPN am JUMP r am: ADD 10 JUMP ak DEFINE LABEL 9 eJxzYmBg6BFL3XZQynvJPunXPTUyMU3mcufKP8vLhq5W8vbIVN5h9UAtQvmu+mzVu+o7rGZo9nk5GkXU 7zDV6y82Z5mfbPv5wCLbW+sCXCb7Hnefr3HEI0L5iIegXJMnjzTQaIYHoY+0HoRG1MeEa/WIRu2d2Rfj vvBDuuzGzCzZjWGFqdsEi+9tnFo4eWVw0cE5wUUnSwSLv6cLFu+wAuld3vRcV7vxj412Y5+XXkNqVHGd WXpxnV6/XkPpFI6+0ilWk/fO3Dht78z86QxzNGYxzHFf5r3k01rvJSC9qzeYcRuuC1EwXBdR/36d+0KT tbfWmaxV2lK2JnWbydrMne/XZe6cte3WOsFd09csOTV9DQMVQMebP8eoYc4oGAX0BABZcHYC;on the run | keep on running | two-stroke-engine
Good work, goomatz! I guess brute force is the way we were expected to optimize for speed for that one...
IRC | Chapter Tutorial | Reference Guide
I checked your program of year 40.
You are actually not that far away from speed OCD.
here is what I came up with:
-- HUMAN RESOURCE MACHINE PROGRAM -- COMMENT 0 a: COPYFROM 24 b: COPYTO 23 BUMPUP 23 BUMPUP 23 ADD 23 COPYTO 22 COPYFROM 23 COPYTO 1 INBOX COPYTO 0 c: d: COPYFROM 24 COPYTO 5 COPYFROM 0 e: SUB 1 JUMPZ f JUMPN g COPYTO 2 BUMPUP 5 COPYFROM 2 JUMP e f: COPYFROM 1 OUTBOX COPYFROM 23 COPYTO 1 COPYFROM 5 JUMPZ b COPYTO 0 BUMPUP 0 JUMP d g: BUMPUP 1 SUB 22 JUMPZ h JUMP c h: COPYFROM 0 OUTBOX JUMP a DEFINE COMMENT 0 eJzTZmBgCHDZYn7F6b2xjtUGkx2mldY8ereCuvVSo2xMDuYVWITUpNnMb5lvVzpF0c56xgGjySuBWhg6 46bXdca1LQCx2+KnB4Do6urcBL2GLan/Ju7N/j2JIS+g+1rt+eJLK6qrr63mX6y0BaTm1QajScf3Gk2K P8NREn/GuUD59N7s7Ye/pzcvP1rYtoyjhGtpRL3n0g0TKlfPXl+8dsnWKztYzp7aw3Hh0H7nMwyjYBSM AqoDAGn6S88; DEFINE LABEL 0 eJwzY2BgmO74xybbqr8iz/J5Z57l3pnF5rPXd+tp9YhoJ7Q+UHvfn67yZ8ZqpbYF+Yqiq/MVZ69XVZ2/ aZFtzAagVoZ5YaKr54Wt2AFiC8TU5YDoDemitesyZJsVc7cclM/bsE8mX3S1SNGWyY6Vf7JA8otayg5l N55c9KbBaFJGk2zzw5b+imsdLIV8Pfa5x/oO5h3p5yhpmhDT1DThx1SPvskrA7qVtsxpe793afP7ve/r IXbJz+VYpDpbdmP+9ML9BtO7SlfO1EtcOEcx4vY82dDJC++FMoyCUTAKiAIAjMpdmA; DEFINE LABEL 1 eJxzYWBgmG/32Wyu/ZZUOfudR0zMP0+yNFXrrDNWbOPSf93Dr2s2dbbG5JUxGqnbwrQK91/Q+XG4Q9/6 2BObqqNy9lsOArUzbPHzXlLq93w7iJ0fEFEPopkSj863SsndU5nSdHpHyuz1X1M/TypMv9WglbU3GyTP WXZtdWv5tdUVNScXaTZp9SS3TK9TbplcvbxpcnVprWJbd+nBOeKF09fMKFDaIl6otetSUeF+t/I/x940 tJ2LbWs7BzIjZXbqtskLf0yduGh+i9CiiPrI+RH18XNnN2bNfN5pOvV9f3uf+0KOvmurj/S/31s1+ejZ jdN4Ly+eLXjt9jzBaxcW8V4GmdGS8GNqW7zZ1M64DRP8YwSrGEbBKBhhAADElXyd; DEFINE LABEL 2 eJxTY2BgsDTlcKvyYXEGMhm63Cb7nnGdHsDnejCPz1W2+Yzrj6kgcdEolvnhkV2Lb0R8nhQSNbuRK+5g HlPi3ux9SQx5VikBlTtS/swwShetfZtxtPBF1p+sxFy9/uj8tgUgvQX181sM60unVFfHbKit8l5iXT27 sbS2KX99vVHKqsbMWOl22dCo9veJc9r+ZCm3hNRoN95qYBgFo2AU0AUAANc8PTA; DEFINE LABEL 5 eJxzZ2BgUFd5pDVPfYu5uJa3h4h2TMgFHeeCCzos8yfocCyS0iycuEBtTe9qpS2TD0sKrnCVVNryQ3bD vhylzwfUVT4fWKy6YZ+U5pKtQGMYltos2frKquooiK1i+7gNRHO7CVa5engv2e9VdXS/1/Ptv71DVqUH 85SD5CYUJ7Qm5mZ2G6WXTqlMqZu1L8l7yYFErV37kj4fqEyxPvYhvel0XF7T6clF9ic9y34cBulZ3sQw J6PJ6IB2Y8gN7cam05pNO4+kNkesvdO2outah2LbuW7Z5jM9ss1H+jO7f0+qm2Ux5fEWiyknL4D08i5x L76wyGjShUXeS/gXX1t9esmKHezLcvdsWGd+WHOj+eG5W9/vBalbOGd2o+MK2WaGUTAKRgAAALWffJ8; DEFINE LABEL 22 eJwTZGBgmOr02mCqk2LEdcc18dcdm/IlHU+WSDoaTZKINJp0Ibp0ikla6ZQP6UaTMrOMJgGVM4RH5iaE R0bUi0bFNIlGtZ1jGAWjYBQMWQAAN8sZBw; DEFINE LABEL 23 eJyTZWBgOB1bZ9eYWGrxIuuzWW/JDqvSWmcnzaaznrFtMSFneiQbunpXdHX1fp50pqdu1rUOyXXzW9W2 v6/fcnBvVd0JkSKGU2nZ5oe1st7v1crK3Pk0+9rqxTmXVkTnn1t6tfDc0kMV09f8rE7cHNVeduhc98FT +yZ2X2QYBaNgFAwaAAB4Kj2k; DEFINE LABEL 24 eJyTZGBgqEm+JJeTOVner0RW/U+VlsH6emenJ83vE5c2SzasatTr/1LbtmB/pehq/hKlLU+zU7fxxqZu mxcWs2GLn/cSC1/nefVeim1Nnt5lBz2/p+/0mR28JnCv7eMQI7MbEVoGx+LnazCMglEwCgYtAACW+ivr ;That gets you speed 303
It feels kind of cheesy to use your program instead of making my own one.
on the run | keep on running | two-stroke-engine
Found this: https://github.com/atesgoral/hrm-solutions
That one has more people contributing and therefore is more active and better maintained.
| Things I made | And even more |
I got size 32 in year 28:
-- HUMAN RESOURCE MACHINE PROGRAM -- a: INBOX COPYTO 0 INBOX COPYTO 1 INBOX COPYTO 2 b: COPYFROM 1 SUB 0 JUMPN c COPYFROM 2 SUB 1 JUMPN d COPYFROM 0 OUTBOX COPYFROM 1 OUTBOX COPYFROM 2 OUTBOX JUMP a c: COPYFROM 0 COPYTO 5 COPYFROM 1 COPYTO 0 COPYFROM 5 COPYTO 1 d: COPYFROM 1 COPYTO 5 COPYFROM 2 COPYTO 1 COPYFROM 5 COPYTO 2 JUMP b DEFINE LABEL 0 eJyTZGBgSFEN8H6gds1/hbXa9knOl65JO/w5Ju2w5SBQisHX9V5ov0tmbL/L9/QCi70zefRurePXVdoS on1vY4j29DUgNQtDc/dIRGrt6om9t9ErTmmLe/y9jZ1AujOO4x9rgvUXhlEwCkbBoAUA9eAooQ; DEFINE LABEL 1 eJyzZ2Bg2Cd90MFcjsX5s7y3R5hWTFOI9vyWEO0l7fy6r3vO6lZNdzSavPKPsdr2MrMN+8rMfhzWs2w7 p2d57vIrq0vXXllJ3llqE3Nvqc2Sx8m2K549t5a8AzSS4bn1ZN9kW28PHStvj2bDzNhTemvi+XU/p8ir N+WnqJ4rX60UUW8qbzSpXO7gnEpZlvkM0vc2MkirbXeV/HHYXeLStR4xEHY+AzKr1ntFl7XPkvZnwUva 54U977wcVTrlctTBOX0x3kv6YqavEY3K3DkvbMO+xyEb9uUG/jmWG+h8Zn1A27n1Ad0XN/qfu7zRX/Rm fsCla1ER/VcuRAPNjZW84x4PcecoGAUjHQAAgH9zeg; DEFINE LABEL 2 eJzzYmBgmKE5X6PNYK/tK6vJvtcdU6OmOm1I4nZrK7L1NpqUH+C9JDdw+pqFoRv2RUX8OHwhuu1cX8yl az2xojfDI7ccBGpniAl/bTAvTM9YNWSyb27gmviDnpINBz0vVXG6xzQdd5/fctx9STun+/PO4+6vezjd 9fqPu6/oOu6e0OrruqR9knNCq7TD804dq6rpepZV04vND875ZTJ9jZ3xvY1/jGH07PWORkpbAnW6L07T Ond5hqboTZC9mVkBy9OyeZcq5oIwx6K7eRyLZucfnX+25Na6U6VKW06V/jjMU/rnWHCR/cmphc5nbuW3 nQsrBOHui4LF5y6fLRG9ebYk5t6p0sSHp0rfv+YvMXoXWGz+cUZB1WfF3KrPKTl131Zn1n3LzLL+wjAK RsEwBQDZh43A; DEFINE LABEL 5 eJw7xcDA0Ck+XalS9pHWZ/lHWquVtAz4dQtNefR2WM3Q/GNzV93ZKV3F3dVI4ZJPpewlnx6x1KhzoooR wiJr4oVFPqcwS50scTSa3bjLZHYj0CgGaYcud073NfFHPLR66r2ed37zPVe+xc86KzdQMUI7aHbjs+Cd 0+aFVU2PinjdExVhnQXSw5qwIsY8dX6LSVpMk0nauXKQWFnqSQkQ7VjZ5c5fkhAeWPw55WyJdVZreVO+ Y2VT/qnSpvzA4pCawGKIvUub99oubXZ31W685KPXIBtaUL8mvqD+ZMnLxoj65JbZjQHdsxuP9Z0s8ept KwKpP9J/VPRI/3Ql20l/bGwnCVb9mCxYlT/9VtCzWbKhC+e8T1w452hhzLyjheIL7HNB6veuZHHuXOru emFRn5foQskg0YUrYliXW2ftXVmXs3Y9T3nmRp5ylc2CVXe2nisP3mmfe2b3mvhTe9bEd+x9n9ixV7DK ef/JEocD1lmlRxQj3hxPjUo6vSb+5jnrLP9LTfkcV0NqvK7Mb+m/pNUz8aJWz7XzEfUgO92XXfOvXH3N 33zNZN+9Kyf7Mq245g8Sf6D259gDtS0HVypn7lytlLnTVP7H4XI50ZsfFBY8uKu+4IGQzqVrQjpt50Bq T+hn7jyhv2HfKb0fh0/pxdzr0F/woEP/+VOQ3HPrndOeW5+7/Moq4nay7Y/D0g6ZOyc5r9l93N36WL2X 6M16ryWPD3o+fzrJ+fnT646iN2Ptz10G6dMIZpmvEdy/7HGI0pbHIScvaAQ/f6oRvPfrwtCqz/PC9n6N Ca/6DFL3Ka374r6k7osuCUseuyQYvTuQWPW5MqXq86c084/rMlY8W5cBcaNzxZ9jPKV/jvGX2J/kL4m4 fap0yWPHyiWP/1RJ3vlTde7yrmrRm7uq//8Hqd1c8v8/fwnHv7MlR39D4t35zJTOkxdsJ9mftJr843DN pMydXr1q2/u7lbZc61DaItGRuk2iY81u6Xag/9ojbk/qMnrH3Vv1+Vhf1ecfk9+/zp+e+DB/esw9rZkx 9zRmSd75NkXyDsjctOy2cyo5z58q5r5+oZhb9oFhGAMAylN36Q;on the run | keep on running | two-stroke-engine
@goomatz
Have you seen my previous post? I would suggest you to submit your records to that GitHub repo when you have one...
I've submitted quite a few by now.
| Things I made | And even more |
Considering that one's actively maintained, and there appears to be a community forming there concerning making simulators and programs to test input/output, it's definitely enough for now I think. Rather than trying to keep this one synchronized with that one, I'll probably just call this list inactive and direct future records towards there.
IRC | Chapter Tutorial | Reference Guide
So how do I post my records there?
I tried to do so yesterday with my size 10 in year 31 and nothing happened. And now there is the exact same program posted by firegoblin.
on the run | keep on running | two-stroke-engine
@goomatz
No he has submitted that long ago.
If you don't know anything about GitHub, the easiest way should be go to Submit a new issue, leave your title, indent your program with 4 spaces like so and paste it into comment, then submit. And the maintainer should do the job for you.
-- HUMAN RESOURCE MACHINE PROGRAM -- -- 02-Busy-Mail-Room - SIZE 3/30 - SPEED 30/25 -- -- The jump command is introduced. This time inbox and outbox are looped with a -- jump for automation. a: INBOX OUTBOX JUMP aEDIT: Oh of course you would need to sign in first.
| Things I made | And even more |
But the game always says that the input is a special case, so how do your guys hacking? Retry the level again and again?
It's not a BUG, it's a feature.
Edit:
This amazing game must have some addins to expand it!
eeee