Описание: получает moveSpeed function getVelocity(x, y, z, x1, y1, z1, speed) local x2, y2, z2 = x1 - x, y1 - y, z1 - z local dist = math.sqrt(math.pow(x1 - x, 2.0) + math.pow(y1 - y, 2.0) + math.pow(z1 - z, 2.0)) return x2 / dist * speed, y2 / dist * speed, z2 / dist * speed end...
www.blast.hk