Stuckt on Junior Visionary

Hey there!

Probably, could anybody help me :blush::smiling_face:

I have stucked at level

I tried usually Cpp, but when the Hero stucks near Raft, I tried Python as well.

Could you please help me?

Stuckt here:

The code:

for x in range(7):
    if x == 7:
        go("up", 3);
    if look("left"):
        for z in range(4):
            zap("left");
        go("left", 1);
        go("right", 1);
    if look("right"):
        for y in range(4):
            zap("right");
        go("right", 1);
        go("up", 1);
        go("down", 1);
        go("left", 1);      
    go("up", 1);

So the Hero just stays near Raft and the level is finished (but not solved)

Thank you
In advance

1 Like

I believe this is a bug.

Hey there

despite of even proposed solutions wasn’t work I’ve found out, that the hero just late of time.
So I’ve gave to the solution a crutch - added new counter of movings UP - an “int X = 0”, “do not spend time for shooting on X == 3”.

Thank you all