it won’t move to at all
can you help me. thank you
here is my code
while True:
coins = hero.findItems()
coinIndex = 0
# Wrap this into a loop that iterates over all coins.
while coinIndex < len(coins):
coin = coins[coinIndex]
# Gold coins are worth 3.
if coin.value == 3:
hero.moveXY(coins.pos.x, coins.pos.y)
coinIndex += 1
pass