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 de Hispanoamérica
Ελληνικά (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 de Brasil)
Română (rumano)
Русский (ruso)
Suomi (finés)
Svenska (sueco)
Türkçe (turco)
Tiếng Việt (vietnamita)
Українська (ucraniano)
Comunicar un error de traducción
but if you want a quick solution with 7 commands try:
step s
a:
if myitem != datacube:
takefrom s
endif
if myitem < 50:
giveto sw
step e
endif
jump a
it is ~26-34s
step s
a:
takefrom s
if myitem < 50 :
giveto sw
step e
endif
giveto n
jump a
The timing is quite bad at 55s but it's the only solution with less than 7 commands I could come up with.
Thanks a lot!
[code]
-- 7 Billion Humans (2235) --
-- 2: Welcome, New Employees --
step s
step n
pickup c
step ne
step sw
pickup c
step nw
step se
pickup c
step s
pickup c
drop
[/code]
and for Solution Not Robust there are some shorter solutions too.
[code]
-- 7 Billion Humans (2235) --
-- 22: Number Royale by nezhi [ https://steamcommunity.com/profiles/76561198013091047 ] --
-- and @abfipes12 --
-- successful => 43.12% --
-- Size: 4 ; speed: 1s --
if s < 89 or
sw > s or
se > s:
a:
step s
jump a
endif
pickup s
[code]
and
[code]
-- 7 Billion Humans (2235) --
-- 56: Local Maximums by @n05ucc4u --
pickup nw
write 99
mem1 = nearest shredder
giveto mem1
[/code]
level 53 is indeed 73s. something went wrong during writing, I will fix that.
I see that not only the fastest solutions that fit within the challenge length are of interest, but also the shortest solutions that fit within the challenge time. Maybe I'll add this category
If they meet the criteria given at the top, I'd love to put them into the guide!
Are there solutions with possible fail conditions in the guide? I tried to avoid them, though such a solution or 2 might have slipped through, if failing occurs really rarely. I do not intend to add more of those to the guide, even if successful performance would be an improvement.
Fixed the times for year 10 and 66, thanks. Though 53 remains at a 100% consistent 73s for me =/
What about solutions that are not successful all the time?
Years 04 06 16 21 32 37 43 44 46 57 61 can be improved
Year 10 speed is ~155-221s
year 66 speed is 113s
year 53 speed is 67s
year 66 speed is 113s
[code]
-- 7 Billion Humans (2235) --
-- 50: Cubical Communication --
mem1 = nearest datacube
mem2 = set mem1
a:
takefrom s
step e
b:
if mem2 > 1:
mem2 = calc mem2 - 1
jump b
endif
giveto s
step w
mem2 = set 4
jump a
[/code]