Outcore
nek0d3r 14 Thg11, 2023 @ 1:43am
Weird coin collecting bug in Stage 4
I haven't tested its consistency, but after a while I noticed the lower right coin consistently not being collected as the character walks over it in Stage 4. Here's the code I had if you want to try it out:

function TurnAround() { TurnLeft() TurnLeft() } function MoveAmount(amount) { let i = 0 while(i < amount) { MoveForward() i++ } } function Wait(turns) { let i = 0 while(i < turns) { DoNothing() i++ } } TurnAround() MoveAmount(3) while(true) { MoveAmount(7) TurnRight() MoveAmount(2) TurnAround() MoveAmount(5) TurnLeft() MoveAmount(8) Wait(4) TurnLeft() MoveAmount(3) TurnLeft() MoveForward() }
< >
Đang hiển thị 1-1 trong 1 bình luận
Doctor Shinobi  [nhà phát triển] 14 Thg11, 2023 @ 2:29am 
Your character can only hold a certain amount of coins at a time. If you reach the maximum then it won't collect any more coins. The number above their head represents that, so make sure to throw out all the coins into the collector before restarting the loop
< >
Đang hiển thị 1-1 trong 1 bình luận
Mỗi trang: 1530 50

Ngày đăng: 14 Thg11, 2023 @ 1:43am
Bài viết: 1