Been following the RPG tutorial on here, but can’t work out how 2 move from map to map. tried different ways like hittests, new MC’s linking MC’s, but none of them worked. just wondering when the full tutorial will be complete, coz I really want to finish this.
ok so im not sure what the rpg tutorialsays but if your code is on the main timeline and your using a hittest to go to the next frame on say your door then you may have to use somethging like.
if(_root.door_mc.hitTest(_root.character_mc)==true){
//either you can use _root.nextFrame();
//or _root.gotoAndPlay or _root.gotoAndStop then (frame number);
}
i hope that made sense