Hi there,
I don’t know if it’s my code or a bug with the game itself.
But I ran the scenario without my code being put in and my hero started moving from left to right.
After I put my code in, my hero stopped moving at all, he stands in the starting place and dies.
Plz help, this is my code i wrote:
// Loop naar de rechter kant van het bos.
// Deze functie moet checken of er items in de buurt zijn van je huisdier en die ophalen.
function fetchPotions(event){
// Maak deze functie af:
var item = hero.findNearestItem();
// Vergeet niet een "while-true loop" te gebruiken.
while(true) {
// If there's an item:
if (item){
pet.fetch(item);
}
}
// Use pet.fetch(item) to fetch the item.
}
// Wijs de functie 'fetchPotions' toe aan het event "spawn" van je huisdier (pet).
fetchPotions("spawn");
hero.moveXY(78, 35);