用户工具

站点工具


04-游戏:70亿人:012

012 Unzip (8/7)

8/4

snippet.asm
-- 7 Billion Humans (2212:2214M) --
-- 12: Unzip --
 
pickup c
a:
if sw == worker or
 se == worker or
 nw == wall:
	step n
	drop
endif
if w == worker and
 e == wall or
 nw == worker or
 ne == worker:
	step s
	drop
endif
jump a

7/8

见: Github

snippet.asm
-- 7 Billion Humans (2212:2214M) --
-- 12: Unzip --
 
a:
pickup c
if sw == worker or
 se == worker or
 nw == wall:
	step n
endif
if w == worker and
 e == wall or
 nw == worker or
 ne == worker:
	step s
endif
drop
jump a

7/12

snippet.asm
-- 7 Billion Humans (2212:2214M) --
-- 12: Unzip --
 
a:
pickup c
if nw == wall or
 sw == worker:
	step n
endif
if nw == worker:
	step s
endif
drop
jump a

11/18

snippet.asm
-- 7 Billion Humans (2212:2214M) --
-- 12: Unzip --
 
pickup c
if w == wall:
	step n
	drop
endif
a:
if nw == datacube:
	step s
	drop
endif
if sw == datacube:
	step n
	drop
endif
jump a
04-游戏/70亿人/012.txt · 最后更改: 2020/04/07 06:36 由 annhe