you need to command the archers to ATTACK the shaman so the rest of them don’t get flung
1 Like
k thanks, will try (20 chars)
ohhh, ColdFire, I just spotted an error…
in your escape() function you made your archers attack a “target” instead of a “shaman”…
to attack a shaman you would first have to do this:
shamans = hero.findByType("shaman") #<---or archer findByType, that i dont know
for shaman in shamans:
and then if there’s a shaman attack it. I just had this problem in Pender’s Trial so at least I can help you with something!
also why did you say for archer in archer
?? that doesn’t make sense, is that a typo? and why say for archer in archer
again when you could just put all the stuff in your first for archer in archers
?