Hello, it’s been an hour that I’m trying to sovle Spring Thunder level.
I use the python code.
Here’s my code :
#Certaines pièces et gemmes attirent les éclairs.
#Le héros devrait seulement ramasser les pièces en argent et les gemmes bleues.
while True:
item = hero.findNearestItem()
# Une pièce en argent vaut 2
# Vérifie si le type de l’objet est “coin”
# L’objet AND est égal à 2.
if item.type == “coin” and item.value == 2:
hero.moveXY(item.pos.x, item.pos.y)
# Une gemme bleue a une valeur de 10.
# Verifie si le type de l’objet est une “gem”
# L’objet AND est égal à 10.
if item.type == 10 and item.type == “gem”:
hero.moveXY(item.pos.x, item.pos.y)
Sry for not using a a nice way to post the code, I don’t know how to do it.
So my problem is that the player don’t want to go to the blue gems, it only goes for the coins. I figured out that it’s only the value 10 which causes problems as if I only put the gems condition, the hero goes for all the gems.
Help please, I’m stuck
edit : I think that there no values attribute to the blue gems as it don’t even go for it when the condition is item.type > 0