@Leonardo_White any errors tho?
yes it says your parentheses must match
Did you put a comma between the x and y values for the move command?
try this
hero.command(friend, “move”, ( friend.pos.x , friend.pos.y))
You need to put “x”: before your x-coordinate and “y”: before your y-coordinate like you had it before.
The code should look like this:
hero.command(friend, “move”, ({"x":friend.pos.x , "y":friend.pos.y})
Yes, that should work. If it does not, just put friend.pos in the position argument for the move command.
I can’t see it sorry can’t help
You never defined what friend was.
try hero.FindFriends
Your code is not checking to see if there is an enemy. Try putting if enemy in your if-statement
Like this:
if enemy:
# Insert code here
Nooooo, he is right
friends = hero.findFriends()
Yes, like that. It should work now.
I just tested it and it worked. But I may have different gear than him. Not to mention I use Ned.
my character is standing still
Your character does not necessarily need to move to complete the level, you just need to move your friends.