Hi am making an rpg.
I have the engine the boundarys and all.
The on thing i need is to pick up things so it a pears like there an a movie clip.
Here is my code it just makes the item go far away.
onClipEvent(enterFrame){
if(this.hitTest(_root.man)){
this._x = _root.man.manB.handR._x;
this._y = _root.man.manB.handR._y;
this._rotation=_root.man.manB.handR._rotation;
}
else(visible=true);
}
thanx in advance;)