def __init__(self, pos, speed, direction): AIBase.__init__(self, "thrownshit") self.pos = pos self.speed = speed self.direction = direction self.a = System.currentTimeMillis() self.b = System.currentTimeMillis()
def __init__(self, pos): AIBase.__init__(self, "happysheep") self.pos = pos self.dest = pos self.direction = Point(0, 0) self.lt = System.currentTimeMillis() self.ct = System.currentTimeMillis() self.speed = 1 self.positions = [] self.directions = []
def __init__(self, pos, poses): AIBase.__init__(self, "evilsheep") self.pos = pos self.dest = pos self.direction = Point(0, 0) self.lt = System.currentTimeMillis() self.ct = System.currentTimeMillis() self.speed = 1 self.positions = poses self.cdest = 0 self.lastHit = System.currentTimeMillis()
def __init__(self, pos): AIBase.__init__(self, "shit") self.pos = pos
def __init__(self, pos): AIBase.__init__(self, "corpse") self.pos = pos