Having trouble with "seige of stonehold"

ever since i started the level “seige of stonehold” i have not been able to get my character to move to the flags, i already have a plan for how i want to beat the level but even when i try entering, just the code for flag movment, my character does nothing. This is the code im using, is there something wrong with it?

flag = self.findFlag()
if flag:
self.pickUpFlag(flag)
else:
pass

  1. Put your code inside a infinite loop. Add an action to pass the time on the else branch (move,attack, etc)
  2. Make sure you have equipped a flag on your character equip screen
  3. Flags are only available on submit (afterwards the next “run” will use the flag added in submit). Press one of G,V,B and click to place the flag
1 Like