Not sure if this is a bug or level help. But every time i try to beat this level it never loads.
my code:
while self.now() < 20:
self.say("message")
while self.gold < 60:
item = self.findNearest(self.findItems())
coins = self.findItems()
coinIndex = 0
while coinIndex < len(coins):
coin = coins[coinIndex]
if coin.value > 1:
self.moveXY(coin.pos.x, coin.pos.y)
coinIndex += 1
while self.pos.x > 16:
self.move({'x': 15, 'y': 38})
self.buildXY("fence", 21, 37)