# OBSOLETE -- this script is no longer called

# input variables
# distance_to_avatar
# avatar_herd_size

#output variables
# should_stalk

should_stalk = 0

if (avatar_herd_size < 1 and distance_to_avatar < 30)
 should_stalk = 1
 else if (avatar_herd_size < 2 and distance_to_avatar < 20)
  should_stalk = 1
  else if (avatar_herd_size < 3 and distance_to_avatar < 10)
   should_stalk = 1
  endif
 endif
endif

