
Код:
function getR(){
return {
x:Math.round(mcOblast ._x+Math.random()*mcOblast ._width),
y:Math.round(mcOblast ._y+Math.random()*mcOblast ._height)
}
}
var r = getR();
while(!mcOblast .hitTest(r.x,r.y,true)){
r = getR();
}
mcZ._x = r.x;
mcZ._y = r.y;